Home
last modified time | relevance | path

Searched refs:addAll (Results 1 – 25 of 416) sorted by relevance

12345678910>>...17

/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DProtobufArrayListTest.java64 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 …]
DBooleanArrayListTest.java77 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 …]
DDoubleArrayListTest.java76 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 …]
DFloatArrayListTest.java76 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 …]
DLongArrayListTest.java76 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 …]
DIntArrayListTest.java76 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/
DRule.java74 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 …]
DRuleExtractor.java55 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/
DRule.java74 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 …]
DRuleExtractor.java55 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/
DUnicodeNameTransliterator.java85 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()
DNameUnicodeTransliterator.java183 .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()
DSourceTargetUtility.java120 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/
DUnicodeNameTransliterator.java86 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()
DNameUnicodeTransliterator.java184 .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()
DSourceTargetUtility.java121 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()
DRBBITableBuilder.java280 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/
Dserialization.dart33 _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/
Dserialization.dart35 _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/
DLazyStringArrayList.java89 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()
DAbstractMessageLite.java141 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()
DAbstractProtobufList.java109 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/
DPhoneNumberMatcherTest.java545 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/
Dstatic_unicode_sets.cpp49 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/
DStaticUnicodeSets.java138 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()

12345678910>>...17