HomeSort by relevance Sort by last modified time
    Searched defs:startIndex (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/webkit/Source/WebCore/fileapi/
BlobURL.cpp 59 unsigned startIndex = url.pathAfterLastSlash();
60 return url.string().substring(startIndex);
  /external/jsilver/src/com/google/streamhtmlparser/util/
JavascriptTokenBuffer.java 58 private int startIndex;
69 startIndex = 0;
82 startIndex = aJavascriptTokenBuffer.startIndex;
117 if (endIndex == startIndex) {
118 startIndex = (endIndex + 1) % buffer.length;
129 if (startIndex == endIndex) {
250 int len = endIndex - startIndex;
  /external/proguard/src/proguard/classfile/util/
ExternalTypeEnumeration.java 81 int startIndex = index;
85 startIndex);
91 startIndex);
98 return descriptor.substring(startIndex, index++).trim();
InternalTypeEnumeration.java 84 int startIndex = index;
104 return descriptor.substring(startIndex, index);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSubstring.java 58 int startIndex;
66 startIndex = 0;
71 startIndex = (start > 0) ? (int) start - 1 : 0;
85 if (startIndex > lenOfS1)
86 startIndex = lenOfS1;
88 substr = s1.substring(startIndex, end);
92 if (startIndex > lenOfS1)
93 startIndex = lenOfS1;
94 substr = s1.substring(startIndex);
  /external/icu4c/common/unicode/
chariter.h 510 * (toward startIndex()), and returns that code unit. If there are
519 * (toward startIndex()), and returns that code point. If there are
547 inline int32_t startIndex(void) const;
696 CharacterIterator::startIndex(void) const {
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
IndexDataManager.h 28 UINT startIndex;
  /external/antlr/src/org/antlr/runtime/tree/
CommonTree.java 45 protected int startIndex=-1, stopIndex=-1;
58 this.startIndex = node.startIndex;
113 if ( startIndex==-1 && token!=null ) {
116 return startIndex;
120 startIndex = index;
140 if ( startIndex<0 || stopIndex<0 ) {
141 startIndex = stopIndex = token.getTokenIndex();
148 if ( startIndex>=0 && stopIndex>=0 ) return; // already set
152 startIndex = firstChild.getTokenStartIndex()
    [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/llvm/lib/CodeGen/
LiveIntervalUnion.h 79 SlotIndex startIndex() const { return Segments.start(); }
  /external/proguard/src/proguard/
WordReader.java 176 int startIndex = currentIndex;
179 char startChar = currentLine.charAt(startIndex);
190 startIndex++;
200 currentWord = currentLine.substring(startIndex-1, currentIndex);
229 currentWord = currentLine.substring(startIndex, endIndex);
  /external/proguard/src/proguard/optimize/evaluation/
VariableOptimizer.java 104 int startIndex =
128 for (int newIndex = startIndex; newIndex < oldIndex; newIndex++)
  /external/webkit/Source/WebCore/editing/
ApplyBlockElementCommand.cpp 82 int startIndex = indexForVisiblePosition(startOfSelection);
89 RefPtr<Range> startRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), startIndex, 0, true);
  /frameworks/base/libs/utils/
Debug.cpp 238 const size_t startIndex = word+(alignment-(alignment?1:0));
241 const size_t startIndex = word;
253 const unsigned char val = *(pos+startIndex+(index*dir));
270 const unsigned char val = *(pos+startIndex+(index*dir));
  /frameworks/base/services/java/com/android/server/location/
GpsXtraDownloader.java 86 int startIndex = mNextServerIndex;
102 if (mNextServerIndex == startIndex) break;
  /external/icu4c/i18n/
plurfmt.cpp 475 int32_t startIndex=0;
491 result += UnicodeString(message, startIndex, i);
493 startIndex = i + 1;
498 if ( startIndex < message.length() ) {
499 result += UnicodeString(message, startIndex, message.length()-startIndex);
  /external/skia/src/images/
SkMovie_gif.cpp 362 int startIndex = fLastDrawIndex + 1;
366 startIndex = 0;
378 } else if (startIndex > fCurrIndex) {
380 startIndex = 0;
400 for (int i = startIndex; i <= lastIndex; i++) {
  /libcore/luni/src/main/java/java/util/
HugeEnumSet.java 325 int startIndex = startOrdinal / BIT_IN_LONG;
332 if (startIndex == endIndex) {
334 size -= Long.bitCount(bits[startIndex]);
335 bits[startIndex] |= range;
336 size += Long.bitCount(bits[startIndex]);
340 size -= Long.bitCount(bits[startIndex]);
341 bits[startIndex] |= range;
342 size += Long.bitCount(bits[startIndex]);
350 for (int i = (startIndex + 1); i <= (endIndex - 1); i++) {
  /packages/inputmethods/LatinIME/native/src/
proximity_info.cpp 103 const int startIndex = getStartIndexFromCoordinates(x, y);
105 LOGI("hasSpaceProximity: index %d", startIndex);
109 LOGI("Index: %d", mProximityCharsArray[startIndex + i]);
111 if (mProximityCharsArray[startIndex + i] == KEYCODE_SPACE) {
  /external/webkit/Source/WebCore/platform/graphics/
FontCache.cpp 371 int startIndex = familyIndex;
373 for (int i = 0; startFamily && i < startIndex; i++)
398 if (!result && startIndex == 0) {
  /frameworks/base/core/tests/utillib/src/coretestutils/http/
MockWebServer.java 314 int startIndex = 0;
339 startIndex = writeLength;
346 out.write(currentBlock, startIndex, writeLength);
351 out.write(currentBlock, startIndex, writeLength);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/voice/
RecognitionView.java 316 int startIndex = startPosition - 2000; // include 250ms before speech
317 if (startIndex < 0) {
318 startIndex = 0;
323 final int count = (endIndex - startIndex) / numSamplePerWave;
331 final int avabs = getAverageAbs(waveBuffer, startIndex, i , numSamplePerWave);
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
GLEScontext.cpp 282 int startIndex = (ranges[i].getStart() - offset) / stride;
285 indices[n++] = startIndex+j;

Completed in 796 milliseconds

1 2 3