Home
last modified time | relevance | path

Searched refs:minIndex (Results 1 – 15 of 15) sorted by relevance

/external/jdiff/src/jdiff/
DRootDocToXML.java994 index = minIndex(index, text.indexOf("? ", fromindex)); in endOfFirstSentence()
995 index = minIndex(index, text.indexOf("?\t", fromindex)); in endOfFirstSentence()
996 index = minIndex(index, text.indexOf("?\n", fromindex)); in endOfFirstSentence()
997 index = minIndex(index, text.indexOf("?\r", fromindex)); in endOfFirstSentence()
998 index = minIndex(index, text.indexOf("?\f", fromindex)); in endOfFirstSentence()
999 index = minIndex(index, text.indexOf("! ", fromindex)); in endOfFirstSentence()
1000 index = minIndex(index, text.indexOf("!\t", fromindex)); in endOfFirstSentence()
1001 index = minIndex(index, text.indexOf("!\n", fromindex)); in endOfFirstSentence()
1002 index = minIndex(index, text.indexOf("!\r", fromindex)); in endOfFirstSentence()
1003 index = minIndex(index, text.indexOf("!\f", fromindex)); in endOfFirstSentence()
[all …]
/external/guava/guava-tests/benchmark/com/google/common/collect/
DBinaryTreeTraverserBenchmark.java98 int minIndex = 0; in createTreap() local
100 if (keys.get(i) < keys.get(minIndex)) { in createTreap()
101 minIndex = i; in createTreap()
104 Optional<BinaryNode> leftChild = createTreap(keys.subList(0, minIndex)); in createTreap()
105 Optional<BinaryNode> rightChild = createTreap(keys.subList(minIndex + 1, keys.size())); in createTreap()
106 return Optional.of(new BinaryNode(keys.get(minIndex), leftChild, rightChild)); in createTreap()
/external/icu/icu4c/source/tools/toolutil/
Ddenseranges.cpp65 int32_t minIndex=-1; in firstAfter() local
67 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) { in firstAfter()
69 minIndex=i; in firstAfter()
72 return minIndex; in firstAfter()
/external/skia/src/codec/
DSkCodec_libico.cpp210 int32_t minIndex = -1; in onGetScaledDimensions() local
217 minIndex = i; in onGetScaledDimensions()
220 SkASSERT(minIndex >= 0); in onGetScaledDimensions()
222 return fEmbeddedCodecs->operator[](minIndex)->getInfo().dimensions(); in onGetScaledDimensions()
/external/icu/icu4c/source/test/letest/
Dcletest.c699 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; in GlyphToCharTest() local
708 if (ix < minIndex) { in GlyphToCharTest()
709 minIndex = ix; in GlyphToCharTest()
713 if (minIndex != charIndex) { in GlyphToCharTest()
715 run, lineNumber, charIndex, minIndex); in GlyphToCharTest()
Dletest.cpp929 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; in GlyphToCharTest() local
938 if (ix < minIndex) { in GlyphToCharTest()
939 minIndex = ix; in GlyphToCharTest()
943 if (minIndex != charIndex) { in GlyphToCharTest()
945 run, lineNumber, charIndex, minIndex); in GlyphToCharTest()
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DAbstractRealVector.java301 int minIndex = -1; in getMinIndex() local
307 minIndex = entry.getIndex(); in getMinIndex()
311 return minIndex; in getMinIndex()
318 final int minIndex = getMinIndex(); in getMinValue() local
319 return minIndex < 0 ? Double.NaN : getEntry(minIndex); in getMinValue()
/external/guava/guava/src/com/google/common/collect/
DMinMaxPriorityQueue.java578 int minIndex = index; in findMin() local
580 if (compareElements(i, minIndex) < 0) { in findMin()
581 minIndex = i; in findMin()
584 return minIndex; in findMin()
/external/clang/utils/ABITest/
DABITestGen.py601 opts.minIndex = max(0,min(opts.maxIndex-1, opts.minIndex))
603 opts.count = min(opts.count, opts.maxIndex-opts.minIndex)
661 index = opts.minIndex + i
663 index = opts.minIndex + int((opts.maxIndex-opts.minIndex) * random.random())
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
DUtils.java150 int minIndex = 0; in closest() local
159 minIndex = i; in closest()
162 return minIndex; in closest()
/external/pdfium/core/src/fpdftext/
Dfpdf_text_int.cpp522 int minIndex = -2; in GetOrderByDirection() local
526 minIndex = -1; in GetOrderByDirection()
534 minIndex = index; in GetOrderByDirection()
567 minIndex = index; in GetOrderByDirection()
575 return minIndex; in GetOrderByDirection()
577 minIndex = -2; in GetOrderByDirection()
580 return minIndex; in GetOrderByDirection()
585 minIndex = index; in GetOrderByDirection()
619 minIndex = index; in GetOrderByDirection()
623 return minIndex; in GetOrderByDirection()
/external/mesa3d/src/mesa/program/
Dprogram_parse.y2339 const GLint minIndex = 0;
2340 ASSERT(index >= minIndex);
2341 (void) minIndex;
2381 const GLint minIndex = -(1 << INST_INDEX_BITS);
2383 ASSERT(index >= minIndex);
2384 (void) minIndex;
/external/skia/src/core/
DSkPath.cpp2423 int minIndex = index; in find_min_max_x_at_y() local
2432 minIndex = i; in find_min_max_x_at_y()
2439 return minIndex; in find_min_max_x_at_y()
2491 int minIndex = find_min_max_x_at_y(pts, index, n, &maxIndex); in cheapComputeDirection() local
2492 if (minIndex == maxIndex) { in cheapComputeDirection()
2495 SkASSERT(pts[minIndex].fY == pts[index].fY); in cheapComputeDirection()
2497 SkASSERT(pts[minIndex].fX <= pts[maxIndex].fX); in cheapComputeDirection()
2500 cross = minIndex - maxIndex; in cheapComputeDirection()
/external/llvm/include/llvm/CodeGen/PBQP/
DReductionRules.h212 s.setSelection(NId, v.minIndex()); in backpropagate()
DMath.h131 unsigned minIndex() const { in minIndex() function