Home
last modified time | relevance | path

Searched defs:is (Results 1 – 25 of 3509) sorted by relevance

12345678910>>...141

/aosp_15_r20/external/antlr/runtime/C/src/
H A Dantlr3inputstream.c193 antlr38BitGetSourceName(pANTLR3_INT_STREAM is) in antlr38BitGetSourceName()
315 antlr38BitConsume(pANTLR3_INT_STREAM is) in antlr38BitConsume()
350 antlr38BitLA(pANTLR3_INT_STREAM is, ANTLR3_INT32 la) in antlr38BitLA()
377 antlr38BitLA_ucase (pANTLR3_INT_STREAM is, ANTLR3_INT32 la) in antlr38BitLA_ucase()
416 antlr38BitIndex(pANTLR3_INT_STREAM is) in antlr38BitIndex()
445 antlr38BitMark (pANTLR3_INT_STREAM is) in antlr38BitMark()
504 antlr38BitRewindLast (pANTLR3_INT_STREAM is) in antlr38BitRewindLast()
517 antlr38BitRewind (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark) in antlr38BitRewind()
557 antlr38BitRelease (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark) in antlr38BitRelease()
577 antlr38BitSeek (pANTLR3_INT_STREAM is, ANTLR3_MARKER seekPoint) in antlr38BitSeek()
[all …]
H A Dantlr3tokenstream.c416 consumeInitialHiddenTokens(pANTLR3_INT_STREAM is) in consumeInitialHiddenTokens()
600 consume (pANTLR3_INT_STREAM is) in consume()
620 dbgConsume (pANTLR3_INT_STREAM is) in dbgConsume()
800 _LA (pANTLR3_INT_STREAM is, ANTLR3_INT32 i) in _LA()
822 dbgLA (pANTLR3_INT_STREAM is, ANTLR3_INT32 i) in dbgLA()
837 mark (pANTLR3_INT_STREAM is) in mark()
846 dbgMark (pANTLR3_INT_STREAM is) in dbgMark()
859 release (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark) in release()
865 size (pANTLR3_INT_STREAM is) in size()
882 tindex (pANTLR3_INT_STREAM is) in tindex()
[all …]
H A Dantlr3baserecognizer.c277 pANTLR3_INT_STREAM is; in antlr3RecognitionExceptionNew() local
420 pANTLR3_INT_STREAM is; in match() local
493 pANTLR3_INT_STREAM is; in matchAny() local
529 mismatchIsUnwantedToken(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, ANTLR3_UINT32 tt… in mismatchIsUnwantedToken()
552 mismatchIsMissingToken(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_BITSET_LI… in mismatchIsMissingToken()
646 pANTLR3_INT_STREAM is; in mismatch() local
1012 pANTLR3_INT_STREAM is; in displayRecognitionError() local
1327 pANTLR3_INT_STREAM is; in recover() local
1436 pANTLR3_INT_STREAM is; in recoverFromMismatchedToken() local
1559 pANTLR3_INT_STREAM is; in recoverFromMismatchedSet() local
[all …]
/aosp_15_r20/frameworks/base/tools/powermodel/test/com/android/powermodel/
H A DCsvParserTest.java64 final InputStream is = new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8)); in testEmpty() local
76 final InputStream is = new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8)); in testOnlyNewline() local
88 final InputStream is = new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8)); in testTwoLines() local
103 final InputStream is = new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8)); in testEscapedEmpty() local
116 final InputStream is = new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8)); in testEscapedText() local
129 final InputStream is = new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8)); in testEscapedQuotes() local
142 final InputStream is = new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8)); in testEscapedCommas() local
155 final InputStream is = new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8)); in testEscapedQuotesAndCommas() local
168 final InputStream is = new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8)); in testNoNewline() local
181 final InputStream is = new ByteArrayInputStream(text.getBytes(StandardCharsets.UTF_8)); in testNoNewlineWithCommas() local
[all …]
/aosp_15_r20/external/apache-commons-io/src/test/java/org/apache/commons/io/input/
H A DUnsynchronizedByteArrayInputStreamTest.java69 try (UnsynchronizedByteArrayInputStream is = newStream(empty)) { in testConstructor1()
72 try (UnsynchronizedByteArrayInputStream is = newStream(one)) { in testConstructor1()
75 try (UnsynchronizedByteArrayInputStream is = newStream(some)) { in testConstructor1()
87 UnsynchronizedByteArrayInputStream is = newStream(empty, 0); in testConstructor2() local
116 UnsynchronizedByteArrayInputStream is = newStream(empty, 0); in testConstructor3() local
189 …final UnsynchronizedByteArrayInputStream is = newStream(new byte[] { (byte) 0xa, (byte) 0xb, (byte… in testInvalidReadArrayExplicitLenUnder() local
199 …final UnsynchronizedByteArrayInputStream is = newStream(new byte[] { (byte) 0xa, (byte) 0xb, (byte… in testInvalidReadArrayExplicitOffsetUnder() local
209 …final UnsynchronizedByteArrayInputStream is = newStream(new byte[] { (byte) 0xa, (byte) 0xb, (byte… in testInvalidReadArrayExplicitRangeOver() local
219 …final UnsynchronizedByteArrayInputStream is = newStream(new byte[] { (byte) 0xa, (byte) 0xb, (byte… in testInvalidReadArrayNull() local
228 …final UnsynchronizedByteArrayInputStream is = newStream(new byte[] { (byte) 0xa, (byte) 0xb, (byte… in testInvalidSkipNUnder() local
[all …]
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
H A DSAXParserTest.java416 InputSource is = new InputSource(new FileInputStream(list_wf[i])); in test_parseLorg_xml_sax_InputSourceLorg_xml_sax_helpers_DefaultHandler() local
424 InputSource is = new InputSource(new FileInputStream(file)); in test_parseLorg_xml_sax_InputSourceLorg_xml_sax_helpers_DefaultHandler() local
438 InputSource is = new InputSource(new FileInputStream(list_wf[0])); in test_parseLorg_xml_sax_InputSourceLorg_xml_sax_helpers_DefaultHandler() local
457 InputSource is = new InputSource(new FileInputStream(list_wf[i])); in testParseInputSourceHandlerBase() local
465 InputSource is = new InputSource(new FileInputStream(file)); in testParseInputSourceHandlerBase() local
479 InputSource is = new InputSource(new FileInputStream(list_wf[0])); in testParseInputSourceHandlerBase() local
509 InputStream is = new FileInputStream(list_wf[i]); in test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandler() local
517 InputStream is = new FileInputStream(list_nwf[i]); in test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandler() local
534 InputStream is = new FileInputStream(list_wf[0]); in test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandler() local
548 InputStream is = new FileInputStream(list_wf[i]); in test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandlerLjava_lang_String() local
[all …]
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
H A DJarInputStreamTest.java57 InputStream is = new URL(jarName).openConnection().getInputStream(); in test_ConstructorLjava_io_InputStream() local
75 InputStream is = Support_Resources.getStream("Broken_entry.jar"); in test_closeAfterException() local
97 InputStream is = new URL(jarName).openConnection().getInputStream(); in test_getNextJarEntry_Ex() local
131 InputStream is = new URL(jarName2).openConnection().getInputStream(); in test_getManifest() local
146 InputStream is = new URL(jarName).openConnection().getInputStream(); in test_getNextJarEntry() local
159 InputStream is = new URL(intJarName).openConnection() in test_JarInputStream_Integrate_Jar_getNextEntry() local
175 InputStream is = new URL(modJarName).openConnection() in test_JarInputStream_Modified_Class_getNextEntry() local
202 InputStream is = new URL(modJarName).openConnection() in test_JarInputStream_Modified_Manifest_MainAttributes_getNextEntry() local
223 InputStream is = new URL(modJarName).openConnection() in test_JarInputStream_Modified_Manifest_EntryAttributes_getNextEntry() local
250 InputStream is = new URL(modJarName).openConnection() in test_JarInputStream_Modified_SF_EntryAttributes_getNextEntry() local
[all …]
/aosp_15_r20/external/libcxx/test/std/numerics/complex.number/complex.ops/
H A Dstream_input.pass.cpp23 std::istringstream is("5"); in main() local
30 std::istringstream is(" 5 "); in main() local
37 std::istringstream is(" 5, "); in main() local
44 std::istringstream is(" , 5, "); in main() local
51 std::istringstream is("5.5 "); in main() local
58 std::istringstream is(" ( 5.5 ) "); in main() local
65 std::istringstream is(" 5.5)"); in main() local
72 std::istringstream is("(5.5 "); in main() local
79 std::istringstream is("(5.5,"); in main() local
86 std::istringstream is("( -5.5 , -6.5 )"); in main() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/complex.number/complex.ops/
H A Dstream_input.pass.cpp26 std::istringstream is("5"); in main() local
33 std::istringstream is(" 5 "); in main() local
40 std::istringstream is(" 5, "); in main() local
47 std::istringstream is(" , 5, "); in main() local
54 std::istringstream is("5.5 "); in main() local
61 std::istringstream is(" ( 5.5 ) "); in main() local
68 std::istringstream is(" 5.5)"); in main() local
75 std::istringstream is("(5.5 "); in main() local
82 std::istringstream is("(5.5,"); in main() local
89 std::istringstream is("( -5.5 , -6.5 )"); in main() local
[all …]
/aosp_15_r20/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DDigestInputStreamTest.java84 InputStream is = new ByteArrayInputStream(myMessage); in testDigestInputStream01() local
117 InputStream is = new ByteArrayInputStream(myMessage); in testRead01() local
150 InputStream is = new ByteArrayInputStream(myMessage); in testRead02() local
185 InputStream is = new ByteArrayInputStream(myMessage); in testRead03() local
246 InputStream is = new ByteArrayInputStream(myMessage); in testRead05() local
271 InputStream is = new ByteArrayInputStream(myMessage); in testRead06() local
296 InputStream is = new ByteArrayInputStream(myMessage); in testReadbyteArrayintint01() local
333 InputStream is = new ByteArrayInputStream(myMessage); in testReadbyteArrayintint02() local
373 InputStream is = new ByteArrayInputStream(myMessage); in testReadbyteArrayintint03() local
417 InputStream is = new ByteArrayInputStream(myMessage); in testReadbyteArrayintint04() local
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/io/
H A DSdkLengthAwareInputStreamTest.java42 SdkLengthAwareInputStream is = new SdkLengthAwareInputStream(delegateStream, 0); in read_lengthIs0_returnsEof() local
53 SdkLengthAwareInputStream is = new SdkLengthAwareInputStream(delegateStream, 0); in read_lengthNonZero_delegateEof_returnsEof() local
63 SdkLengthAwareInputStream is = new SdkLengthAwareInputStream(delegateStream, 16); in readByte_lengthNonZero_delegateHasAvailable_returnsDelegateData() local
72 SdkLengthAwareInputStream is = new SdkLengthAwareInputStream(delegateStream, 16); in readArray_lengthNonZero_delegateHasAvailable_returnsDelegateData() local
81 SdkLengthAwareInputStream is = new SdkLengthAwareInputStream(delegateStream, 16); in readArray_lengthNonZero_propagatesCallToDelegate() local
92 SdkLengthAwareInputStream is = new SdkLengthAwareInputStream(delegateStream, 16); in read_markAndReset_availableReflectsNewLength() local
115 SdkLengthAwareInputStream is = new SdkLengthAwareInputStream(delegateStream, 16); in skip_markAndReset_availableReflectsNewLength() local
143 SdkLengthAwareInputStream is = new SdkLengthAwareInputStream(delegateStream, 16); in skip_delegateSkipsLessThanRequested_availableUpdatedCorrectly() local
158 SdkLengthAwareInputStream is = new SdkLengthAwareInputStream(delegateStream, 16); in readArray_delegateReadsLessThanRequested_availableUpdatedCorrectly() local
170 SdkLengthAwareInputStream is = new SdkLengthAwareInputStream(delegateStream, 16); in read_delegateAtEof_returnsEof() local
[all …]
H A DResettableInputStreamTest.java47 try (InputStream is = new FileInputStream(file)) { in testFileInputStream()
58 try (ResettableInputStream is = new ResettableInputStream(file)) { in testResetInputStreamWithFile()
71 try (ResettableInputStream is = new ResettableInputStream( in testResetFileInputStream()
85 try (ResettableInputStream is = new ResettableInputStream(file)) { in testMarkAndResetWithFile()
98 try (ResettableInputStream is = new ResettableInputStream(new FileInputStream(file))) { in testMarkAndResetFileInputStream()
111 ResettableInputStream is = null; in testResetWithClosedFile() local
127 try (ResettableInputStream is = new ResettableInputStream(file)) { in negativeTestResetWithClosedFile()
135 ResettableInputStream is = null; in testMarkAndResetWithClosedFile() local
153 try (ResettableInputStream is = new ResettableInputStream(new FileInputStream(file))) { in testMarkAndResetClosedFileInputStream()
/aosp_15_r20/external/apache-commons-compress/src/test/java/org/apache/commons/compress/changes/
H A DChangeSetTestCase.java162 final InputStream is = new FileInputStream(input); in testDeleteDir() local
204 final InputStream is = new FileInputStream(input); in testDeleteDir2() local
246 final InputStream is = new FileInputStream(input); in testDeleteDir3() local
288 final InputStream is = new FileInputStream(input); in testDeleteFile() local
331 final InputStream is = new FileInputStream(input); in testDeleteFile2() local
377 final InputStream is = new FileInputStream(input); in testDeletePlusAddSame() local
409 final InputStream is = new FileInputStream(result); in testDeletePlusAddSame() local
447 final InputStream is = new FileInputStream(input); in testChangeSetResults() local
511 final InputStream is = new FileInputStream(input); in testDeletePlusAdd() local
558 final InputStream is = new FileInputStream(input); in testDeleteFromAndAddToZip() local
[all …]
/aosp_15_r20/cts/apps/CtsVerifier/src/com/android/cts/verifier/usb/accessory/
H A DUsbAccessoryTestActivity.java183 try (InputStream is = new ParcelFileDescriptor.AutoCloseInputStream( in onAttached()
226 try (InputStream is = usbManager.openAccessoryInputStream(accessory)) { in onAttached()
264 private boolean nextTest(@NonNull InputStream is, @NonNull OutputStream os, in nextTest()
307 private void testEchoTransfer(InputStream is, OutputStream os) throws IOException { in testEchoTransfer()
318 private void testReceiveLessDataThanAvailable(InputStream is, OutputStream os) in testReceiveLessDataThanAvailable()
333 private void testSendTwoTransfersInARow(InputStream is, OutputStream os) throws IOException { in testSendTwoTransfersInARow()
344 private void testReceiveTwoTransfersInARowInBufferBiggerThanTransfer(InputStream is, in testReceiveTwoTransfersInARowInBufferBiggerThanTransfer()
363 private void testMeasureInTransferSpeed(InputStream is, OutputStream os) throws IOException { in testMeasureInTransferSpeed()
391 private void testMeasureOutTransferSpeed(InputStream is, OutputStream os) throws IOException { in testMeasureOutTransferSpeed()
415 private void testEchoBufferTwiceMaxSize(InputStream is, OutputStream os) throws IOException { in testEchoBufferTwiceMaxSize()
[all …]
/aosp_15_r20/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/tar/
H A DTarArchiveInputStreamTest.java53 final InputStream is = new ByteArrayInputStream(new byte[1]); in readSimplePaxHeader() local
65 final InputStream is = new ByteArrayInputStream(new byte[1]); in secondEntryWinsWhenPaxHeaderContainsDuplicateKey() local
77 final InputStream is = new ByteArrayInputStream(new byte[1]); in paxHeaderEntryWithEmptyValueRemovesKey() local
88 final InputStream is = new ByteArrayInputStream(new byte[1]); in readPaxHeaderWithEmbeddedNewline() local
103 final InputStream is = new ByteArrayInputStream(new byte[1]); in readNonAsciiPaxHeader() local
199 final InputStream is = TarArchiveInputStreamTest.class in shouldConsumeArchiveCompletely() local
216 try (InputStream is = TarArchiveInputStreamTest.class in readsArchiveCompletely_COMPRESS245()
236 final TarArchiveInputStream is = getTestStream("/COMPRESS-279.tar"); in shouldThrowAnExceptionOnTruncatedEntries() local
284 try (TarArchiveInputStream is = getTestStream("/COMPRESS-324.tar")) { in shouldReadGNULongNameEntryWithWrongName()
299 try (TarArchiveInputStream is = getTestStream("/COMPRESS-355.tar")) { in survivesBlankLinesInPaxHeader()
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
H A Dwchar_t_pointer.pass.cpp46 std::istream is(&sb); in main() local
56 std::istream is(&sb); in main() local
67 std::wistream is(&sb); in main() local
78 std::wistream is(&sb); in main() local
89 std::wistream is(&sb); in main() local
100 std::istream is(&sb); in main() local
112 std::istream is(&sb); in main() local
123 std::basic_istream<char> is(&sb); in main() local
143 std::wistream is(&sb); in main() local
163 std::basic_istream<char> is(&sb); in main() local
[all …]
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/nio/file/
H A DDefaultFileSystemProviderTest.java92 try (InputStream is = provider.newInputStream(filesSetup.getDataFilePath(), READ)) { in test_newInputStream()
100 try (InputStream is = provider.newInputStream(filesSetup.getDataFilePath(), WRITE)) { in test_newInputStream_openOption()
105 try (InputStream is = provider.newInputStream(filesSetup.getDataFilePath(), APPEND)) { in test_newInputStream_openOption()
110 try (InputStream is = provider.newInputStream(filesSetup.getDataFilePath(), in test_newInputStream_openOption()
117 try (InputStream is = provider.newInputStream(filesSetup.getDataFilePath(), DELETE_ON_CLOSE, in test_newInputStream_openOption()
125 try (InputStream is = provider.newInputStream(filesSetup.getDataFilePath(), READ); in test_newInputStream_twice()
136 try (InputStream is = provider.newInputStream(null)){ in test_newInputStream_NPE()
140 try (InputStream is = provider.newInputStream(filesSetup.getDataFilePath(), in test_newInputStream_NPE()
152 try (InputStream is = provider.newInputStream(filesSetup.getTestPath())) { in test_newOutputStream()
172 try (InputStream is = provider.newInputStream(filesSetup.getDataFilePath())) { in test_newOutputStream_openOption_APPEND()
[all …]
/aosp_15_r20/external/grpc-grpc-java/protobuf-lite/src/test/java/io/grpc/protobuf/lite/
H A DProtoLiteUtilsTest.java69 InputStream is = marshaller.stream(proto); in testRoundtrip() local
76 InputStream is = marshaller.stream(proto); in testInvalidatedMessage() local
91 InputStream is = new ByteArrayInputStream(new byte[] {-127}); in parseInvalid() local
131 InputStream is = marshaller.stream(proto); in testAvailable() local
143 InputStream is = marshaller.stream(Empty.getDefaultInstance()); in testEmpty() local
158 InputStream is = marshaller.stream(proto); in testDrainTo_all() local
171 InputStream is = marshaller.stream(proto); in testDrainTo_partial() local
175 InputStream is = marshaller.stream(proto); in testDrainTo_partial() local
187 InputStream is = marshaller.stream(proto); in testDrainTo_none() local
295 InputStream is = marshaller.stream(message); in assertRecursionLimitExceeded() local
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/iostream.format/input.streams/istream.unformatted/
H A Dsync.pass.cpp107 std::istream is(nullptr); in main() local
112 std::istream is(&sb); in main() local
118 std::istream is(&sb); in main() local
127 std::wistream is(nullptr); in main() local
132 std::wistream is(&sb); in main() local
138 std::wistream is(&sb); in main() local
149 std::istream is(&sb); in main() local
164 std::basic_istream<char> is(&sb); in main() local
180 std::wistream is(&sb); in main() local
195 std::basic_istream<wchar_t> is(&sb); in main() local
/aosp_15_r20/external/antlr/runtime/Cpp/include/
H A Dantlr3baserecognizer.inl59 IntStreamType* is = super->get_istream(); local
99 IntStreamType* is = super->get_istream(); local
108 bool BaseRecognizer<ImplTraits, StreamType>::mismatchIsUnwantedToken(IntStreamType* is, ANTLR_UINT3…
123 bool BaseRecognizer<ImplTraits, StreamType>::mismatchIsMissingToken(IntStreamType* is, BitsetListTy…
275 IntStreamType* is = super->get_parser_istream(); local
421 IntStreamType* is = super->get_parser_istream(); local
512 IntStreamType* is = super->get_parser_istream(); local
544 IntStreamType* is = super->get_parser_istream(); local
611 IntStreamType* is = super->get_parser_istream(); local
631 IntStreamType* is = super->get_parser_istream(); local
[all …]
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
H A DMatchValue.java40 public abstract boolean is(String item); in is() method in MatchValue
129 public boolean is(String item) { in is() method in MatchValue.BCP47LocaleWellFormedMatchValue
176 public boolean is(String item) { in is() method in MatchValue.LocaleMatchValue
346 public boolean is(String item) { in is() method in MatchValue.ValidityMatchValue
420 public synchronized boolean is(String item) { in is() method in MatchValue.Bcp47MatchValue
538 public boolean is(String item) { in is() method in MatchValue.RangeMatchValue
578 public boolean is(String item) { in is() method in MatchValue.LiteralMatchValue
614 public boolean is(String item) { in is() method in MatchValue.RegexMatchValue
637 public boolean is(String item) { in is() method in MatchValue.SemverMatchValue
664 public boolean is(String item) { in is() method in MatchValue.VersionMatchValue
[all …]
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DLimitedLengthInputStreamTest.java45 InputStream is = new LimitedLengthInputStream(mTestStream1, -1, TEST_STRING1.length); in testConstructor_NegativeOffset_Failure() local
55 InputStream is = new LimitedLengthInputStream(mTestStream1, 0, -1); in testConstructor_NegativeLength_Failure() local
65 InputStream is = new LimitedLengthInputStream(null, 0, 1); in testConstructor_NullInputStream_Failure() local
75 InputStream is = new LimitedLengthInputStream(mTestStream1, Long.MAX_VALUE - 1, in testConstructor_OffsetLengthOverflow_Fail() local
91 InputStream is = new LimitedLengthInputStream(mTestStream1, offset, length); in checkReadBytesWithOffsetAndLength_WithString1() local
126 InputStream is = new LimitedLengthInputStream(mTestStream1, 0, TEST_STRING1.length + 10); in testReadBytesWithOffsetAndLength_ZeroOffset_PastEnd_Success() local
141 InputStream is = new LimitedLengthInputStream(mTestStream1, offset, length); in checkReadBytes_WithString1() local
171 InputStream is = new LimitedLengthInputStream(mTestStream1, offset, length); in checkSingleByteRead_WithString1() local
/aosp_15_r20/external/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream_sentry/
H A Dctor.pass.cpp56 std::istream is((testbuf<char>*)0); in main() local
64 std::wistream is((testbuf<wchar_t>*)0); in main() local
73 std::istream is(&sb); in main() local
83 std::wistream is(&sb); in main() local
93 std::istream is(&sb); in main() local
102 std::wistream is(&sb); in main() local
111 std::istream is(&sb); in main() local
121 std::istream is(&sb); in main() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/iostream.format/input.streams/istream/istream_sentry/
H A Dctor.pass.cpp57 std::istream is((testbuf<char>*)0); in main() local
66 std::istream is(&sb); in main() local
76 std::istream is(&sb); in main() local
85 std::istream is(&sb); in main() local
95 std::istream is(&sb); in main() local
105 std::wistream is((testbuf<wchar_t>*)0); in main() local
114 std::wistream is(&sb); in main() local
124 std::wistream is(&sb); in main() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/
H A Dpointer.pass.cpp49 std::istream is((std::streambuf*)0); in main() local
56 std::istream is(&sb); in main() local
65 std::istream is(&sb); in main() local
75 std::wistream is(&sb); in main() local
85 std::istream is(&sb); in main() local
95 std::wistream is(&sb); in main() local
106 std::basic_istream<char> is(&sb); in main() local
124 std::basic_istream<char> is(&sb); in main() local

12345678910>>...141