Home
last modified time | relevance | path

Searched defs:source (Results 1 – 25 of 106) sorted by relevance

12345

/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DMatchOpTest.java98 …private <T> void assertPredicates(List<T> source, Kind kind, Predicate<T>[] predicates, boolean...… in assertPredicates()
135 final Supplier<Iterator<Integer>> source; in testInfinite() field in MatchOpTest.CycleIterator
138 CycleIterator(Supplier<Iterator<Integer>> source) { in testInfinite()
159 Supplier<Iterator<Integer>> source = () -> Arrays.asList(1, 2, 3, 4).iterator(); in testInfinite() local
183 …private void assertIntPredicates(Supplier<IntStream> source, Kind kind, IntPredicate[] predicates,… in assertIntPredicates()
220 final Supplier<PrimitiveIterator.OfInt> source; in testIntInfinite() field in MatchOpTest.CycleIterator
223 CycleIterator(Supplier<PrimitiveIterator.OfInt> source) { in testIntInfinite()
244 … Supplier<PrimitiveIterator.OfInt> source = () -> Arrays.stream(new int[]{1, 2, 3, 4}).iterator(); in testIntInfinite() local
268 …private void assertLongPredicates(Supplier<LongStream> source, Kind kind, LongPredicate[] predicat… in assertLongPredicates()
305 final Supplier<PrimitiveIterator.OfLong> source; in testLongInfinite() field in MatchOpTest.CycleIterator
[all …]
DTabulatorsTest.java77 Supplier<Stream<T>> source, in assertValue()
96 Supplier<Stream<T>> source, in assertValue()
127 …void assertValue(M map, Supplier<Stream<T>> source, boolean ordered) throws ReflectiveOperationExc… in assertValue()
154 Supplier<Stream<T>> source, in assertValue()
167 void assertValue(List<T> value, Supplier<Stream<T>> source, boolean ordered) in assertValue()
193 void assertValue(Collection<T> value, Supplier<Stream<T>> source, boolean ordered) in assertValue()
220 void assertValue(U value, Supplier<Stream<T>> source, boolean ordered) in assertValue()
/libcore/ojluni/src/main/java/java/text/
DRuleBasedCollator.java329 public CollationElementIterator getCollationElementIterator(String source) { in getCollationElementIterator()
346 CharacterIterator source) { in getCollationElementIterator()
362 public synchronized int compare(String source, String target) in compare()
376 public synchronized CollationKey getCollationKey(String source) in getCollationKey()
DCollationKey.java141 protected CollationKey(String source) { in CollationKey()
148 final private String source; field in CollationKey
DCollationElementIterator.java272 public void setText(String source) in setText()
284 public void setText(CharacterIterator source) in setText()
DCollator.java260 public abstract int compare(String source, String target); in compare()
293 public abstract CollationKey getCollationKey(String source); in getCollationKey()
304 public boolean equals(String source, String target) in equals()
/libcore/ojluni/src/main/java/java/util/
DEventObject.java46 protected transient Object source; field in EventObject
54 public EventObject(Object source) { in EventObject()
DScanner.java332 private Readable source; field in Scanner
539 private Scanner(Readable source, Pattern pattern) { in Scanner()
559 public Scanner(Readable source) { in Scanner()
571 public Scanner(InputStream source) { in Scanner()
586 public Scanner(InputStream source, String charsetName) { in Scanner()
606 private static Readable makeReadable(InputStream source, Charset charset) { in makeReadable()
619 public Scanner(File source) throws FileNotFoundException { in Scanner()
635 public Scanner(File source, String charsetName) in Scanner()
641 private Scanner(File source, CharsetDecoder dec) in Scanner()
660 private static Readable makeReadable(ReadableByteChannel source, in makeReadable()
[all …]
/libcore/ojluni/src/main/java/sun/nio/ch/
DMembershipKeyImpl.java44 private final InetAddress source; field in MembershipKeyImpl
58 InetAddress source) in MembershipKeyImpl()
77 InetAddress source, in Type4()
96 int source() { in source() method in MembershipKeyImpl.Type4
112 InetAddress source, in Type6()
131 byte[] source() { in source() method in MembershipKeyImpl.Type6
DPipeImpl.java38 private final SourceChannel source; field in PipeImpl
53 public SourceChannel source() { in source() method in PipeImpl
/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixCopyFile.java127 private static void copyDirectory(UnixPath source, in copyDirectory()
219 private static void copyFile(UnixPath source, in copyFile()
303 private static void copyLink(UnixPath source, in copyLink()
331 private static void copySpecial(UnixPath source, in copySpecial()
372 static void move(UnixPath source, UnixPath target, CopyOption... options) in move()
505 static void copy(final UnixPath source, in copy()
/libcore/luni/src/main/java/javax/xml/xpath/
DXPathExpression.java160 public Object evaluate(InputSource source, QName returnType) in evaluate()
183 public String evaluate(InputSource source) in evaluate()
DXPath.java271 InputSource source, in evaluate()
297 public String evaluate(String expression, InputSource source) in evaluate()
/libcore/ojluni/src/main/java/java/nio/channels/
DMembershipKey.java125 public abstract MembershipKey block(InetAddress source) throws IOException; in block()
140 public abstract MembershipKey unblock(InetAddress source); in unblock()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DRuleBasedCollatorTest.java35 String source = null; in test_getCollationKeyLjava_lang_String() local
84 String source = "abc"; in testGetCollationKey() local
104 String source = "cha"; in testGetCollationElementIteratorString() local
121 String source = "\u00fcb"; in testGetCollationElementIteratorString() local
147 StringCharacterIterator source = new StringCharacterIterator(text); in testGetCollationElementIteratorCharacterIterator() local
166 StringCharacterIterator source = new StringCharacterIterator(text); in testGetCollationElementIteratorCharacterIterator() local
/libcore/luni/src/test/java/libcore/java/util/
DEventObjectTest.java35 Object source = new Object(); in testGetSource() local
46 Object source = new Object(); in testSerializationNullsOutSource() local
/libcore/luni/src/main/java/javax/xml/transform/
DTransformerFactory.java141 public abstract Transformer newTransformer(Source source) in newTransformer()
174 public abstract Templates newTemplates(Source source) in newTemplates()
203 Source source, in getAssociatedStylesheet()
/libcore/luni/src/main/java/java/math/
DBitLevel.java114 static void shiftLeftOneBit(int[] result, int[] source, int srcLen) { in shiftLeftOneBit()
126 static BigInteger shiftLeftOneBit(BigInteger source) { in shiftLeftOneBit()
136 static BigInteger shiftRight(BigInteger source, int count) { in shiftRight()
185 static boolean shiftRight(int[] result, int resultLen, int[] source, int intCount, int count) { in shiftRight()
/libcore/tools/testmapping/
Dsave_logs.py72 def relative_source_name(source): argument
121 def do_copy(source): argument
/libcore/ojluni/annotations/hiddenapi/java/text/
DCollator.java64 public abstract int compare(java.lang.String source, java.lang.String target); in compare()
70 public abstract java.text.CollationKey getCollationKey(java.lang.String source); in getCollationKey()
72 public boolean equals(java.lang.String source, java.lang.String target) { in equals()
/libcore/luni/src/main/java/javax/xml/validation/
DValidator.java91 public void validate(Source source) throws SAXException, IOException { in validate()
197 public abstract void validate(Source source, Result result) throws SAXException, IOException; in validate()
/libcore/ojluni/src/main/java/javax/sql/
DRowSetEvent.java54 public RowSetEvent(RowSet source) in RowSetEvent()
/libcore/luni/src/test/java/libcore/java/nio/
DOldDirectShortBufferTest.java33 short[] source = { 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }; in testPutWhenOffsetIsNonZero() local
DOldDirectIntBufferTest.java33 int[] source = { 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }; in testPutWhenOffsetIsNonZero() local
/libcore/ojluni/src/main/java/java/nio/file/
DAtomicMoveNotSupportedException.java50 public AtomicMoveNotSupportedException(String source, in AtomicMoveNotSupportedException()

12345