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

12 3 4 5 6 7 8 910

  /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/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. */
  /external/webkit/Source/WebCore/html/parser/
HTMLSourceTracker.cpp 57 ASSERT(!token.startIndex());
59 int length = token.endIndex() - token.startIndex() - m_sourceFromPreviousSegments.length();
  /packages/apps/Camera/src/com/android/camera/ui/
IndicatorControlWheel.java 275 int startIndex = (mCurrentLevel == 0) ? 0 : mSecondLevelStartIndex;
285 startIndex++;
290 startRadians = mChildRadians[startIndex] - halfTouchSectorRadians;
293 startRadians = mChildRadians[startIndex] - halfTouchSectorRadians;
298 startRadians = mChildRadians[startIndex] - halfTouchSectorRadians;
327 index = (int) ((delta - rebase(mChildRadians[startIndex], offset))
330 if (index > sectors) return (startIndex + sectors);
332 if (index < 0) return startIndex;
335 if (delta >= (rebase(mChildRadians[startIndex], offset)
337 return (startIndex + index)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
IntRangeManager.java 190 for (int startIndex = 0; startIndex < len; startIndex++) {
191 IntRange range = mRanges.get(startIndex);
198 mRanges.add(startIndex, new IntRange(startId, endId, client));
214 for (int endIndex = startIndex+1; endIndex < len; endIndex++) {
225 // of the next range to join is always startIndex+1.
228 int joinIndex = startIndex + 1;
248 // of the next range to join is always startIndex+1.
251 int joinIndex = startIndex + 1
    [all...]
  /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 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/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...]
  /cts/tests/tests/text/src/android/text/cts/
StaticLayoutLineBreakingTest.java 168 int startIndex = text.indexOf('<');
169 if (startIndex < 0) return text;
176 text = text.substring(0, startIndex) + text.substring(startIndex + 1, endIndex) +
179 spanStarts[spanCount] = startIndex;
183 startIndex = text.indexOf('<');
184 } while (startIndex >= 0);
  /external/icu4c/i18n/unicode/
uregex.h 433 * If startIndex >= zero the match operation starts at the specified
437 * If startIndex == -1 the match must cover the input region, or the entire
442 * @param startIndex The input string (native) index at which to begin matching, or -1
450 int32_t startIndex,
459 * If startIndex >= zero the match operation starts at the specified
463 * If startIndex == -1 the match must cover the input region, or the entire
468 * @param startIndex The input string (native) index at which to begin matching, or -1
476 int64_t startIndex,
484 * <p>If startIndex is >= 0 any input region that was set for this
496 * @param startIndex The input string (native) index at which to begin matching, o
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ArraysTest.java 868 int startIndex = arraySize / 4;
876 Arrays.sort(reversedArray, startIndex, endIndex);
877 for (int counter = 0; counter < startIndex; counter++)
880 for (int counter = startIndex; counter < endIndex - 1; counter++)
    [all...]

Completed in 644 milliseconds

12 3 4 5 6 7 8 910