HomeSort by relevance Sort by last modified time
    Searched refs:startIndex (Results 26 - 50 of 82) sorted by null

12 3 4

  /external/icu4c/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/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...]
tstnrapi.cpp 90 copy.startIndex()!=iter.startIndex() ||
  /dalvik/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/common/
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;
unorm.cpp     [all...]
serv.cpp 467 int32_t startIndex = 0;
474 startIndex = i + 1;
478 if (startIndex == 0) {
499 int32_t index = startIndex;
  /external/icu4c/i18n/unicode/
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/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...]
  /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/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 168 * @param startIndex Index where to start the search
172 String entryName, int entryKind, int startIndex) {
173 if (startIndex < 0) {
174 startIndex = 0;
176 for (int i = startIndex ; i < entries.length ; i++) {
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/
FolderConfiguration.java 494 * <var>startIndex</var>
495 * @param startIndex
498 public int getHighestPriorityQualifier(int startIndex) {
499 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 121 int startIndex = 4; // OK (5 tests)
  /external/icu4c/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 802 public static final native boolean parseProcLine(byte[] buffer, int startIndex,
  /frameworks/base/core/jni/
android_util_Process.cpp 626 char* buffer, jint startIndex, jint endIndex, jintArray format,
655 jsize i = startIndex;
730 jbyteArray buffer, jint startIndex, jint endIndex, jintArray format,
736 (char*) bufferArray, startIndex, endIndex, format, outStrings,

Completed in 650 milliseconds

12 3 4