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

12 3 4

  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 164 private void refreshIndices(int fromIndex) {
165 for (int i = fromIndex; i < children.size(); i++) {
  /frameworks/support/v4/java/android/support/v4/view/accessibility/
AccessibilityRecordCompat.java 53 public void setFromIndex(Object record, int fromIndex);
209 public void setFromIndex(Object record, int fromIndex) {
393 public void setFromIndex(Object record, int fromIndex) {
394 AccessibilityRecordCompatIcs.setFromIndex(record, fromIndex);
688 * @param fromIndex The index of the first character or selection
693 public void setFromIndex(int fromIndex) {
694 IMPL.setFromIndex(mRecord, fromIndex);
  /external/chromium/chrome/browser/extensions/
extension_tabs_module_constants.cc 15 const char kFromIndexKey[] = "fromIndex";
  /external/doclava/src/com/google/doclava/
Comment.java 153 private int findStartIndexOfInlineTag(String text, int fromIndex, int toIndex) {
154 for (int i = fromIndex; i < (toIndex-3); i++) {
163 private int findEndIndexOfInlineTag(String text, int fromIndex, int toIndex) {
164 for (int i = fromIndex; i < toIndex; i++) {
  /external/guava/src/com/google/common/primitives/
Booleans.java 409 /*@Override*/ public List<Boolean> subList(int fromIndex, int toIndex) {
411 checkPositionIndexes(fromIndex, toIndex, size);
412 if (fromIndex == toIndex) {
415 return new BooleanArrayAsList(array, start + fromIndex, start + toIndex);
Bytes.java 324 /*@Override*/ public List<Byte> subList(int fromIndex, int toIndex) {
326 checkPositionIndexes(fromIndex, toIndex, size);
327 if (fromIndex == toIndex) {
330 return new ByteArrayAsList(array, start + fromIndex, start + toIndex);
Chars.java 510 /*@Override*/ public List<Character> subList(int fromIndex, int toIndex) {
512 checkPositionIndexes(fromIndex, toIndex, size);
513 if (fromIndex == toIndex) {
516 return new CharArrayAsList(array, start + fromIndex, start + toIndex);
Doubles.java 446 /*@Override*/ public List<Double> subList(int fromIndex, int toIndex) {
448 checkPositionIndexes(fromIndex, toIndex, size);
449 if (fromIndex == toIndex) {
452 return new DoubleArrayAsList(array, start + fromIndex, start + toIndex);
Floats.java 443 /*@Override*/ public List<Float> subList(int fromIndex, int toIndex) {
445 checkPositionIndexes(fromIndex, toIndex, size);
446 if (fromIndex == toIndex) {
449 return new FloatArrayAsList(array, start + fromIndex, start + toIndex);
Ints.java 517 /*@Override*/ public List<Integer> subList(int fromIndex, int toIndex) {
519 checkPositionIndexes(fromIndex, toIndex, size);
520 if (fromIndex == toIndex) {
523 return new IntArrayAsList(array, start + fromIndex, start + toIndex);
Longs.java 495 /*@Override*/ public List<Long> subList(int fromIndex, int toIndex) {
497 checkPositionIndexes(fromIndex, toIndex, size);
498 if (fromIndex == toIndex) {
501 return new LongArrayAsList(array, start + fromIndex, start + toIndex);
Shorts.java 509 /*@Override*/ public List<Short> subList(int fromIndex, int toIndex) {
511 checkPositionIndexes(fromIndex, toIndex, size);
512 if (fromIndex == toIndex) {
515 return new ShortArrayAsList(array, start + fromIndex, start + toIndex);
generate.sh 531 /*@Override*/ public List<WrapperCl> subList(int fromIndex, int toIndex) {
533 checkPositionIndexes(fromIndex, toIndex, size);
534 if (fromIndex == toIndex) {
537 return new PrimTypArrayAsList(array, start + fromIndex, start + toIndex);
  /external/v8/test/mjsunit/
mirror-string.js 65 assertEquals(fromJSON.fromIndex, 0);
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityRecord.java 309 * @param fromIndex The index of the first character or selection
314 public void setFromIndex(int fromIndex) {
316 mFromIndex = fromIndex;
755 builder.append("; FromIndex: " + mFromIndex);
  /external/proguard/src/proguard/
ConfigurationParser.java     [all...]
  /external/guava/src/com/google/common/collect/
ImmutableList.java 297 * fromIndex}, inclusive, and {@code toIndex}, exclusive. (If {@code
298 * fromIndex} and {@code toIndex} are equal, the empty immutable list is
301 public abstract ImmutableList<E> subList(int fromIndex, int toIndex);
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MockAccessibilityService.java 197 TestCase.assertEquals("fromIndex has incorrect value", expectedEvent.getFromIndex(),
  /frameworks/base/core/java/android/widget/
StackView.java 223 void transformViewForTransition(int fromIndex, int toIndex, final View view, boolean animate) {
232 if (fromIndex == -1 && toIndex == getNumActiveViews() -1) {
236 } else if (fromIndex == 0 && toIndex == 1) {
258 } else if (fromIndex == 1 && toIndex == 0) {
282 } else if ((fromIndex == 0 || fromIndex == 1) && toIndex > 1) {
289 } else if (fromIndex == -1) {
    [all...]
AdapterViewAnimator.java 255 * @param fromIndex The relative index within the window that the view was in, -1 if it wasn't
261 void transformViewForTransition(int fromIndex, int toIndex, View view, boolean animate) {
262 if (fromIndex == -1) {
    [all...]
  /frameworks/base/core/java/android/bluetooth/
AtParser.java 172 static private int findChar(char ch, String input, int fromIndex) {
173 for (int i = fromIndex; i < input.length(); i++) {
  /libcore/luni/src/test/java/tests/api/java/util/
ConcurrentModTest.java 647 public void removeRange(int fromIndex, int toIndex) {
648 super.removeRange(fromIndex, toIndex);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
MimeUtility.java 163 private static int indexOfWsp(String s, int fromIndex) {
165 for (int index = fromIndex; index < len; index++) {
  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.h 145 void shiftDisabledProperties(unsigned fromIndex, long offset);
  /libcore/luni/src/main/java/java/util/
Arrays.java 173 * in the range specified by fromIndex (inclusive) and toIndex (exclusive).
223 * in the range specified by fromIndex (inclusive) and toIndex (exclusive).
273 * in the range specified by fromIndex (inclusive) and toIndex (exclusive).
334 * in the range specified by fromIndex (inclusive) and toIndex (exclusive).
395 * in the range specified by fromIndex (inclusive) and toIndex (exclusive).
445 * in the range specified by fromIndex (inclusive) and toIndex (exclusive).
498 * in the range specified by fromIndex (inclusive) and toIndex (exclusive).
557 * in the range specified by fromIndex (inclusive) and toIndex (exclusive),
617 * in the range specified by fromIndex (inclusive) and toIndex (exclusive).
    [all...]

Completed in 996 milliseconds

12 3 4