/frameworks/base/services/java/com/android/server/location/ |
GpsXtraDownloader.java | 87 int startIndex = mNextServerIndex; 103 if (mNextServerIndex == startIndex) break;
|
/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);
|
/external/chromium/third_party/icu/public/i18n/unicode/ |
uregex.h | 288 * If startIndex >= zero the match operation starts at the specified 292 * If startIndex == -1 the match must cover the input region, or the entire 297 * @param startIndex The input string index at which to begin matching, or -1 305 int32_t startIndex, 313 * <p>If startIndex is >= 0 any input region that was set for this 325 * @param startIndex The input string index at which to begin matching, or 333 int32_t startIndex, 338 * If startIndex is >= zero the search for a match begins at the specified index, 340 * Matcher.find(startIndex) in Java. 342 * If startIndex == -1 the search begins at the start of the input region [all...] |
regex.h | 529 * at the specified startIndex, and extending to the end of the input. 532 * @param startIndex The input string index at which to begin matching. 537 virtual UBool matches(int32_t startIndex, UErrorCode &status); 566 * @param startIndex The input string index at which to begin matching. 571 virtual UBool lookingAt(int32_t startIndex, UErrorCode &status); [all...] |
/external/chromium/third_party/icu/source/common/ |
uvector.h | 166 int32_t indexOf(void* obj, int32_t startIndex = 0) const; 168 int32_t indexOf(int32_t obj, int32_t startIndex = 0) const; 275 int32_t indexOf(UHashTok key, int32_t startIndex = 0, int8_t hint = 0) const;
|
uvectr32.cpp | 183 int32_t UVector32::indexOf(int32_t key, int32_t startIndex) const { 185 for (i=startIndex; i<count; ++i) {
|
uvectr32.h | 110 int32_t indexOf(int32_t elem, int32_t startIndex = 0) const;
|
/external/icu4c/common/ |
uvector.h | 166 int32_t indexOf(void* obj, int32_t startIndex = 0) const; 168 int32_t indexOf(int32_t obj, int32_t startIndex = 0) const; 275 int32_t indexOf(UHashTok key, int32_t startIndex = 0, int8_t hint = 0) const;
|
uvectr32.cpp | 183 int32_t UVector32::indexOf(int32_t key, int32_t startIndex) const { 185 for (i=startIndex; i<count; ++i) {
|
uvectr32.h | 110 int32_t indexOf(int32_t elem, int32_t startIndex = 0) const;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/ |
RecognitionView.java | 268 int startIndex = startPosition - 2000; // include 250ms before speech 269 if (startIndex < 0) { 270 startIndex = 0; 275 final int count = (endIndex - startIndex) / numSamplePerWave; 283 final int avabs = getAverageAbs(waveBuffer, startIndex, i , numSamplePerWave);
|
/external/icu4c/i18n/unicode/ |
uregex.h | 430 * If startIndex >= zero the match operation starts at the specified 434 * If startIndex == -1 the match must cover the input region, or the entire 439 * @param startIndex The input string index at which to begin matching, or -1 447 int32_t startIndex, 455 * <p>If startIndex is >= 0 any input region that was set for this 467 * @param startIndex The input string index at which to begin matching, or 475 int32_t startIndex, 480 * If startIndex is >= zero the search for a match begins at the specified index, 482 * Matcher.find(startIndex) in Java. 484 * If startIndex == -1 the search begins at the start of the input region [all...] |
/external/chromium/third_party/icu/source/i18n/ |
uregex.cpp | 300 int32_t startIndex, 306 if (startIndex == -1) { 309 result = regexp->fMatcher->matches(startIndex, *status); 323 int32_t startIndex, 329 if (startIndex == -1) { 332 result = regexp->fMatcher->lookingAt(startIndex, *status); 346 int32_t startIndex, 352 if (startIndex == -1) { 356 result = regexp->fMatcher->find(startIndex, *status); [all...] |
/frameworks/base/core/java/android/pim/ |
ICalendar.java | 547 int startIndex = -1; 572 startIndex = state.index; 576 if ((parameter == null) || (startIndex == -1)) { 580 parameter.name = text.substring(startIndex + 1, equalIndex);
|
/external/chromium/third_party/icu/source/test/intltest/ |
citrtest.cpp | 181 if(test->startIndex() != 0){ 182 errln("Failed: startIndex()"); 207 if (test1d->startIndex() < 0) 208 errln("Construction failed: startIndex is negative"); 211 if (test1d->getIndex() < test1d->startIndex() || test1d->endIndex() < test1d->getIndex()) 304 if (test8a->startIndex() < 0) 305 errln("Construction failed: startIndex is negative"); 308 if (test8c->getIndex() < test8c->startIndex() || test8c->endIndex() < test8c->getIndex()) 393 if (iter.startIndex() != 0 || iter.endIndex() != text.length()) 394 errln("startIndex() or endIndex() failed") [all...] |
tstnrapi.cpp | 90 copy.startIndex()!=iter.startIndex() ||
|
/external/icu4c/test/intltest/ |
citrtest.cpp | 181 if(test->startIndex() != 0){ 182 errln("Failed: startIndex()"); 207 if (test1d->startIndex() < 0) 208 errln("Construction failed: startIndex is negative"); 211 if (test1d->getIndex() < test1d->startIndex() || test1d->endIndex() < test1d->getIndex()) 304 if (test8a->startIndex() < 0) 305 errln("Construction failed: startIndex is negative"); 308 if (test8c->getIndex() < test8c->startIndex() || test8c->endIndex() < test8c->getIndex()) 393 if (iter.startIndex() != 0 || iter.endIndex() != text.length()) 394 errln("startIndex() or endIndex() failed") [all...] |
/external/webkit/WebCore/dom/ |
SelectElement.cpp | 107 int SelectElement::nextSelectableListIndex(SelectElementData& data, Element* element, int startIndex) 110 int index = startIndex + 1; 114 return startIndex; 118 int SelectElement::previousSelectableListIndex(SelectElementData& data, Element* element, int startIndex) 121 if (startIndex == -1) 122 startIndex = items.size(); 123 int index = startIndex - 1; 127 return startIndex; [all...] |
/libcore/luni/src/main/native/ |
java_util_regex_Matcher.cpp | 124 static jint Matcher_findImpl(JNIEnv* env, jclass, jint addr, jstring javaText, jint startIndex, jintArray offsets) { 126 UBool result = matcher->find(startIndex, matcher.status());
|
/libcore/xml/src/main/java/org/kxml2/kdom/ |
Node.java | 186 startIndex). 188 public int indexOf(String name, int startIndex) { 189 return indexOf(getNamespace(), name, startIndex); 198 public int indexOf(String namespace, String name, int startIndex) { 202 for (int i = startIndex; i < len; i++) {
|
/external/icu4c/i18n/ |
uregex.cpp | 512 int32_t startIndex, 519 if (startIndex == -1) { 522 result = regexp->fMatcher->matches(startIndex, *status); 536 int32_t startIndex, 543 if (startIndex == -1) { 546 result = regexp->fMatcher->lookingAt(startIndex, *status); 560 int32_t startIndex, 567 if (startIndex == -1) { 571 result = regexp->fMatcher->find(startIndex, *status); [all...] |
/external/webkit/WebCore/platform/graphics/ |
FontCache.cpp | 375 int startIndex = familyIndex; 377 for (int i = 0; startFamily && i < startIndex; i++) 402 if (!result && startIndex == 0) {
|
/external/icu4c/common/unicode/ |
normlzr.h | 461 * This is equivalent to setIndexOnly(startIndex()) followed by next(). 501 * (getIndex()>startIndex() || first()!=DONE). (Calling first() will change 524 * This is equivalent to setIndexOnly(startIndex)). 553 int32_t startIndex(void) const;
|
/external/webkit/JavaScriptCore/runtime/ |
ArgList.h | 230 void getSlice(int startIndex, ArgList& result) const;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
ProjectHelper.java | 171 * @param startIndex Index where to start the search 175 String entryName, int entryKind, int startIndex) { 176 if (startIndex < 0) { 177 startIndex = 0; 179 for (int i = startIndex ; i < entries.length ; i++) {
|