/external/icu/icu4c/source/layout/ |
D | LookupTables.cpp | 35 LEReferenceTo<LookupSegment> trial(entry, success, extra); in lookupSegment() local 39 if (SWAPW(trial->lastGlyph) <= ttGlyph) { in lookupSegment() 40 entry = trial; in lookupSegment() 45 trial = entry; // copy in lookupSegment() 46 trial.addOffset(probe, success); in lookupSegment() 48 if (SWAPW(trial->lastGlyph) <= ttGlyph) { in lookupSegment() 49 entry = trial; in lookupSegment() 67 LEReferenceTo<LookupSingle> trial(entry, success, extra); in lookupSingle() local 69 if (SWAPW(trial->glyph) <= ttGlyph) { in lookupSingle() 70 entry = trial; in lookupSingle() [all …]
|
D | PairPositioningSubtables.cpp | 153 const PairValueRecord *trial = (const PairValueRecord *) ((char *) record + extra); in findPairValueRecord() 155 if (SWAPW(trial->secondGlyph) <= glyphID) { in findPairValueRecord() 156 record = trial; in findPairValueRecord() 161 trial = (const PairValueRecord *) ((char *) record + probe); in findPairValueRecord() 163 if (SWAPW(trial->secondGlyph) <= glyphID) { in findPairValueRecord() 164 record = trial; in findPairValueRecord()
|
/external/icu/icu4c/source/test/perf/howExpensiveIs/ |
D | howExpensiveIs.cpp | 303 double trial = unum_parseDouble(fFmt,fStr,fLen, NULL, &setupStatus); in warmup() local 304 if(U_SUCCESS(setupStatus) && trial!=fExpect) { in warmup() 307 fFile,fLine,getName(),trial,fExpect); in warmup() 312 double trial=0.0; in run() local 315 trial = unum_parse(fFmt,fStr,fLen, NULL, &setupStatus); in run() 432 int32_t trial = unum_formatDouble(fFmt,fExpect, buf, 100, NULL, &setupStatus); in warmup() local 434 || trial!=fLen in warmup() 435 ||trial<=0 in warmup() 436 || u_strncmp(fStr,buf,trial) ) { in warmup() 438 u_strToUTF8(strBuf,200,NULL,buf,trial+1,&setupStatus); in warmup() [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/ |
D | DfpMath.java | 177 int trial = 1; in splitPow() local 181 prevtrial = trial; in splitPow() 182 trial = trial * 2; in splitPow() 183 if (trial > a) { in splitPow() 189 trial = prevtrial; in splitPow() 191 a -= trial; in splitPow() 231 int trial = 1; in pow() local 236 prevtrial = trial; in pow() 238 trial = trial * 2; in pow() 239 } while (a>trial); in pow() [all …]
|
D | Dfp.java | 1584 int trial=0; // trial quotient digit in divide() local 1674 trial = (min+max)/2; in divide() 1680 final int r = (dm * trial) + rh; in divide() 1696 max = trial-1; in divide() 1705 min = trial+minadj; // update the minimum in divide() 1726 min = trial+1; in divide() 1731 quotient[qd] = trial; in divide() 1732 if (trial != 0 || nsqd != 0) { in divide()
|
/external/clang/test/Modules/ |
D | ignored_macros.m | 1 // First trial: pass -DIGNORED=1 to both. This should obviously work. 6 // Second trial: pass -DIGNORED=1 only to the second invocation. We 15 // Third trial: pass -DIGNORED=1 only to the second invocation, but 22 // Fourth trial: pass -DIGNORED=1 and -fmodules-ignore-macro=IGNORED 29 // Fifth trial: pass -DIGNORED=1 and -fmodules-ignore-macro=IGNORED=1
|
/external/webp/src/enc/ |
D | alpha.c | 259 FilterTrial trial; in ApplyFiltersAndEncode() local 262 &trial); in ApplyFiltersAndEncode() 263 if (ok && trial.score < best.score) { in ApplyFiltersAndEncode() 265 best = trial; in ApplyFiltersAndEncode() 267 VP8BitWriterWipeOut(&trial.bw); in ApplyFiltersAndEncode()
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | Utf8Test.java | 68 for (int trial = 0; trial < 100; trial++) { in testEncodedLength_validStrings2()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | RoundTripTest.java | 231 String trial = Normalizer.compose(sample, false); in getRepresentativeBoundaryHangul() local 232 if (trial.length() == 2) { in getRepresentativeBoundaryHangul() 233 resultToAddTo.add(trial); in getRepresentativeBoundaryHangul() 244 String trial = Normalizer.compose(sample, false); in getRepresentativeBoundaryHangul() local 245 if (trial.length() == 2) { in getRepresentativeBoundaryHangul() 246 resultToAddTo.add(trial); in getRepresentativeBoundaryHangul() 252 String trial = Normalizer.compose(sample, false); in getRepresentativeBoundaryHangul() local 253 if (trial.length() == 2) { in getRepresentativeBoundaryHangul() 254 resultToAddTo.add(trial); in getRepresentativeBoundaryHangul()
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | RateLimiterTest.java | 303 for (int trial = 0; trial < 100; trial++) { in testTimeToWarmUpIsHonouredEvenWithWeights()
|
/external/icu/icu4c/source/common/ |
D | caniter.cpp | 566 UnicodeString trial; in extract() local 567 nfd.normalize(temp, trial, status); in extract() 568 if(U_FAILURE(status) || trial.compare(segment+segmentPos, segLen - segmentPos) != 0) { in extract()
|
D | uniset.cpp | 662 const UnicodeString& trial = *(const UnicodeString*)strings->elementAt(i); in matches() local 669 UChar c = trial.charAt(forward ? 0 : trial.length() - 1); in matches() 676 int32_t matchLen = matchRest(text, offset, limit, trial); in matches() 686 if (matchLen == trial.length()) { in matches()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateTimePatternGenerator.java | 789 String trial = getBestPattern(cur.toString(), cur, MATCH_NO_OPTIONS); in getRedundants() local 790 if (trial.equals(pattern)) { in getRedundants() 1708 for (DateTimeMatcher trial : skeleton2pattern.keySet()) { in getBestRaw() 1709 if (trial.equals(skipMatcher)) { in getBestRaw() 1712 int distance = source.getDistance(trial, includeMask, tempInfo); in getBestRaw() 1717 PatternWithSkeletonFlag patternWithSkelFlag = skeleton2pattern.get(trial); in getBestRaw() 1722 bestPatternWithMatcher.matcherWithSkeleton = trial; in getBestRaw()
|
D | UnicodeSet.java | 940 for (String trial : strings) { in matches() 946 char c = trial.charAt(forward ? 0 : trial.length() - 1); in matches() 953 int length = matchRest(text, offset[0], limit, trial); in matches() 963 if (length == trial.length()) { in matches() 1040 String trial = null; in matchesAt() local 1044 trial = it.next(); in matchesAt() 1045 char firstStringChar = trial.charAt(0); in matchesAt() 1052 int tempLen = matchesAt(text, offset, trial); in matchesAt() 1056 trial = it.next(); in matchesAt()
|
D | PluralRules.java | 1852 …private boolean addConditional(Set<FixedDecimal> toAddTo, Set<FixedDecimal> others, double trial) { in addConditional() argument 1854 FixedDecimal toAdd = new FixedDecimal(trial); in addConditional()
|
/external/ceres-solver/internal/ceres/ |
D | compressed_row_sparse_matrix_test.cc | 508 for (int trial = 0; trial < kNumTrials; ++trial) { in TEST() local
|
D | rotation_test.cc | 639 for (int trial = 0; trial < kNumTrials; ++trial) { in TEST() local
|
/external/aac/libAACdec/src/ |
D | aacdec_hcrs.cpp | 127 UINT trial; in DecodeNonPCWs() local 215 for ( trial = *pNumSegment; trial > 0; trial-- ) { in DecodeNonPCWs()
|
/external/littlemock/src/com/google/testing/littlemock/ |
D | LittleMock.java | 158 for (MethodCall trial : calls) { 159 if (mLastCall == null || mLastCall.mInvocationOrder < trial.mInvocationOrder) { 160 mLastCall = trial; 163 lastTrial = trial;
|
/external/icu/icu4c/source/i18n/ |
D | dtptngen.cpp | 1066 DateTimeMatcher trial = it.next(); in getBestRaw() local 1067 if (trial.equals(skipMatcher)) { in getBestRaw() 1070 int32_t distance=source.getDistance(trial, includeMask, tempInfo); in getBestRaw() 1073 … bestPattern=patternMap->getPatternFromSkeleton(*trial.getSkeletonPtr(), &specifiedSkeleton); in getBestRaw() 1323 UnicodeString trial = getBestPattern(current.getPattern(), status); in getRedundants() local 1324 if (trial == *pattern) { in getRedundants()
|
/external/clang/tools/c-index-test/ |
D | c-index-test.c | 1580 int trial; in perform_test_reparse_source() local 1624 for (trial = 0; trial < trials; ++trial) { in perform_test_reparse_source() 1626 if (parse_remapped_files_with_try(trial, argc, argv, 0, in perform_test_reparse_source() 1635 trial >= remap_after_trial ? num_unsaved_files : 0, in perform_test_reparse_source() 1636 trial >= remap_after_trial ? unsaved_files : 0, in perform_test_reparse_source()
|
/external/messageformat/java/com/ibm/icu/simple/ |
D | PluralRules.java | 1828 …private boolean addConditional(Set<FixedDecimal> toAddTo, Set<FixedDecimal> others, double trial) { in addConditional() argument 1830 FixedDecimal toAdd = new FixedDecimal(trial); in addConditional()
|
/external/junit/ |
D | NOTICE | 88 …r after the cause of action arose. Each party waives its rights to a jury trial in any resulting l…
|
/external/emma/ |
D | NOTICE | 132 …r after the cause of action arose. Each party waives its rights to a jury trial in any resulting l…
|
/external/jetty/ |
D | MODULE_LICENSE_ECLIPSE1 | 70 …r after the cause of action arose. Each party waives its rights to a jury trial in any resulting l…
|