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

12 3 4 5 6 7 8 910

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringExtensions.cs 60 public static int indexOf( string str, char value, int startIndex )
62 return str.IndexOf( value, startIndex );
72 public static int indexOf( string str, string value, int startIndex )
74 return str.IndexOf( value, startIndex );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringExtensions.cs 61 public static int indexOf( this string str, char value, int startIndex )
63 return str.IndexOf( value, startIndex );
73 public static int indexOf( this string str, string value, int startIndex )
75 return str.IndexOf( value, startIndex );
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
ColorTags.java 47 int startIndex = 0;
53 builder.append(charSeq.subSequence(startIndex, m.start()));
55 startIndex = m.end();
58 builder.append(charSeq.subSequence(startIndex, charSeq.length()));
  /external/webkit/Tools/Scripts/
bisect-builds 131 my $startIndex = $revisions[0] ? findNearestNightlyIndex(@nightlies, $revisions[0], 'ceil') : 0;
141 $nightlies[$startIndex]->{rev};
142 downloadNightly($nightlies[$startIndex]->{file}, $nightlyFilesURLBase, $nightlyDownloadDirectory);
143 mountAndRunNightly($nightlies[$startIndex]->{file}, $nightlyDownloadDirectory, $safariPath, $tempFile);
144 $didReproduceBug = promptForTest($nightlies[$startIndex]->{rev});
145 $startIndex-- if $didReproduceBug < 0;
166 printStatus($nightlies[$startIndex]->{rev}, $nightlies[$endIndex]->{rev}, $isProgression);
169 while (abs($endIndex - $startIndex) > 1) {
170 my $index = $startIndex + int(($endIndex - $startIndex) / 2)
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/util/
SearchUtilTest.java 35 assertEquals(5, matched.startIndex);
40 assertEquals(0, matched.startIndex);
45 assertEquals(0, matched.startIndex);
50 assertEquals(9, matched.startIndex);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlWheel.java 208 int startIndex = (mCurrentLevel == 0) ? 0 : mSecondLevelStartIndex;
213 if (mZoomControl != null) startIndex++;
220 if ((delta >= (mChildRadians[startIndex] - halfTouchSectorRadians)) &&
224 index = (int) ((delta - mChildRadians[startIndex])
227 if (index > sectors) return (startIndex + sectors);
229 if (index < 0) return startIndex;
231 if (delta <= (mChildRadians[startIndex + index]
233 return (startIndex + index);
235 if (delta >= (mChildRadians[startIndex + index + 1]
237 return (startIndex + index + 1)
    [all...]
  /external/aac/libSBRenc/src/
nf_est.cpp 169 INT startIndex, /*!< Start index. */
182 FIXP_DBL invIndex = GetInvInt(stopIndex-startIndex);
195 for(k = startIndex ; k < stopIndex; k++){
202 for(k = startIndex ; k < stopIndex; k++){
213 for(k = startIndex ; k < stopIndex; k++){
220 for(k = startIndex ; k < stopIndex; k++){
299 INT startIndex, /*!< Start index. */
317 startPos[0] = startIndex;
318 stopPos[0] = startIndex + min(numberOfEstimatesPerFrame,2);
321 startPos[0] = startIndex;
    [all...]
nf_est.h 121 INT startIndex, /*!< Start index. */
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IntRangeManager.java 206 for (int startIndex = 0; startIndex < len; startIndex++) {
207 IntRange range = mRanges.get(startIndex);
220 if ((startIndex + 1) < len) {
221 nextRange = mRanges.get(startIndex + 1);
258 mRanges.add(startIndex, new IntRange(startId, endId, client));
275 for (int endIndex = startIndex+1; endIndex < len; endIndex++) {
287 // of the next range to join is always startIndex+1.
290 int joinIndex = startIndex + 1
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLSourceTracker.cpp 57 ASSERT(!token.startIndex());
59 int length = token.endIndex() - token.startIndex() - m_sourceFromPreviousSegments.length();
  /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++) {
Arrays.java 178 * @param startIndex the inclusive start index.
183 * @throws IllegalArgumentException if {@code startIndex > endIndex}
184 * @throws ArrayIndexOutOfBoundsException if {@code startIndex < 0 || endIndex > array.length}
187 public static int binarySearch(byte[] array, int startIndex, int endIndex, byte value) {
188 checkBinarySearchBounds(startIndex, endIndex, array.length);
189 int lo = startIndex;
228 * @param startIndex the inclusive start index.
233 * @throws IllegalArgumentException if {@code startIndex > endIndex}
234 * @throws ArrayIndexOutOfBoundsException if {@code startIndex < 0 || endIndex > array.length}
237 public static int binarySearch(char[] array, int startIndex, int endIndex, char value)
    [all...]
Formatter.java     [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
ArraysTest.java     [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
AttendeesView.java 290 final int startIndex = 0;
293 addView(mDividerForYes, startIndex);
297 index = startIndex + mYes;
301 final int startIndex = (mYes == 0 ? 0 : 1 + mYes);
304 addView(mDividerForNo, startIndex);
308 index = startIndex + mNo;
312 final int startIndex = (mYes == 0 ? 0 : 1 + mYes) + (mNo == 0 ? 0 : 1 + mNo);
315 addView(mDividerForMaybe, startIndex);
319 index = startIndex + mMaybe;
323 final int startIndex = (mYes == 0 ? 0 : 1 + mYes) + (mNo == 0 ? 0 : 1 + mNo
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CommonToken.as 75 token._start = CommonToken(oldToken).startIndex;
133 public function get startIndex():int {
137 public function set startIndex(start:int):void {
179 return "[@"+tokenIndex+","+startIndex+":"+stopIndex+"='"+txt+"',<"+type+">"+channelStr+","+line+":"+charPositionInLine+"]";
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3commontree.h 56 ANTLR3_MARKER startIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTree.h 33 NSInteger startIndex;
80 @property (assign, getter=getTokenStartIndex, setter=setTokenStartIndex:) NSInteger startIndex;
87 @property (assign) NSInteger startIndex;
  /external/icu4c/common/unicode/
chariter.h 516 * (toward startIndex()), and returns that code unit. If there are
525 * (toward startIndex()), and returns that code point. If there are
553 inline int32_t startIndex(void) const;
702 CharacterIterator::startIndex(void) const {
  /external/proguard/src/proguard/classfile/util/
InternalTypeEnumeration.java 84 int startIndex = index;
104 return descriptor.substring(startIndex, index);
  /external/skia/src/gpu/
GrBufferAllocPool.h 310 * buffer at the offset indicated by startIndex. Until that time they may be
315 * @param startIndex returns the offset into buffer of the first index.
320 int* startIndex);
328 int* startIndex);
  /external/markdown/markdown/
treeprocessors.py 91 startIndex = 0
93 data, matched, startIndex = self.__applyPattern(
95 data, patternIndex, startIndex)
198 def __applyPattern(self, pattern, data, patternIndex, startIndex=0):
208 * startIndex: string index, from which we starting search
213 match = pattern.getCompiledRegExp().match(data[startIndex:])
214 leftData = data[:startIndex]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
MeteringTest.java 469 * @param startIndex the array storing the index of the grey square where
475 private void runMultipleAreaTest(int[] startIndex, int[] endIndex, int[] weight) {
476 int numAreas = startIndex.length;
481 meteringAreas.add(makeArea(startIndex[i], endIndex[i], weight[i]));
483 startIndex[i], endIndex[i], weight[i]));
493 * @param startIndex the index of the grey square where the metering area
499 private void runSingleTest(int startIndex, int endIndex, int weight) {
503 Log.v(TAG, String.format("Single test for %d, %d, %d", startIndex, endIndex, weight));
504 meteringAreas.add(makeArea(startIndex, endIndex, weight));
541 * @param startIndex the index of the grey square where the metering are
    [all...]
  /external/proguard/src/proguard/retrace/
ReTrace.java 211 int startIndex = matcher.start(expressionTypeIndex + 1);
212 if (startIndex >= 0)
250 int startIndex = matcher.start(expressionTypeIndex + 1);
251 if (startIndex >= 0)
257 outLine.append(line.substring(lineIndex, startIndex));
515 int startIndex = 0;
518 int endIndex = obfuscatedArguments.indexOf(',', startIndex);
524 originalArguments.append(originalType(obfuscatedArguments.substring(startIndex, endIndex).trim())).append(',');
526 startIndex = endIndex + 1;
529 originalArguments.append(originalType(obfuscatedArguments.substring(startIndex).trim()))
    [all...]
  /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 (native) index at which to begin matching, or -1
447 int32_t startIndex,
456 * If startIndex >= zero the match operation starts at the specified
460 * If startIndex == -1 the match must cover the input region, or the entire
465 * @param startIndex The input string (native) index at which to begin matching, or -1
473 int64_t startIndex,
481 * <p>If startIndex is >= 0 any input region that was set for this
493 * @param startIndex The input string (native) index at which to begin matching, o
    [all...]

Completed in 2132 milliseconds

12 3 4 5 6 7 8 910