HomeSort by relevance Sort by last modified time
    Searched full:startindex (Results 176 - 200 of 959) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/replicaisland/src/com/replica/replicaisland/
Grid.java 240 public void drawStrip(GL10 gl, boolean useTexture, int startIndex, int indexCount) {
242 if (startIndex + indexCount >= mIndexCount) {
243 count = mIndexCount - startIndex;
247 GL10.GL_UNSIGNED_SHORT, mIndexBuffer.position(startIndex));
251 GL11.GL_UNSIGNED_SHORT, startIndex * CHAR_SIZE);
  /frameworks/base/tests/BackgroundDexOptServiceIntegrationTests/src/com/android/server/pm/
BackgroundDexOptServiceIntegrationTests.java 178 int startIndex = line.indexOf(substr);
179 if (startIndex < 0) {
182 startIndex += substr.length();
183 int endIndex = line.indexOf(']', startIndex);
184 return line.substring(startIndex, endIndex);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MediaSet.java 202 protected int enumerateMediaItems(ItemConsumer consumer, int startIndex) {
210 consumer.consume(startIndex + start + i, item);
220 ItemConsumer consumer, int startIndex) {
222 start += enumerateMediaItems(consumer, startIndex);
226 consumer, startIndex + start);
  /cts/tests/tests/text/src/android/text/cts/
StaticLayoutLineBreakingTest.java 201 int startIndex = text.indexOf('<');
202 if (startIndex < 0) return text;
209 text = text.substring(0, startIndex) + text.substring(startIndex + 1, endIndex)
212 sSpanStarts[spanCount] = startIndex;
216 startIndex = text.indexOf('<');
217 } while (startIndex >= 0);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
PatternStringUtils.java 207 private static int escapePaddingString(CharSequence input, StringBuilder output, int startIndex) {
213 output.insert(startIndex, "''");
215 output.insert(startIndex, input);
218 output.insert(startIndex, '\'');
224 output.insert(startIndex + offset, "''");
227 output.insert(startIndex + offset, ch);
231 output.insert(startIndex + offset, '\'');
  /external/icu/icu4c/source/common/
uvector.cpp 291 int32_t UVector::indexOf(void* obj, int32_t startIndex) const {
294 return indexOf(key, startIndex, HINT_KEY_POINTER);
297 int32_t UVector::indexOf(int32_t obj, int32_t startIndex) const {
300 return indexOf(key, startIndex, HINT_KEY_INTEGER);
304 int32_t UVector::indexOf(UElement key, int32_t startIndex, int8_t hint) const {
307 for (i=startIndex; i<count; ++i) {
313 for (i=startIndex; i<count; ++i) {
  /external/icu/icu4c/source/i18n/
reldtfmt.cpp 241 int32_t startIndex = pos.getIndex();
252 text.compare(startIndex, fDates[n].len, fDates[n].string) == 0) {
263 pos.setErrorIndex(startIndex);
265 pos.setIndex(startIndex + fDates[n].len);
284 (relativeStringOffset = modifiedText.indexOf(fDates[n].string, fDates[n].len, startIndex)) >= startIndex) {
293 pos.setErrorIndex(startIndex);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
PatternStringUtils.java 205 private static int escapePaddingString(CharSequence input, StringBuilder output, int startIndex) {
211 output.insert(startIndex, "''");
213 output.insert(startIndex, input);
216 output.insert(startIndex, '\'');
222 output.insert(startIndex + offset, "''");
225 output.insert(startIndex + offset, ch);
229 output.insert(startIndex + offset, '\'');
  /external/icu/icu4c/source/i18n/unicode/
uregex.h 432 * If startIndex >= zero the match operation starts at the specified
436 * If startIndex == -1 the match must cover the input region, or the entire
441 * @param startIndex The input string (native) index at which to begin matching, or -1
449 int32_t startIndex,
458 * If startIndex >= zero the match operation starts at the specified
462 * If startIndex == -1 the match must cover the input region, or the entire
467 * @param startIndex The input string (native) index at which to begin matching, or -1
475 int64_t startIndex,
483 * <p>If startIndex is >= 0 any input region that was set for this
495 * @param startIndex The input string (native) index at which to begin matching, o
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
FvLib.c 398 IN OUT UINTN *StartIndex,
408 The current counter is saved in StartIndex and when the section is found, it's
417 StartIndex The current counter is saved.
436 (*StartIndex)++;
439 if (*StartIndex == Instance) {
461 StartIndex,
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 94 DenseIndex startIndex;
101 startIndex = 0;
106 startIndex = 1;
118 // There are (endIndex - startIndex + 1) knots obtained from the averaging
120 DenseIndex numAverageKnots = endIndex - startIndex + 3;
125 for (DenseIndex i = startIndex; i <= endIndex; ++i)
  /external/guava/guava-tests/test/com/google/common/collect/
LinkedListMultimapTest.java 351 for (final int startIndex : new int[] {0, 3, 5}) {
359 ImmutableList.of(SUPPORTS_REMOVE), list, startIndex) {
367 return multimap.entries().listIterator(startIndex);
401 for (final int startIndex : new int[] {0, 3, 5}) {
404 Lists.newArrayList(2, 3, 4, 5, 6), startIndex) {
413 return multimap.values().listIterator(startIndex);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
AnswerToReset.java 90 byte[] originalData, int startIndex, int length) {
91 if (length <= 0 || startIndex + length > originalData.length) {
97 int index = startIndex + 1;
98 while (index < startIndex + length && index > 0) {
99 index = parseLtvNode(index, nodes, originalData, startIndex + length - 1);
105 System.arraycopy(originalData, startIndex, rawData, 0, length);
  /frameworks/support/paging/common/src/test/java/androidx/paging/
ContiguousPagedListTest.kt 78 val startIndex = currentEndIndex + 1
79 val data = getClampedRange(startIndex, startIndex + pageSize)
93 val startIndex = currentBeginIndex - 1
94 val data = getClampedRange(startIndex - pageSize + 1, startIndex + 1)
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
Dbg.stg 84 - (void) memoize:(id<ANTLRIntStream>)input RuleIndex:(NSInteger)ruleIndex StartIndex:(NSInteger)ruleStartIndex
86 [((Profiler)dbg) memoize:input RuleIndex:ruleIndex StartIndex:ruleStartIndex [<grammar.composite.rootGrammar.recognizerName> ruleNames[ruleIndex]];
87 [super memoize:input RuleIndex:ruleIndex StartIndex:ruleStartIndex];
  /external/eigen/Eigen/src/Core/
SolveTriangular.h 119 StartIndex = IsLower ? 0 : DiagIndex+1
124 rhs.coeffRef(DiagIndex) -= lhs.row(DiagIndex).template segment<LoopIndex>(StartIndex).transpose()
125 .cwiseProduct(rhs.template segment<LoopIndex>(StartIndex)).sum();
  /external/lzma/CPP/7zip/Archive/7z/
7zExtract.cpp 57 HRESULT Init(unsigned startIndex, const UInt32 *indexes, unsigned numFiles);
64 HRESULT CFolderOutStream::Init(unsigned startIndex, const UInt32 *indexes, unsigned numFiles)
66 _fileIndex = startIndex;
  /frameworks/native/libs/binder/
Debug.cpp 224 const size_t startIndex = word+(alignment-(alignment?1:0));
234 const unsigned char val = *(pos+startIndex-index);
251 const unsigned char val = *(pos+startIndex-index);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
SpannableStringUtils.java 124 final int startIndex, final int endIndex) {
130 // trick, and works in all cases even if startIndex <= 0 or endIndex >= text.length().
131 final URLSpan[] spans = spanned.getSpans(startIndex - 1, endIndex + 1, URLSpan.class);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_utils.h 158 const int startIndex = getStartIndexFromCoordinates(x, y, cellHeight, cellWidth, gridWidth);
159 if (startIndex >= 0) {
161 const int c = proximityCharsArray[startIndex + i];
  /system/libhwbinder/
Debug.cpp 229 const size_t startIndex = word+align_offset;
239 const unsigned char val = *(pos+startIndex-index);
256 const unsigned char val = *(pos+startIndex-index);
  /device/linaro/bootloader/edk2/PerformancePkg/Dp_App/
DpUtilities.c 161 UINTN StartIndex;
169 StartIndex = 0;
174 StartIndex = IndexA + 1;
183 for (IndexA = StartIndex; IndexA < EndIndex; IndexA++) {
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiDpLib/
DpUtilities.c 146 UINTN StartIndex;
154 StartIndex = 0;
159 StartIndex = IndexA + 1;
168 for (IndexA = StartIndex; IndexA < EndIndex; IndexA++) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IToken.cs 64 int StartIndex {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IToken.cs 71 int StartIndex

Completed in 520 milliseconds

1 2 3 4 5 6 78 91011>>