/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | PluralSamples.java | 194 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() 223 … toAddTo.add(new FixedDecimal(base + fract/(double)TENS[i], visibleFractions)); in fractions() 228 return toAddTo; in fractions()
|
D | PluralRules.java | 2063 …private boolean addConditional(Set<IFixedDecimal> toAddTo, Set<IFixedDecimal> others, double trial… in addConditional() argument 2066 if (!toAddTo.contains(toAdd) && !others.contains(toAdd)) { in addConditional()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | PluralSamples.java | 192 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() 221 … toAddTo.add(new FixedDecimal(base + fract/(double)TENS[i], visibleFractions)); in fractions() 226 return toAddTo; in fractions()
|
D | PluralRules.java | 1995 …private boolean addConditional(Set<IFixedDecimal> toAddTo, Set<IFixedDecimal> others, double trial… in addConditional() argument 1998 if (!toAddTo.contains(toAdd) && !others.contains(toAdd)) { in addConditional()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | CLDRFile.java | 3316 Set<String> toAddTo = new HashSet<>(); 3317 toAddTo.addAll(getRawExtraPaths()); 3319 toAddTo.remove(path); 3321 return toAddTo; 3329 public Collection<String> getExtraPaths(String prefix, Collection<String> toAddTo) { 3333 toAddTo.add(item); 3336 return toAddTo; 3377 private Collection<String> getRawExtraPathsPrivate(Collection<String> toAddTo) { 3389 addPluralCounts(toAddTo, pluralCounts, this); 3403 … toAddTo.add("//ldml/dates/calendars/calendar[@type=\"gregorian\"]/dayPeriods/" + [all …]
|
D | CLDRConfig.java | 691 public Set<File> getFilesRecursively(File directory, FilenameFilter filter, Set<File> toAddTo) { in getFilesRecursively() argument 697 getFilesRecursively(subfile, filter, toAddTo); in getFilesRecursively() 700 toAddTo.add(subfile); in getFilesRecursively() 704 return toAddTo; in getFilesRecursively()
|
D | DtdData.java | 961 public Set<Element> getDescendents(Element start, Set<Element> toAddTo) { in getDescendents() argument 962 if (!toAddTo.contains(start)) { in getDescendents() 963 toAddTo.add(start); in getDescendents() 965 getDescendents(e, toAddTo); in getDescendents() 968 return toAddTo; in getDescendents()
|
/external/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 1002 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/llvm-project/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 950 llvm::Function &toAddTo, in createFinallyBlock() argument 968 *exceptionCaughtFlag = createEntryBlockAlloca(toAddTo, in createFinallyBlock() 974 *exceptionStorage = createEntryBlockAlloca(toAddTo, in createFinallyBlock() 979 *caughtResultStorage = createEntryBlockAlloca(toAddTo, in createFinallyBlock() 987 &toAddTo); in createFinallyBlock() 1026 llvm::Function &toAddTo, in createCatchBlock() argument 1034 &toAddTo); in createCatchBlock()
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | XLocaleDistance.java | 89 private static Collection<String> fill(String region, Multimap<String, String> toAddTo) { in fill() argument 92 toAddTo.putAll(region, contained); in fill() 94 toAddTo.putAll(region, fill(subregion, toAddTo)); in fill() 96 return toAddTo.get(region); in fill()
|