Home
last modified time | relevance | path

Searched refs:toAdd (Results 1 – 14 of 14) sorted by relevance

/external/skia/src/pathops/
DSkPathOpsBounds.h32 void add(const SkPathOpsBounds& toAdd) { in add()
33 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom); in add()
/external/skqp/src/pathops/
DSkPathOpsBounds.h32 void add(const SkPathOpsBounds& toAdd) { in add()
33 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom); in add()
/external/glide/library/src/main/java/com/bumptech/glide/signature/
DApplicationVersionSignature.java27 Key toAdd = obtainVersionSignature(context); in obtain() local
28 result = PACKAGE_NAME_TO_KEY.putIfAbsent(packageName, toAdd); in obtain()
31 result = toAdd; in obtain()
/external/guava/guava-tests/test/com/google/common/collect/
DFilteredCollectionsTest.java110 for (int toAdd = 0; toAdd < 10; toAdd++) { in testAdd()
111 boolean expectedResult = createUnfiltered(contents).add(toAdd); in testAdd()
115 assertEquals(expectedResult, filtered.add(toAdd)); in testAdd()
116 assertTrue(EVEN.apply(toAdd)); in testAdd()
118 assertFalse(EVEN.apply(toAdd)); in testAdd()
149 ImmutableList<Integer> toAdd = ImmutableList.of(2, 4, 3); in testAddAllFailsAtomically() local
155 filteredToModify.addAll(toAdd); in testAddAllFailsAtomically()
/external/icu/icu4c/source/common/unicode/
Denumset.h41 inline void add(T toAdd) { set(toAdd, 1); } in add() argument
/external/cldr/tools/java/org/unicode/cldr/test/
DDisplayAndInputProcessor.java830 UnicodeSet toAdd = new UnicodeSet(); in getCleanedUnicodeSet() local
835 toAdd.add(string); in getCleanedUnicodeSet()
841 toAdd.add(string); in getCleanedUnicodeSet()
844 toAdd.add(composed); in getCleanedUnicodeSet()
848 toAdd.removeAll(exemplarType.toRemove); in getCleanedUnicodeSet()
850 if (DEBUG_DAIP && !toAdd.equals(exemplar)) { in getCleanedUnicodeSet()
851 UnicodeSet oldOnly = new UnicodeSet(exemplar).removeAll(toAdd); in getCleanedUnicodeSet()
852 UnicodeSet newOnly = new UnicodeSet(toAdd).removeAll(exemplar); in getCleanedUnicodeSet()
856 String fixedExemplar = prettyPrinter.format(toAdd); in getCleanedUnicodeSet()
858 if (!toAdd.equals(doubleCheck)) { in getCleanedUnicodeSet()
/external/icu/icu4c/source/common/
Dcaniter.cpp472 UnicodeString *toAdd = new UnicodeString(prefix); in getEquivalents2() local
474 if (toAdd == 0) { in getEquivalents2()
478 *toAdd += item; in getEquivalents2()
479 fillinResult->put(*toAdd, toAdd, status); in getEquivalents2()
Duresbund.cpp877 static void ures_appendResPath(UResourceBundle *resB, const char* toAdd, int32_t lenToAdd, UErrorCo… in ures_appendResPath() argument
904 uprv_strcpy(resB->fResPath + resPathLenOrig, toAdd); in ures_appendResPath()
/external/cldr/tools/java/org/unicode/cldr/util/
DWikiSubdivisionLanguages.java330 Map<String,String> toAdd = new HashMap<>(); in fixedFile() local
351 toAdd.put(path, name); in fixedFile()
359 for (Entry<String, String> entry2 : toAdd.entrySet()) { in fixedFile()
DCLDRTransforms.java313 final String toAdd = hasXmlSuffix ? other + ".xml" : other; in addDependenciesRecursively() local
314 if (other.equals(item) || ordered.contains(toAdd)) { in addDependenciesRecursively()
317 addDependenciesRecursively(toAdd, ordered, hasXmlSuffix); in addDependenciesRecursively()
318 append("Dependency: Adding: " + toAdd + " before " + item + "\n"); in addDependenciesRecursively()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DPluralRules.java1966 IFixedDecimal toAdd = new FixedDecimal(trial); in addConditional() local
1967 if (!toAddTo.contains(toAdd) && !others.contains(toAdd)) { in addConditional()
1968 others.add(toAdd); in addConditional()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DPluralRules.java1899 IFixedDecimal toAdd = new FixedDecimal(trial); in addConditional() local
1900 if (!toAddTo.contains(toAdd) && !others.contains(toAdd)) { in addConditional()
1901 others.add(toAdd); in addConditional()
/external/cldr/tools/java/org/unicode/cldr/tool/
DConvertLanguageData.java1445 Set<String> toAdd = new TreeSet<String>(); in showDefaults() local
1449 if (newguy != null && !locales.contains(newguy) && !toAdd.contains(newguy)) { in showDefaults()
1450 toAdd.add(newguy); in showDefaults()
1454 if (toAdd.size() == 0) { in showDefaults()
1457 locales.addAll(toAdd); in showDefaults()
1458 toAdd.clear(); in showDefaults()
DGenerateMaximalLocales.java1328 …private static void add(String key, String value, Map<String, String> toAdd, String kind, Override… in add() argument
1333 String oldValue = toAdd.get(key); in add()
1348 toAdd.put(key, value); in add()