Home
last modified time | relevance | path

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

1234

/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.java321 public CollationElementIterator getCollationElementIterator(String source) { in getCollationElementIterator()
337 CharacterIterator source) { in getCollationElementIterator()
352 public synchronized int compare(String source, String target) in compare()
365 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.java257 public void setText(String source) in setText()
268 public void setText(CharacterIterator source) in setText()
DCollator.java259 public abstract int compare(String source, String target); in compare()
292 public abstract CollationKey getCollationKey(String source); in getCollationKey()
303 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
535 private Scanner(Readable source, Pattern pattern) { in Scanner()
555 public Scanner(Readable source) { in Scanner()
567 public Scanner(InputStream source) { in Scanner()
582 public Scanner(InputStream source, String charsetName) { in Scanner()
602 private static Readable makeReadable(InputStream source, Charset charset) { in makeReadable()
615 public Scanner(File source) throws FileNotFoundException { in Scanner()
631 public Scanner(File source, String charsetName) in Scanner()
637 private Scanner(File source, CharsetDecoder dec) in Scanner()
656 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/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/
DOldDirectIntBufferTest.java33 int[] source = { 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }; in testPutWhenOffsetIsNonZero() local
DOldDirectShortBufferTest.java33 short[] 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()
DCopyMoveHelper.java100 static void copyToForeignTarget(Path source, Path target, in copyToForeignTarget()
154 static void moveToForeignTarget(Path source, Path target, in moveToForeignTarget()
/libcore/dalvik/src/main/java/dalvik/system/
DDalvikLogHandler.java44 void publish(Logger source, String tag, Level level, String message); in publish()

1234