HomeSort by relevance Sort by last modified time
    Searched full:startindex (Results 151 - 175 of 838) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
KeyboardShortcutKeysLayout.java 161 private void layoutChildrenOnRow(int startIndex, int endIndex, int fullRowWidth, int xPos,
167 for (int j = startIndex; j < endIndex; ++j) {
171 if (isRTL() && j == startIndex) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
BaseActionFragment.java 117 int startIndex = mFragment.getArguments().getInt(EXTRA_INDEX, -1);
118 if (startIndex != -1) {
121 mIndexToSelect = startIndex;
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Node.java 187 startIndex).
189 public int indexOf(String name, int startIndex) {
190 return indexOf(getNamespace(), name, startIndex);
199 public int indexOf(String namespace, String name, int startIndex) {
203 for (int i = startIndex; i < len; i++) {
  /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);
  /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);
  /frameworks/base/core/java/android/view/textclassifier/
TextClassifierImpl.java 147 @NonNull CharSequence text, int startIndex, int endIndex,
149 validateInput(text, startIndex, endIndex);
154 .classifyText(string, startIndex, endIndex,
155 getHintFlags(string, startIndex, endIndex));
159 results, string.subSequence(startIndex, endIndex));
169 text, startIndex, endIndex, defaultLocales);
450 * @throws IllegalArgumentException if text is null; startIndex is negative;
451 * endIndex is greater than text.length() or is not greater than startIndex
453 private static void validateInput(@NonNull CharSequence text, int startIndex, int endIndex) {
455 Preconditions.checkArgument(startIndex >= 0)
    [all...]
  /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);
  /frameworks/base/core/tests/coretests/src/android/text/
StaticLayoutLineBreakingTest.java 210 int startIndex = text.indexOf('<');
211 if (startIndex < 0) return text;
218 text = text.substring(0, startIndex) + text.substring(startIndex + 1, endIndex)
221 sSpanStarts[spanCount] = startIndex;
225 startIndex = text.indexOf('<');
226 } while (startIndex >= 0);
  /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);
  /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 225 const size_t startIndex = word+(alignment-(alignment?1:0));
235 const unsigned char val = *(pos+startIndex-index);
252 const unsigned char val = *(pos+startIndex-index);
  /device/linaro/bootloader/edk2/PerformancePkg/Dp_App/
DpUtilities.c 156 UINTN StartIndex;
164 StartIndex = 0;
169 StartIndex = IndexA + 1;
178 for (IndexA = StartIndex; IndexA < EndIndex; IndexA++) {
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiDpLib/
DpUtilities.c 142 UINTN StartIndex;
150 StartIndex = 0;
155 StartIndex = IndexA + 1;
164 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
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs 112 public int StartIndex

Completed in 4963 milliseconds

1 2 3 4 5 67 8 91011>>