| /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ | 
| D | MatchOpTest.java | 98 …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 …]
 
 | 
| D | TabulatorsTest.java | 77                                   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/luni/src/test/java/libcore/javax/xml/transform/dom/ | 
| D | DOMSourceTest.java | 35         DOMSource source = new DOMSource();  in constructor()  local44         DOMSource source = new DOMSource(node, "systemId");  in constructorWithNodeAndString()  local
 51         DOMSource source = new DOMSource();  in setSystemId()  local
 
 | 
| /libcore/ojluni/src/test/java/lang/String/ | 
| D | LiteralReplace.java | 49     public void testExpected(String source, String target,  in testExpected()60     public void testCanonical(String source, String target,  in testCanonical()
 67     private void test0(String source, String target, String replacement,  in test0()
 78     public void testNPE(String source, String target, String replacement) {  in testNPE()
 223                     String source = makeRandomString(maxSrcLen);  in sourceTargetReplacement()  local
 254     private static String canonicalReplace(String source, String target, String replacement) {  in canonicalReplace()
 274     private static String mekeRandomSubstring(String source, int maxLen) {  in mekeRandomSubstring()
 
 | 
| /libcore/ojluni/src/main/java/java/text/ | 
| D | RuleBasedCollator.java | 359     public CollationElementIterator getCollationElementIterator(String source) {  in getCollationElementIterator()376                                                 CharacterIterator source) {  in getCollationElementIterator()
 392     public synchronized int compare(String source, String target)  in compare()
 406     public synchronized CollationKey getCollationKey(String source)  in getCollationKey()
 
 | 
| D | CollationKey.java | 142     protected CollationKey(String source) {  in CollationKey()149     private final String source;  field in CollationKey
 
 | 
| D | CollationElementIterator.java | 291     public void setText(String source)  in setText()303     public void setText(CharacterIterator source)  in setText()
 
 | 
| D | Collator.java | 261     public abstract int compare(String source, String target);  in compare()294     public abstract CollationKey getCollationKey(String source);  in getCollationKey()
 305     public boolean equals(String source, String target)  in equals()
 
 | 
| /libcore/ojluni/src/main/java/sun/nio/ch/ | 
| D | MembershipKeyImpl.java | 45     private final InetAddress source;  field in MembershipKeyImpl58                               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
 
 | 
| D | PipeImpl.java | 38     private final SourceChannel source;  field in PipeImpl53     public SourceChannel source() {  in source()  method in PipeImpl
 
 | 
| /libcore/ojluni/src/main/java/java/util/ | 
| D | EventObject.java | 47     protected transient Object source;  field in EventObject55     public EventObject(Object source) {  in EventObject()
 
 | 
| D | Scanner.java | 335     private Readable source;  field in Scanner539     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()
 600     public Scanner(InputStream source, Charset charset) {  in Scanner()
 624     private static Readable makeReadable(Path source, Charset charset)  in makeReadable()
 630     private static Readable makeReadable(InputStream source, Charset charset) {  in makeReadable()
 644     public Scanner(File source) throws FileNotFoundException {  in Scanner()
 660     public Scanner(File source, String charsetName)  in Scanner()
 [all …]
 
 | 
| /libcore/ojluni/src/main/java/sun/nio/fs/ | 
| D | UnixCopyFile.java | 127     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/ojluni/src/test/java/util/stream/Collectors/ | 
| D | CollectorsTest.java | 86                 Supplier<Stream<T>> source,  in assertValue()100 …void assertValue(R value, Supplier<Stream<T>> source, boolean ordered) throws ReflectiveOperationE…  in assertValue()
 118 …void assertValue(R value, Supplier<Stream<T>> source, boolean ordered) throws ReflectiveOperationE…  in assertValue()
 135 …void assertValue(R value, Supplier<Stream<T>> source, boolean ordered) throws ReflectiveOperationE…  in assertValue()
 156                 Supplier<Stream<T>> source,  in assertValue()
 187 …void assertValue(M map, Supplier<Stream<T>> source, boolean ordered) throws ReflectiveOperationExc…  in assertValue()
 215                 Supplier<Stream<T>> source,  in assertValue()
 227         void assertValue(List<T> value, Supplier<Stream<T>> source, boolean ordered)  in assertValue()
 252         void assertValue(Collection<T> value, Supplier<Stream<T>> source, boolean ordered)  in assertValue()
 279         void assertValue(U value, Supplier<Stream<T>> source, boolean ordered)  in assertValue()
 
 | 
| /libcore/luni/src/main/java/javax/xml/xpath/ | 
| D | XPathExpression.java | 160     public Object evaluate(InputSource source, QName returnType)  in evaluate()183     public String evaluate(InputSource source)  in evaluate()
 
 | 
| /libcore/ojluni/src/main/java/java/nio/channels/ | 
| D | MembershipKey.java | 125     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/ | 
| D | RuleBasedCollatorTest.java | 35     String source = null;  in test_getCollationKeyLjava_lang_String()  local84     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/ | 
| D | EventObjectTest.java | 35         Object source = new Object();  in testGetSource()  local46         Object source = new Object();  in testSerializationNullsOutSource()  local
 
 | 
| /libcore/ojluni/src/test/java/nio/channels/Selector/ | 
| D | SelectWithConsumer.java | 125             Pipe.SourceChannel source = p.source();  in testReadable()  local145             Pipe.SourceChannel source = p.source();  in testWritable()  local
 191             Pipe.SourceChannel source = p.source();  in testTwoChannels()  local
 248             Pipe.SourceChannel source = p.source();  in testRepeatedSelect1()  local
 272             Pipe.SourceChannel source = p.source();  in testRepeatedSelect2()  local
 304             Pipe.SourceChannel source = p.source();  in testTimeout()  local
 476             Pipe.SourceChannel source = p.source();  in testActionClosingSelector()  local
 503             Pipe.SourceChannel source = p.source();  in testLocks()  local
 547             Pipe.SourceChannel source = p.source();  in testCancel()  local
 600             Pipe.SourceChannel source = p.source();  in testReentrantSelect1()  local
 [all …]
 
 | 
| /libcore/luni/src/main/java/javax/xml/transform/ | 
| D | TransformerFactory.java | 141     public abstract Transformer newTransformer(Source source)  in newTransformer()174     public abstract Templates newTemplates(Source source)  in newTemplates()
 203         Source source,  in getAssociatedStylesheet()
 
 | 
| /libcore/tools/testmapping/ | 
| D | save_logs.py | 72 def relative_source_name(source):  argument121 def do_copy(source):  argument
 
 | 
| /libcore/ojluni/annotations/hiddenapi/java/text/ | 
| D | Collator.java | 64     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/test/java/libcore/javax/xml/validation/ | 
| D | ValidatorTest.java | 102         Source source = new SAXSource();  in validate()  local113         public void validate(Source source, Result result) throws SAXException, IOException {  in validate()
 
 | 
| /libcore/luni/src/main/java/javax/xml/validation/ | 
| D | Validator.java | 91     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/ | 
| D | RowSetEvent.java | 54   public RowSetEvent(RowSet source)  in RowSetEvent()
 |