Home
last modified time | relevance | path

Searched refs:abc (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/src/test/java/util/regex/
DTestCases.txt73 ^(a(b(c)?)?)?abc
74 abc
75 true abc 3
77 ^(a(b(c){0,1}){0,1}){0,1}abc
78 abc
79 true abc 3
82 abc
83 true abc 3 abc bc c
86 abc(?x)blah
90 abc(?x) blah
[all …]
/libcore/luni/src/test/java/libcore/java/nio/channels/
DChannelsTest.java74 AsynchronousByteChannel abc = mock(AsynchronousByteChannel.class); in testInputStreamAsynchronousByteChannel() local
75 InputStream is = Channels.newInputStream(abc); in testInputStreamAsynchronousByteChannel()
80 when(abc.read(bbCaptor.capture())).thenReturn(result); in testInputStreamAsynchronousByteChannel()
97 Mockito.verify(abc).read(isA(ByteBuffer.class)); in testInputStreamAsynchronousByteChannel()
102 AsynchronousByteChannel abc = mock(AsynchronousByteChannel.class); in testOutputStreamAsynchronousByteChannel() local
103 OutputStream os = Channels.newOutputStream(abc); in testOutputStreamAsynchronousByteChannel()
108 when(abc.write(bbCaptor.capture())).thenReturn(result); in testOutputStreamAsynchronousByteChannel()
124 Mockito.verify(abc).write(isA(ByteBuffer.class)); in testOutputStreamAsynchronousByteChannel()
/libcore/ojluni/src/test/java/util/Properties/
Dinput.txt4 key2 = abc\\\
DtestData1.dos13 abc
DtestData113 abc
/libcore/luni/src/test/java/libcore/xml/
DDomTest.java1576 Text abc = (Text) documentElement.getFirstChild(); in testCoalescingOff() local
1577 assertEquals("abc", abc.getTextContent()); in testCoalescingOff()
1578 CDATASection def = (CDATASection) abc.getNextSibling(); in testCoalescingOff()
1610 Text abc = (Text) documentElement.getFirstChild(); in testExpandingEntityReferencesOff() local
1611 assertEquals("abc", abc.getTextContent()); in testExpandingEntityReferencesOff()
1613 EntityReference def = (EntityReference) abc.getNextSibling(); in testExpandingEntityReferencesOff()