Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DPluralSamples.java192 Set<FixedDecimal> toAddTo = new HashSet<FixedDecimal>(); in fractions() local
208 toAddTo.add(new FixedDecimal(base,1)); // add .0 in fractions()
209 toAddTo.add(new FixedDecimal(base,2)); // add .00 in fractions()
212 toAddTo.add(new FixedDecimal(base + "." + fract)); in fractions()
221toAddTo.add(new FixedDecimal(base + fract/(double)TENS[i], visibleFractions)); in fractions()
226 return toAddTo; in fractions()
DPluralRules.java1897 …private boolean addConditional(Set<IFixedDecimal> toAddTo, Set<IFixedDecimal> others, double trial… in addConditional() argument
1900 if (!toAddTo.contains(toAdd) && !others.contains(toAdd)) { in addConditional()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DPluralSamples.java194 Set<FixedDecimal> toAddTo = new HashSet<FixedDecimal>(); in fractions() local
210 toAddTo.add(new FixedDecimal(base,1)); // add .0 in fractions()
211 toAddTo.add(new FixedDecimal(base,2)); // add .00 in fractions()
214 toAddTo.add(new FixedDecimal(base + "." + fract)); in fractions()
223toAddTo.add(new FixedDecimal(base + fract/(double)TENS[i], visibleFractions)); in fractions()
228 return toAddTo; in fractions()
DPluralRules.java1964 …private boolean addConditional(Set<IFixedDecimal> toAddTo, Set<IFixedDecimal> others, double trial… in addConditional() argument
1967 if (!toAddTo.contains(toAdd) && !others.contains(toAdd)) { in addConditional()
/external/cldr/tools/java/org/unicode/cldr/util/
DCLDRFile.java3287 Set<String> toAddTo = new HashSet<String>();
3291 toAddTo.addAll(getRawExtraPaths());
3293 toAddTo.remove(path);
3314 return toAddTo;
3322 public Collection<String> getExtraPaths(String prefix, Collection<String> toAddTo) {
3326 toAddTo.add(item);
3329 return toAddTo;
3349 private Collection<String> getRawExtraPathsPrivate(Collection<String> toAddTo) {
3362 addPluralCounts(toAddTo, pluralCounts, this);
3365 showStars(getLocaleID() + " toAddTo", toAddTo);
[all …]
DCLDRConfig.java669 public Set<File> getFilesRecursively(File directory, FilenameFilter filter, Set<File> toAddTo) { in getFilesRecursively() argument
675 getFilesRecursively(subfile, filter, toAddTo); in getFilesRecursively()
678 toAddTo.add(subfile); in getFilesRecursively()
682 return toAddTo; in getFilesRecursively()
DDtdData.java937 public Set<Element> getDescendents(Element start, Set<Element> toAddTo) { in getDescendents() argument
938 if (!toAddTo.contains(start)) { in getDescendents()
939 toAddTo.add(start); in getDescendents()
941 getDescendents(e, toAddTo); in getDescendents()
944 return toAddTo; in getDescendents()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp951 llvm::Function &toAddTo, in createFinallyBlock() argument
969 *exceptionCaughtFlag = createEntryBlockAlloca(toAddTo, in createFinallyBlock()
975 *exceptionStorage = createEntryBlockAlloca(toAddTo, in createFinallyBlock()
980 *caughtResultStorage = createEntryBlockAlloca(toAddTo, in createFinallyBlock()
988 &toAddTo); in createFinallyBlock()
1027 llvm::Function &toAddTo, in createCatchBlock() argument
1035 &toAddTo); in createCatchBlock()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp1002 llvm::Function &toAddTo, in createFinallyBlock() argument
1020 *exceptionCaughtFlag = createEntryBlockAlloca(toAddTo, in createFinallyBlock()
1026 *exceptionStorage = createEntryBlockAlloca(toAddTo, in createFinallyBlock()
1031 *caughtResultStorage = createEntryBlockAlloca(toAddTo, in createFinallyBlock()
1039 &toAddTo); in createFinallyBlock()
1078 llvm::Function &toAddTo, in createCatchBlock() argument
1086 &toAddTo); in createCatchBlock()
/external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
DExceptionDemo.cpp979 llvm::Function &toAddTo, in createFinallyBlock() argument
1003 *exceptionCaughtFlag = createEntryBlockAlloca(toAddTo, in createFinallyBlock()
1009 *exceptionStorage = createEntryBlockAlloca(toAddTo, in createFinallyBlock()
1015 *caughtResultStorage = createEntryBlockAlloca(toAddTo, in createFinallyBlock()
1024 &toAddTo); in createFinallyBlock()
1063 llvm::Function &toAddTo, in createCatchBlock() argument
1071 &toAddTo); in createCatchBlock()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateCldrTests.java1052 UnicodeSet close(int cp, UnicodeSet toAddTo);
1113 public UnicodeSet close(int cp, UnicodeSet toAddTo) {
1132 toAddTo.addAll(result);
1134 toAddTo.add(cp);
1135 return toAddTo;
/external/cldr/tools/java/org/unicode/cldr/draft/
DXLocaleDistance.java88 private static Collection<String> fill(String region, Multimap<String, String> toAddTo) { in fill() argument
91 toAddTo.putAll(region, contained); in fill()
93 toAddTo.putAll(region, fill(subregion, toAddTo)); in fill()
95 return toAddTo.get(region); in fill()
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
DXLocaleDistance.java167 …> fill(String region, TreeMultimap<String, String> containment, Multimap<String, String> toAddTo) { in fill() argument
172 toAddTo.putAll(region, contained); // do top level in fill()
175 toAddTo.putAll(region, fill(subregion, containment, toAddTo)); in fill()
177 return toAddTo.get(region); in fill()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DXLocaleDistance.java163 …> fill(String region, TreeMultimap<String, String> containment, Multimap<String, String> toAddTo) { in fill() argument
168 toAddTo.putAll(region, contained); // do top level in fill()
171 toAddTo.putAll(region, fill(subregion, containment, toAddTo)); in fill()
173 return toAddTo.get(region); in fill()