HomeSort by relevance Sort by last modified time
    Searched refs:endIndex (Results 51 - 75 of 220) sorted by null

1 23 4 5 6 7 8 9

  /external/chromium_org/third_party/skia/src/pathops/
SkReduceOrder.cpp 76 int endIndex = 2;
77 while (quad[startIndex].approximatelyEqual(quad[endIndex])) {
78 --endIndex;
79 if (endIndex == 0) {
84 if (!quad.isLinear(startIndex, endIndex)) {
282 int endIndex = 3;
283 while (cubic[startIndex].approximatelyEqual(cubic[endIndex])) {
284 --endIndex;
285 if (endIndex == 0) {
290 if (!cubic.isLinear(startIndex, endIndex)) {
    [all...]
SkPathOpsCubic.cpp 78 bool SkDCubic::isLinear(int startIndex, int endIndex) const {
80 lineParameters.cubicEndPoints(*this, startIndex, endIndex);
421 void SkDCubic::align(int endIndex, int ctrlIndex, SkDPoint* dstPt) const {
422 if (fPts[endIndex].fX == fPts[ctrlIndex].fX) {
423 dstPt->fX = fPts[endIndex].fX;
425 if (fPts[endIndex].fY == fPts[ctrlIndex].fY) {
426 dstPt->fY = fPts[endIndex].fY;
  /external/skia/src/pathops/
SkReduceOrder.cpp 76 int endIndex = 2;
77 while (quad[startIndex].approximatelyEqual(quad[endIndex])) {
78 --endIndex;
79 if (endIndex == 0) {
84 if (!quad.isLinear(startIndex, endIndex)) {
282 int endIndex = 3;
283 while (cubic[startIndex].approximatelyEqual(cubic[endIndex])) {
284 --endIndex;
285 if (endIndex == 0) {
290 if (!cubic.isLinear(startIndex, endIndex)) {
    [all...]
SkPathOpsCubic.cpp 78 bool SkDCubic::isLinear(int startIndex, int endIndex) const {
80 lineParameters.cubicEndPoints(*this, startIndex, endIndex);
421 void SkDCubic::align(int endIndex, int ctrlIndex, SkDPoint* dstPt) const {
422 if (fPts[endIndex].fX == fPts[ctrlIndex].fX) {
423 dstPt->fX = fPts[endIndex].fX;
425 if (fPts[endIndex].fY == fPts[ctrlIndex].fY) {
426 dstPt->fY = fPts[endIndex].fY;
  /libcore/luni/src/test/java/tests/api/java/util/
ArraysTest.java     [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
RopeByteString.java 306 * @param endIndex the last character is the one before this index
310 public ByteString substring(int beginIndex, int endIndex) {
315 if (endIndex > totalLength) {
317 "End index: " + endIndex + " > " + totalLength);
319 int substringLength = endIndex - beginIndex;
323 + endIndex);
335 if (endIndex <= leftLength) {
337 result = left.substring(beginIndex, endIndex);
341 .substring(beginIndex - leftLength, endIndex - leftLength);
345 ByteString rightSub = right.substring(0, endIndex - leftLength)
    [all...]
  /external/proguard/src/proguard/retrace/
ReTrace.java 256 int endIndex = matcher.end(expressionTypeIndex + 1);
311 lineIndex = endIndex;
521 int endIndex = obfuscatedArguments.indexOf(',', startIndex);
522 if (endIndex < 0)
527 originalArguments.append(originalType(obfuscatedArguments.substring(startIndex, endIndex).trim())).append(',');
529 startIndex = endIndex + 1;
  /external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 98 int endIndex = pos;
99 String s = buffer.substring(beginIndex, endIndex);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 641 * extends to the character at index <code>endIndex - 1</code>.
642 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
645 * @param endIndex the ending index, exclusive.
649 * <code>endIndex</code> is larger than the length of
652 * <code>endIndex</code>.
654 public XMLString substring(int beginIndex, int endIndex)
656 return new XMLStringDefault(m_str.substring(beginIndex, endIndex));
XMLString.java 548 * extends to the character at index <code>endIndex - 1</code>.
549 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
552 * @param endIndex the ending index, exclusive.
556 * <code>endIndex</code> is larger than the length of
559 * <code>endIndex</code>.
561 public abstract XMLString substring(int beginIndex, int endIndex);
  /external/llvm/lib/CodeGen/
Spiller.cpp 141 SlotIndex endIndex = loadIndex.getNextIndex();
144 newLI->addRange(LiveRange(loadIndex, endIndex, loadVNI));
  /external/arduino/hardware/arduino/cores/arduino/
WString.h 75 String substring( unsigned int beginIndex, unsigned int endIndex ) const;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
ApplyBlockElementCommand.cpp 86 int endIndex = indexForVisiblePosition(endOfSelection, endScope);
94 ASSERT(startIndex <= endIndex);
95 if (startScope == endScope && startIndex >= 0 && startIndex <= endIndex) {
97 VisiblePosition end(visiblePositionForIndex(endIndex, endScope.get()));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
LocaleICU.h 76 bool detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex);
  /external/icu4c/i18n/
udateintervalformat.cpp 99 position->endIndex = fp.getEndIndex();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 103 private boolean fitInWidth(final int startIndex, final int endIndex, final int width) {
104 for (int index = startIndex; index < endIndex; index++) {
111 private int calcurateMaxRowWidth(final int startIndex, final int endIndex) {
117 while (index < endIndex && mRowNumbers[index] == row) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CsvUtils.java 143 final int endIndex = text.indexOf(COMMA, nextIndex);
144 return endIndex < 0 ? length : endIndex;
  /cts/tests/tests/text/src/android/text/cts/
StaticLayoutLineBreakingTest.java 217 int endIndex = text.indexOf('>');
218 if (endIndex < 0) throw new IllegalArgumentException("Unbalanced span markers");
220 text = text.substring(0, startIndex) + text.substring(startIndex + 1, endIndex) +
221 text.substring(endIndex + 1);
224 spanEnds[spanCount] = endIndex - 2;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
UIUtils.js     [all...]
  /frameworks/base/core/java/android/hardware/
Camera.java     [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3string.c 82 static pANTLR3_STRING subString8 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex);
83 static pANTLR3_STRING subStringUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
base.js 153 var endIndex = jsonp.lastIndexOf(')');
154 if (startIndex == 0 || endIndex == -1)
156 return JSON.parse(jsonp.substr(startIndex, endIndex - startIndex));
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3string.h 179 (*subString) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ArraysTest.java 869 int endIndex = 3 * arraySize / 4;
876 Arrays.sort(reversedArray, startIndex, endIndex);
880 for (int counter = startIndex; counter < endIndex - 1; counter++)
883 for (int counter = endIndex; counter < arraySize; counter++)
    [all...]

Completed in 536 milliseconds

1 23 4 5 6 7 8 9