/external/webkit/WebCore/editing/ |
IndentOutdentCommand.cpp | 301 int startIndex = indexForVisiblePosition(startOfSelection); 314 RefPtr<Range> startRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), startIndex, 0, true);
|
CompositeEditCommand.cpp | 300 int startIndex = TextIterator::rangeLength(startRange.get()); 317 RefPtr<Range> selectedRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), startIndex, length); [all...] |
/external/webkit/WebCore/inspector/front-end/ |
TimelinePanel.js | 361 var startIndex = Math.max(0, Math.min(Math.floor(visibleTop / rowHeight) - 1, recordsInWindow.length - 1)); 362 while (startIndex > 0 && recordsInWindow[startIndex].parent) 363 startIndex--; 369 const top = (startIndex * rowHeight) + "px"; 381 for (var i = startIndex; i < endIndex; ++i) {
|
ElementsPanel.js | 873 var startIndex = 0; 875 while (startIndex != significantIndex || endIndex != significantIndex) { 876 var startDistance = significantIndex - startIndex [all...] |
/frameworks/base/core/java/android/webkit/ |
CookieManager.java | 753 int startIndex = 0; 757 startIndex = nextIndex + 1; 758 nextIndex = host.indexOf(PERIOD, startIndex); 760 if (startIndex > 0) { 761 return host.substring(startIndex); [all...] |
/external/chromium/third_party/icu/source/common/ |
unorm.cpp | [all...] |
serv.cpp | 467 int32_t startIndex = 0; 474 startIndex = i + 1; 478 if (startIndex == 0) { 499 int32_t index = startIndex;
|
uhash.c | 334 int32_t theIndex, startIndex; 340 startIndex = theIndex = (hashcode ^ 0x4000000) % hash->length; 366 } while (theIndex != startIndex); [all...] |
/external/icu4c/common/ |
normlzr.cpp | 346 int32_t Normalizer::startIndex() const { 347 return text->startIndex();
|
serv.cpp | 467 int32_t startIndex = 0; 474 startIndex = i + 1; 478 if (startIndex == 0) { 499 int32_t index = startIndex;
|
uhash.c | 334 int32_t theIndex, startIndex; 340 startIndex = theIndex = (hashcode ^ 0x4000000) % hash->length; 366 } while (theIndex != startIndex); [all...] |
/external/icu4c/i18n/unicode/ |
regex.h | 770 * at the specified startIndex, and extending to the end of the input. 773 * @param startIndex The input string index at which to begin matching. [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/ |
FolderConfiguration.java | 526 * <var>startIndex</var> 527 * @param startIndex 530 public int getHighestPriorityQualifier(int startIndex) { 531 for (int i = startIndex ; i < INDEX_COUNT ; i++) {
|
/sdk/traceview/src/com/android/traceview/ |
ProfileProvider.java | 77 private MethodData doMatchName(String name, int startIndex) { 80 for (int ii = startIndex; ii < mRoots.length; ++ii) {
|
/cts/tools/host/src/com/android/cts/ |
ReferenceAppTestPackage.java | 123 int startIndex = 4; // OK (5 tests)
|
/external/chromium/third_party/icu/public/common/unicode/ |
normlzr.h | 454 * This is equivalent to setIndexOnly(startIndex()) followed by next(). 494 * (getIndex()>startIndex() || first()!=DONE). (Calling first() will change 517 * This is equivalent to setIndexOnly(startIndex)). 546 int32_t startIndex(void) const;
|
/frameworks/base/core/java/android/os/ |
Process.java | 817 public static final native boolean parseProcLine(byte[] buffer, int startIndex,
|
/frameworks/base/core/jni/ |
android_util_Process.cpp | 663 char* buffer, jint startIndex, jint endIndex, jintArray format, 692 jsize i = startIndex; 767 jbyteArray buffer, jint startIndex, jint endIndex, jintArray format, 773 (char*) bufferArray, startIndex, endIndex, format, outStrings,
|
/libcore/luni/src/main/java/java/util/regex/ |
Matcher.java | 672 private static native boolean findImpl(int addr, String s, int startIndex, int[] offsets);
|
/external/webkit/WebCore/css/ |
CSSStyleSelector.h | 178 void applyDeclarations(bool firstPass, bool important, int startIndex, int endIndex);
|
/external/v8/src/ |
string.js | 563 var startIndex = 0; 568 if (startIndex === length) { 573 var matchInfo = splitMatch(separator, subject, currentIndex, startIndex); 583 if (startIndex === endIndex && endIndex === currentIndex) { 584 startIndex++; 603 startIndex = currentIndex = endIndex;
|
/external/chromium/third_party/icu/source/i18n/ |
rbnf.cpp | [all...] |
usearch.cpp | 611 int32_t startindex = ubrk_first(breakiterator); local 615 if (start < startindex || start > endindex || 616 end < startindex || end > endindex) { 622 UBool result = (start == startindex || [all...] |
/external/icu4c/i18n/ |
rbnf.cpp | [all...] |
usearch.cpp | 621 int32_t startindex = ubrk_first(breakiterator); local 625 if (start < startindex || start > endindex || 626 end < startindex || end > endindex) { 632 UBool result = (start == startindex || [all...] |