/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | ProtobufArrayListTest.java | 64 list.addAll(asList(1, 2, 3, 4)); in testModificationWithIteration() 107 list.addAll(TERTIARY_LIST); in testRemove() 213 assertTrue(list.addAll(Collections.singleton(1))); in testAddAll() 217 assertTrue(list.addAll(asList(2, 3, 4, 5, 6))); in testAddAll() 220 assertTrue(list.addAll(TERTIARY_LIST)); in testAddAll() 223 assertFalse(list.addAll(Collections.<Integer>emptyList())); in testAddAll() 224 assertFalse(list.addAll(IntArrayList.emptyList())); in testAddAll() 265 list.addAll(Collections.<Integer>emptyList()); in assertImmutable() 272 list.addAll(Collections.singletonList(1)); in assertImmutable() 279 list.addAll(new ProtobufArrayList<Integer>()); in assertImmutable() [all …]
|
D | BooleanArrayListTest.java | 77 list.addAll(asList(true, false, true, false)); in testModificationWithIteration() 318 assertTrue(list.addAll(Collections.singleton(true))); in testAddAll() 323 assertTrue(list.addAll(asList(false, true, false, true, false))); in testAddAll() 326 assertTrue(list.addAll(TERTIARY_LIST)); in testAddAll() 329 assertFalse(list.addAll(Collections.<Boolean>emptyList())); in testAddAll() 330 assertFalse(list.addAll(BooleanArrayList.emptyList())); in testAddAll() 341 list.addAll(TERTIARY_LIST); in testRemove() 408 list.addAll(Collections.<Boolean>emptyList()); in assertImmutable() 415 list.addAll(Collections.singletonList(true)); in assertImmutable() 422 list.addAll(new BooleanArrayList()); in assertImmutable() [all …]
|
D | DoubleArrayListTest.java | 76 list.addAll(asList(1D, 2D, 3D, 4D)); in testModificationWithIteration() 316 assertTrue(list.addAll(Collections.singleton(1D))); in testAddAll() 321 assertTrue(list.addAll(asList(2D, 3D, 4D, 5D, 6D))); in testAddAll() 324 assertTrue(list.addAll(TERTIARY_LIST)); in testAddAll() 327 assertFalse(list.addAll(Collections.<Double>emptyList())); in testAddAll() 328 assertFalse(list.addAll(DoubleArrayList.emptyList())); in testAddAll() 341 list.addAll(TERTIARY_LIST); in testRemove() 411 list.addAll(Collections.<Double>emptyList()); in assertImmutable() 418 list.addAll(Collections.singletonList(1D)); in assertImmutable() 425 list.addAll(new DoubleArrayList()); in assertImmutable() [all …]
|
D | FloatArrayListTest.java | 76 list.addAll(asList(1F, 2F, 3F, 4F)); in testModificationWithIteration() 316 assertTrue(list.addAll(Collections.singleton(1F))); in testAddAll() 321 assertTrue(list.addAll(asList(2F, 3F, 4F, 5F, 6F))); in testAddAll() 324 assertTrue(list.addAll(TERTIARY_LIST)); in testAddAll() 327 assertFalse(list.addAll(Collections.<Float>emptyList())); in testAddAll() 328 assertFalse(list.addAll(FloatArrayList.emptyList())); in testAddAll() 341 list.addAll(TERTIARY_LIST); in testRemove() 411 list.addAll(Collections.<Float>emptyList()); in assertImmutable() 418 list.addAll(Collections.singletonList(1F)); in assertImmutable() 425 list.addAll(new FloatArrayList()); in assertImmutable() [all …]
|
D | LongArrayListTest.java | 76 list.addAll(asList(1L, 2L, 3L, 4L)); in testModificationWithIteration() 316 assertTrue(list.addAll(Collections.singleton(1L))); in testAddAll() 321 assertTrue(list.addAll(asList(2L, 3L, 4L, 5L, 6L))); in testAddAll() 324 assertTrue(list.addAll(TERTIARY_LIST)); in testAddAll() 327 assertFalse(list.addAll(Collections.<Long>emptyList())); in testAddAll() 328 assertFalse(list.addAll(LongArrayList.emptyList())); in testAddAll() 339 list.addAll(TERTIARY_LIST); in testRemove() 409 list.addAll(Collections.<Long>emptyList()); in assertImmutable() 416 list.addAll(Collections.singletonList(1L)); in assertImmutable() 423 list.addAll(new LongArrayList()); in assertImmutable() [all …]
|
D | IntArrayListTest.java | 76 list.addAll(asList(1, 2, 3, 4)); in testModificationWithIteration() 316 assertTrue(list.addAll(Collections.singleton(1))); in testAddAll() 321 assertTrue(list.addAll(asList(2, 3, 4, 5, 6))); in testAddAll() 324 assertTrue(list.addAll(TERTIARY_LIST)); in testAddAll() 327 assertFalse(list.addAll(Collections.<Integer>emptyList())); in testAddAll() 328 assertFalse(list.addAll(IntArrayList.emptyList())); in testAddAll() 339 list.addAll(TERTIARY_LIST); in testRemove() 409 list.addAll(Collections.<Integer>emptyList()); in assertImmutable() 416 list.addAll(Collections.singletonList(1)); in assertImmutable() 423 list.addAll(new IntArrayList()); in assertImmutable() [all …]
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/ |
D | Rule.java | 74 glyphs.addAll(glyphGroup); in addMatchingTargetGlyphs() 104 set.addAll(glyphRuleMap.get(glyph)); in rulesForGlyph() 119 rules.addAll(ruleForLookup); in featuredRules() 204 newBacktrack.addAll(matchSegment.subList(0, backtrackSize)); in applyRuleOnRuleWithSubst() 208 newInput.addAll(targetRule.input); in applyRuleOnRuleWithSubst() 209 …newInput.addAll(matchSegment.subList(backtrackSize + targetRule.subst.size(), backtrackSize + at +… in applyRuleOnRuleWithSubst() 212 … newLookAhead.addAll(matchSegment.subList(backtrackSize + at + input.size(), matchSegment.size())); in applyRuleOnRuleWithSubst() 215 newSubst.addAll(targetRule.subst.subList(0, at)); in applyRuleOnRuleWithSubst() 216 newSubst.addAll(subst); in applyRuleOnRuleWithSubst() 218 newSubst.addAll(targetRule.subst.subList(at + input.size(), targetRule.subst.size())); in applyRuleOnRuleWithSubst() [all …]
|
D | RuleExtractor.java | 55 allRules.addAll(subRules); in extract() 94 existingGlyphs.addAll(extract(record)); in extract() 209 result.addAll(subRules); in extract() 223 result.addAll(subrules); in extract() 249 result.addAll(subRules); in extract() 261 result.addAll(subRules); in extract() 296 result.addAll(subRules); in extract() 306 result.addAll(extract(firstGlyph, subRule, lookupListTable, allLookupRules)); in extract() 343 result.addAll(extract(chainSubRuleSet, in extract() 391 result.addAll(extract(chainSubRule, in extract() [all …]
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/ |
D | Rule.java | 74 glyphs.addAll(glyphGroup); in addMatchingTargetGlyphs() 104 set.addAll(glyphRuleMap.get(glyph)); in rulesForGlyph() 119 rules.addAll(ruleForLookup); in featuredRules() 204 newBacktrack.addAll(matchSegment.subList(0, backtrackSize)); in applyRuleOnRuleWithSubst() 208 newInput.addAll(targetRule.input); in applyRuleOnRuleWithSubst() 209 …newInput.addAll(matchSegment.subList(backtrackSize + targetRule.subst.size(), backtrackSize + at +… in applyRuleOnRuleWithSubst() 212 … newLookAhead.addAll(matchSegment.subList(backtrackSize + at + input.size(), matchSegment.size())); in applyRuleOnRuleWithSubst() 215 newSubst.addAll(targetRule.subst.subList(0, at)); in applyRuleOnRuleWithSubst() 216 newSubst.addAll(subst); in applyRuleOnRuleWithSubst() 218 newSubst.addAll(targetRule.subst.subList(at + input.size(), targetRule.subst.size())); in applyRuleOnRuleWithSubst() [all …]
|
D | RuleExtractor.java | 55 allRules.addAll(subRules); in extract() 94 existingGlyphs.addAll(extract(record)); in extract() 209 result.addAll(subRules); in extract() 223 result.addAll(subrules); in extract() 249 result.addAll(subRules); in extract() 261 result.addAll(subRules); in extract() 296 result.addAll(subRules); in extract() 306 result.addAll(extract(firstGlyph, subRule, lookupListTable, allLookupRules)); in extract() 343 result.addAll(extract(chainSubRuleSet, in extract() 391 result.addAll(extract(chainSubRule, in extract() [all …]
|
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | UnicodeNameTransliterator.java | 85 sourceSet.addAll(myFilter); in addSourceTargetSet() 86 targetSet.addAll('0', '9') in addSourceTargetSet() 87 .addAll('A', 'Z') in addSourceTargetSet() 90 .addAll(OPEN_DELIM) in addSourceTargetSet() 92 .addAll('a', 'z') // for controls in addSourceTargetSet()
|
D | NameUnicodeTransliterator.java | 183 .addAll('0', '9') in addSourceTargetSet() 184 .addAll('A', 'F') in addSourceTargetSet() 185 .addAll('a', 'z') // for controls in addSourceTargetSet() 190 .addAll(UnicodeNameTransliterator.OPEN_DELIM) in addSourceTargetSet() 194 sourceSet.addAll(items); in addSourceTargetSet() 196 targetSet.addAll(0, 0x10FFFF); in addSourceTargetSet()
|
D | SourceTargetUtility.java | 120 sourceSet.addAll(affectedCharacters); in addSourceTargetSet() 122 targetSet.addAll(transform.transform(s)); in addSourceTargetSet() 128 targetSet.addAll(t); in addSourceTargetSet() 129 sourceSet.addAll(s); in addSourceTargetSet()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | UnicodeNameTransliterator.java | 86 sourceSet.addAll(myFilter); in addSourceTargetSet() 87 targetSet.addAll('0', '9') in addSourceTargetSet() 88 .addAll('A', 'Z') in addSourceTargetSet() 91 .addAll(OPEN_DELIM) in addSourceTargetSet() 93 .addAll('a', 'z') // for controls in addSourceTargetSet()
|
D | NameUnicodeTransliterator.java | 184 .addAll('0', '9') in addSourceTargetSet() 185 .addAll('A', 'F') in addSourceTargetSet() 186 .addAll('a', 'z') // for controls in addSourceTargetSet() 191 .addAll(UnicodeNameTransliterator.OPEN_DELIM) in addSourceTargetSet() 195 sourceSet.addAll(items); in addSourceTargetSet() 197 targetSet.addAll(0, 0x10FFFF); in addSourceTargetSet()
|
D | SourceTargetUtility.java | 121 sourceSet.addAll(affectedCharacters); in addSourceTargetSet() 123 targetSet.addAll(transform.transform(s)); in addSourceTargetSet() 129 targetSet.addAll(t); in addSourceTargetSet() 130 sourceSet.addAll(s); in addSourceTargetSet()
|
D | RBBITableBuilder.java | 280 n.fFirstPosSet.addAll(n.fLeftChild.fFirstPosSet); in calcFirstPos() 281 n.fFirstPosSet.addAll(n.fRightChild.fFirstPosSet); in calcFirstPos() 284 n.fFirstPosSet.addAll(n.fLeftChild.fFirstPosSet); in calcFirstPos() 286 n.fFirstPosSet.addAll(n.fRightChild.fFirstPosSet); in calcFirstPos() 292 n.fFirstPosSet.addAll(n.fLeftChild.fFirstPosSet); in calcFirstPos() 323 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos() 324 n.fLastPosSet.addAll(n.fRightChild.fLastPosSet); in calcLastPos() 327 n.fLastPosSet.addAll(n.fRightChild.fLastPosSet); in calcLastPos() 329 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos() 335 n.fLastPosSet.addAll(n.fLeftChild.fLastPosSet); in calcLastPos() [all …]
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/services/ |
D | serialization.dart | 33 _buffer.addAll(_eightBytesAsList, 0, 2); 39 _buffer.addAll(_eightBytesAsList, 0, 4); 45 _buffer.addAll(_eightBytesAsList, 0, 4); 51 _buffer.addAll(_eightBytesAsList, 0, 8); 58 _buffer.addAll(_eightBytesAsList); 63 _buffer.addAll(list); 70 .addAll(list.buffer.asUint8List(list.offsetInBytes, 4 * list.length)); 77 .addAll(list.buffer.asUint8List(list.offsetInBytes, 8 * list.length)); 84 .addAll(list.buffer.asUint8List(list.offsetInBytes, 8 * list.length));
|
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/ |
D | serialization.dart | 35 _buffer.addAll(_eightBytesAsList, 0, 2); 41 _buffer.addAll(_eightBytesAsList, 0, 4); 47 _buffer.addAll(_eightBytesAsList, 0, 4); 53 _buffer.addAll(_eightBytesAsList, 0, 8); 60 _buffer.addAll(_eightBytesAsList); 65 _buffer.addAll(list); 71 _buffer.addAll(list.buffer.asUint8List(list.offsetInBytes, 4 * list.length)); 77 _buffer.addAll(list.buffer.asUint8List(list.offsetInBytes, 8 * list.length)); 83 _buffer.addAll(list.buffer.asUint8List(list.offsetInBytes, 8 * list.length));
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | LazyStringArrayList.java | 89 addAll(from); in LazyStringArrayList() 106 newList.addAll(list); in mutableCopyWithCapacity() 164 public boolean addAll(Collection<? extends String> c) { in addAll() method in LazyStringArrayList 169 return addAll(size(), c); in addAll() 173 public boolean addAll(int index, Collection<? extends String> c) { in addAll() method in LazyStringArrayList 179 boolean ret = list.addAll(index, collection); in addAll() 187 boolean ret = list.addAll(values); in addAllByteString() 195 boolean ret = list.addAll(c); in addAllByteArray()
|
D | AbstractMessageLite.java | 141 protected static <T> void addAll(final Iterable<T> values, final Collection<? super T> list) { in addAll() method in AbstractMessageLite 142 Builder.addAll(values, (List) list); in addAll() 145 protected static <T> void addAll(final Iterable<T> values, final List<? super T> list) { in addAll() method in AbstractMessageLite 146 Builder.addAll(values, list); in addAll() 393 protected static <T> void addAll(final Iterable<T> values, final Collection<? super T> list) { in addAll() method in AbstractMessageLite.Builder 394 addAll(values, (List<T>) list); in addAll() 404 protected static <T> void addAll(final Iterable<T> values, final List<? super T> list) { in addAll() method in AbstractMessageLite.Builder 432 list.addAll((Collection<T>) values); in addAll()
|
D | AbstractProtobufList.java | 109 public boolean addAll(Collection<? extends E> c) { in addAll() method in AbstractProtobufList 111 return super.addAll(c); in addAll() 115 public boolean addAll(int index, Collection<? extends E> c) { in addAll() method in AbstractProtobufList 117 return super.addAll(index, c); in addAll()
|
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/ |
D | PhoneNumberMatcherTest.java | 545 testCases.addAll(Arrays.asList(STRICT_GROUPING_CASES)); in testMatchesWithPossibleLeniency() 546 testCases.addAll(Arrays.asList(EXACT_GROUPING_CASES)); in testMatchesWithPossibleLeniency() 547 testCases.addAll(Arrays.asList(VALID_CASES)); in testMatchesWithPossibleLeniency() 548 testCases.addAll(Arrays.asList(POSSIBLE_ONLY_CASES)); in testMatchesWithPossibleLeniency() 554 testCases.addAll(Arrays.asList(IMPOSSIBLE_CASES)); in testNonMatchesWithPossibleLeniency() 560 testCases.addAll(Arrays.asList(STRICT_GROUPING_CASES)); in testMatchesWithValidLeniency() 561 testCases.addAll(Arrays.asList(EXACT_GROUPING_CASES)); in testMatchesWithValidLeniency() 562 testCases.addAll(Arrays.asList(VALID_CASES)); in testMatchesWithValidLeniency() 568 testCases.addAll(Arrays.asList(IMPOSSIBLE_CASES)); in testNonMatchesWithValidLeniency() 569 testCases.addAll(Arrays.asList(POSSIBLE_ONLY_CASES)); in testNonMatchesWithValidLeniency() [all …]
|
/third_party/icu/icu4c/source/common/ |
D | static_unicode_sets.cpp | 49 result->addAll(*getImpl(k1)); in computeUnion() 50 result->addAll(*getImpl(k2)); in computeUnion() 60 result->addAll(*getImpl(k1)); in computeUnion() 61 result->addAll(*getImpl(k2)); in computeUnion() 62 result->addAll(*getImpl(k3)); in computeUnion() 179 otherGrouping->addAll(*gUnicodeSets[APOSTROPHE_SIGN]); in initNumberParseUniSets()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | StaticUnicodeSets.java | 138 return new UnicodeSet().addAll(get(k1)).addAll(get(k2)).freeze(); in computeUnion() 142 return new UnicodeSet().addAll(get(k1)).addAll(get(k2)).addAll(get(k3)).freeze(); in computeUnion() 254 otherGrouping.addAll(unicodeSets.get(Key.APOSTROPHE_SIGN)); in unicodeSets.get()
|