HomeSort by relevance Sort by last modified time
    Searched full:startindex (Results 26 - 50 of 116) sorted by null

12 3 4 5

  /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));
  /external/chromium/third_party/icu/source/test/intltest/
tstnrapi.cpp 90 copy.startIndex()!=iter.startIndex() ||
  /external/icu4c/test/intltest/
tstnrapi.cpp 89 copy.startIndex()!=iter.startIndex() ||
  /external/proguard/src/proguard/optimize/evaluation/
VariableOptimizer.java 104 int startIndex =
128 for (int newIndex = startIndex; newIndex < oldIndex; newIndex++)
  /external/webkit/WebCore/dom/
SelectElement.h 70 static int nextSelectableListIndex(SelectElementData&, Element*, int startIndex);
71 static int previousSelectableListIndex(SelectElementData&, Element*, int startIndex);
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...]
  /frameworks/base/services/java/com/android/server/location/
GpsXtraDownloader.java 87 int startIndex = mNextServerIndex;
103 if (mNextServerIndex == startIndex) break;
  /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());
  /external/libxml2/
xpointer.c 325 * @startindex: the start index
334 xmlXPtrNewRange(xmlNodePtr start, int startindex,
342 if (startindex < 0)
355 ret->index = startindex;
2762 int i, startindex, endindex = 0, fendindex; local
    [all...]
  /libcore/luni/src/main/java/java/util/
Formatter.java     [all...]
  /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...]
  /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++) {
  /external/chromium/third_party/icu/source/common/
uvectr32.cpp 183 int32_t UVector32::indexOf(int32_t key, int32_t startIndex) const {
185 for (i=startIndex; i<count; ++i) {
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;
serv.cpp 467 int32_t startIndex = 0;
474 startIndex = i + 1;
478 if (startIndex == 0) {
499 int32_t index = startIndex;
  /external/icu4c/common/
uvectr32.cpp 183 int32_t UVector32::indexOf(int32_t key, int32_t startIndex) const {
185 for (i=startIndex; i<count; ++i) {
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;
  /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/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) {
  /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++) {
  /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/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/WebCore/editing/
IndentOutdentCommand.cpp 301 int startIndex = indexForVisiblePosition(startOfSelection);
314 RefPtr<Range> startRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), startIndex, 0, true);
  /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) {
  /external/chromium/third_party/icu/public/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 {

Completed in 680 milliseconds

12 3 4 5