| /external/apache-xml/src/main/java/org/apache/xml/utils/ |
| 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/webkit/Source/WebCore/editing/ |
| ApplyBlockElementCommand.cpp | 83 int endIndex = indexForVisiblePosition(endOfSelection); 90 RefPtr<Range> endRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), endIndex, 0, true);
|
| /external/icu4c/i18n/unicode/ |
| udateintervalformat.h | 159 * On output, position->beginIndex and position->endIndex indicate
|
| unum.h | 391 * is read. On output, position->beginIndex and position->endIndex indicate 420 * is read. On output, position->beginIndex and position->endIndex indicate 449 * is read. On output, position->beginIndex and position->endIndex indicate 482 * is read. On output, position->beginIndex and position->endIndex indicate 514 * position->endIndex indicate the beginning and ending indices of [all...] |
| /external/libphonenumber/java/src/com/android/i18n/phonenumbers/ |
| PhoneNumberMatcher.java | 532 int endIndex = rfc3966Format.indexOf(';'); 533 if (endIndex < 0) { 534 endIndex = rfc3966Format.length(); 538 return rfc3966Format.substring(startIndex, endIndex).split("-");
|
| /external/v8/src/ |
| string.js | 646 var endIndex = matchInfo[CAPTURE1]; 649 if (startIndex === endIndex && endIndex === currentIndex) { 678 startIndex = currentIndex = endIndex;
|
| /external/webkit/Source/WebCore/rendering/ |
| RenderListBox.cpp | 536 int endIndex = scrollToward(pos); 537 if (endIndex >= 0) { 542 select->setActiveSelectionAnchorIndex(endIndex); 544 select->setActiveSelectionEndIndex(endIndex);
|
| /external/apache-xml/src/main/java/org/apache/xpath/objects/ |
| XString.java | 881 * extends to the character at index <code>endIndex - 1</code>. 882 * Thus the length of the substring is <code>endIndex-beginIndex</code>. 885 * @param endIndex the ending index, exclusive. 889 * <code>endIndex</code> is larger than the length of 892 * <code>endIndex</code>. 894 public XMLString substring(int beginIndex, int endIndex) 896 return new XString(str().substring(beginIndex, endIndex)); [all...] |
| /packages/apps/Launcher2/src/com/android/launcher2/ |
| PagedView.java | 656 final int endIndex = isRtl ? -1 : childCount; 659 for (int i = startIndex; i != endIndex; i += delta) { 747 final int endIndex = isRtl ? index : index; 750 for (int i = startIndex; i != endIndex; i += delta) { 791 int endIndex = isRtl ? 0 : pageCount - 1; 794 while (leftScreen != endIndex && 802 while (rightScreen != endIndex && [all...] |
| FocusHelper.java | 634 int endIndex = (lineDelta < 0) ? -1 : views.size(); 635 while (index != endIndex) { 648 if (index <= endIndex) { [all...] |
| /external/icu4c/common/ |
| normlzr.cpp | 354 int32_t Normalizer::endIndex() const { 355 return text->endIndex();
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
| 15.10.6.2-2.js | 67 * 10. Let e be r's endIndex value. 80 * i to i+1, but from i to "endIndex" e:
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
| IccUtils.java | 516 int endIndex = offset + (number * 3); // 1 color use 3 bytes 525 } while (valueIndex < endIndex);
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
| IccUtils.java | 516 int endIndex = offset + (number * 3); // 1 color use 3 bytes 525 } while (valueIndex < endIndex);
|
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
| TestResultsGenerator.java | 475 int endIndex = aString.lastIndexOf(endToken); 476 if (endIndex == -1) { 480 int startIndex = endIndex; 487 String count = aString.substring(startIndex + 1, endIndex).trim(); [all...] |
| /external/icu4c/common/unicode/ |
| normlzr.h | 471 * This is equivalent to setIndexOnly(endIndex()) followed by previous(). 484 * in the text. If this is possible, you can test getIndex()<endIndex() 485 * before calling next(), or (getIndex()<endIndex() || last()!=DONE) 565 int32_t endIndex(void) const;
|
| /external/webkit/Source/WebCore/inspector/front-end/ |
| ElementsPanel.js | 863 var endIndex = crumbs.childNodes.length - 1; 864 while (startIndex != significantIndex || endIndex != significantIndex) { 866 var endDistance = endIndex - significantIndex; 870 var index = endIndex--; [all...] |
| /libcore/luni/src/main/java/java/text/ |
| Format.java | 103 * {@code beginIndex} and {@code endIndex} members will be updated with the
|
| /external/robolectric/src/main/java/com/xtremelabs/robolectric/ |
| RobolectricTestRunner.java | 463 int endIndex = annotationString.indexOf( ')' ); 465 if( startIndex < 0 || endIndex < 0 ){ return; } 467 locale = annotationString.substring( startIndex + 1, endIndex );
|
| /libcore/luni/src/main/java/java/lang/ |
| Character.java | [all...] |
| /external/jdiff/src/jdiff/ |
| RootDocToXML.java | [all...] |
| /frameworks/base/core/java/android/hardware/ |
| Camera.java | [all...] |
| /external/icu4c/test/cintltst/ |
| cnumtst.c | 260 if(pos1.beginIndex == 1 && pos1.endIndex == 12) 264 pos1.beginIndex, pos1.endIndex); 292 if(pos2.beginIndex == 9 && pos2.endIndex == 11) 296 pos1.beginIndex, pos1.endIndex); 343 if (pos2.beginIndex == 1 && pos2.endIndex == 6) { 347 pos1.beginIndex, pos1.endIndex); 860 if (fieldPos.endIndex != 27) { 862 __FILE__, __LINE__, 0, fieldPos.endIndex); [all...] |
| /dalvik/vm/compiler/codegen/x86/ |
| AnalysisO1.cpp | [all...] |
| /external/webkit/Source/JavaScriptCore/yarr/ |
| YarrInterpreter.cpp | [all...] |