HomeSort by relevance Sort by last modified time
    Searched full:fromindex (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ListExtensions.cs 206 public static IList subList( this IList list, int fromIndex, int toIndex )
208 return new SubList( list, fromIndex, toIndex );
212 // .Skip( fromIndex )
213 // .Take( toIndex - fromIndex + 1 )
217 public static IList<T> subList<T>( this IList<T> list, int fromIndex, int toIndex )
219 return new SubList<T>( list, fromIndex, toIndex );
222 // .Skip( fromIndex )
223 // .Take( toIndex - fromIndex + 1 )
227 public static IList<T> subList<T>( this List<T> list, int fromIndex, int toIndex )
229 return new SubList<T>( list, fromIndex, toIndex )
    [all...]
  /libcore/luni/src/main/java/java/util/
BitSet.java 232 private void checkRange(int fromIndex, int toIndex) {
233 if ((fromIndex | toIndex) < 0 || toIndex < fromIndex) {
234 throw new IndexOutOfBoundsException("fromIndex=" + fromIndex + " toIndex=" + toIndex);
240 * range of bits {@code [fromIndex, toIndex)}, shifted down so that the bit
241 * at {@code fromIndex} is at bit 0 in the new {@code BitSet}.
244 * if {@code fromIndex} or {@code toIndex} is negative, or if
245 * {@code toIndex} is smaller than {@code fromIndex}.
247 public BitSet get(int fromIndex, int toIndex)
    [all...]
DualPivotQuicksort.java 77 * to be sorted extends from the index {@code fromIndex}, inclusive, to
78 * the index {@code toIndex}, exclusive. If {@code fromIndex == toIndex},
82 * @param fromIndex the index of the first element, inclusive, to be sorted
84 * @throws IllegalArgumentException if {@code fromIndex > toIndex}
86 * if {@code fromIndex < 0} or {@code toIndex > a.length}
88 public static void sort(int[] a, int fromIndex, int toIndex) {
89 Arrays.checkStartAndEnd(a.length, fromIndex, toIndex);
90 doSort(a, fromIndex, toIndex - 1);
355 * to be sorted extends from the index {@code fromIndex}, inclusive, to
356 * the index {@code toIndex}, exclusive. If {@code fromIndex == toIndex}
    [all...]
ArrayList.java 436 @Override protected void removeRange(int fromIndex, int toIndex) {
437 if (fromIndex == toIndex) {
442 if (fromIndex >= s) {
443 throw new IndexOutOfBoundsException("fromIndex " + fromIndex
450 if (fromIndex > toIndex) {
451 throw new IndexOutOfBoundsException("fromIndex " + fromIndex
455 System.arraycopy(a, toIndex, a, fromIndex, s - toIndex);
456 int rangeSize = toIndex - fromIndex;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
StateViewPage.java 202 * Update GL state from GL call at fromIndex to the call at toIndex.
203 * If fromIndex < toIndex, the GL state will be updated by applying all the transformations
204 * corresponding to calls from (fromIndex + 1) to toIndex (inclusive).
205 * If fromIndex > toIndex, the GL state will be updated by reverting all the calls from
206 * fromIndex (inclusive) to (toIndex + 1).
209 private Set<IGLProperty> updateState(int fromIndex, int toIndex) {
210 assert fromIndex >= -1 && fromIndex < mGLCalls.size();
213 if (fromIndex < toIndex) {
214 return applyTransformations(fromIndex, toIndex)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableSortedAsList.java 61 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) {
62 Preconditions.checkPositionIndexes(fromIndex, toIndex, size());
63 return (fromIndex == toIndex) ? ImmutableList.<E>of()
65 backingList.subList(fromIndex, toIndex), backingSet.comparator())
RegularImmutableList.java 117 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) {
118 Preconditions.checkPositionIndexes(fromIndex, toIndex, size);
119 return (fromIndex == toIndex)
122 array, offset + fromIndex, toIndex - fromIndex);
SingletonImmutableList.java 107 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) {
108 Preconditions.checkPositionIndexes(fromIndex, toIndex, 1);
109 return (fromIndex == toIndex) ? ImmutableList.<E>of() : this;
EmptyImmutableList.java 118 @Override public ImmutableList<Object> subList(int fromIndex, int toIndex) {
119 checkPositionIndexes(fromIndex, toIndex, 0);
TransformedImmutableList.java 93 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) {
94 return new TransformedView(backingList.subList(fromIndex, toIndex));
ForwardingList.java 110 public List<E> subList(int fromIndex, int toIndex) {
111 return delegate().subList(fromIndex, toIndex);
213 @Beta protected List<E> standardSubList(int fromIndex, int toIndex) {
214 return Lists.subListImpl(this, fromIndex, toIndex);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameLookupBuilder.java 231 * fromIndex and toIndex
239 private void insertNameVariants(long rawContactId, long dataId, int fromIndex, int toIndex,
241 if (fromIndex == toIndex) {
250 String firstToken = mNames[fromIndex];
251 for (int i = fromIndex; i < toIndex; i++) {
252 mNames[fromIndex] = mNames[i];
255 insertNameVariants(rawContactId, dataId, fromIndex + 1, toIndex,
256 initiallyExact && i == fromIndex, buildCollationKey);
258 mNames[i] = mNames[fromIndex];
259 mNames[fromIndex] = firstToken
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 418 * no smaller than <code>fromIndex</code>, then the index of the first
422 * (this.charAt(<i>k</i>) == ch) && (<i>k</i> >= fromIndex)
425 * position <code>fromIndex</code>, then <code>-1</code> is returned.
427 * There is no restriction on the value of <code>fromIndex</code>. If it
434 * @param fromIndex the index to start the search from.
437 * than or equal to <code>fromIndex</code>, or <code>-1</code>
440 public int indexOf(int ch, int fromIndex)
442 return m_str.indexOf(ch, fromIndex);
471 * this.charAt(k) == ch) && (k <= fromIndex)
476 * @param fromIndex the index to start the search from. There is n
    [all...]
XMLString.java 352 * no smaller than <code>fromIndex</code>, then the index of the first
356 * (this.charAt(<i>k</i>) == ch) && (<i>k</i> >= fromIndex)
359 * position <code>fromIndex</code>, then <code>-1</code> is returned.
361 * There is no restriction on the value of <code>fromIndex</code>. If it
368 * @param fromIndex the index to start the search from.
371 * than or equal to <code>fromIndex</code>, or <code>-1</code>
374 public abstract int indexOf(int ch, int fromIndex);
399 * this.charAt(k) == ch) && (k <= fromIndex)
404 * @param fromIndex the index to start the search from. There is no
405 * restriction on the value of <code>fromIndex</code>. If it i
    [all...]
  /libcore/luni/src/main/java/javax/security/auth/x500/
X500Principal.java 228 int fromIndex = resultName.length();
230 while (-1 != (equalIndex = resultName.lastIndexOf("=", fromIndex))) {
243 fromIndex = commaIndex;
250 int fromIndex = resultName.length();
254 while (-1 != (equalIndex = resultName.lastIndexOf("=", fromIndex))) {
275 fromIndex = commaIndex;
304 int fromIndex = sbName.length();
306 while (-1 != (equalIndex = sbName.lastIndexOf("=", fromIndex))) {
312 fromIndex = commaIndex;
  /external/jdiff/src/jdiff/
RootDocToXML.java 982 int fromindex = 0; local
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_strip_model_observer_bridge.mm 70 @selector(tabMovedWithContents:fromIndex:toIndex:)]) {
72 fromIndex:from_index
tab_strip_model_observer_bridge.h 72 fromIndex:(NSInteger)from
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XString.java 658 * no smaller than <code>fromIndex</code>, then the index of the first
662 * (this.charAt(<i>k</i>) == ch) && (<i>k</i> >= fromIndex)
665 * position <code>fromIndex</code>, then <code>-1</code> is returned.
667 * There is no restriction on the value of <code>fromIndex</code>. If it
674 * @param fromIndex the index to start the search from.
677 * than or equal to <code>fromIndex</code>, or <code>-1</code>
680 public int indexOf(int ch, int fromIndex)
682 return str().indexOf(ch, fromIndex);
711 * this.charAt(k) == ch) && (k <= fromIndex)
716 * @param fromIndex the index to start the search from. There is n
    [all...]
XStringForFSB.java 685 * no smaller than <code>fromIndex</code>, then the index of the first
689 * (this.charAt(<i>k</i>) == ch) && (<i>k</i> >= fromIndex)
692 * position <code>fromIndex</code>, then <code>-1</code> is returned.
694 * There is no restriction on the value of <code>fromIndex</code>. If it
701 * @param fromIndex the index to start the search from.
704 * than or equal to <code>fromIndex</code>, or <code>-1</code>
707 public int indexOf(int ch, int fromIndex)
713 if (fromIndex < 0)
715 fromIndex = 0;
717 else if (fromIndex >= m_length
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTokenRewriteStream.m 325 [self replaceProgNam:DEFAULT_PROGRAM_NAME FromIndex:anIndex ToIndex:anIndex Text:theText];
330 [self replaceProgNam:DEFAULT_PROGRAM_NAME FromIndex:from ToIndex:to Text:theText];
335 [self replaceProgNam:DEFAULT_PROGRAM_NAME FromIndex:[anIndexT getTokenIndex] ToIndex:[anIndexT getTokenIndex] Text:theText];
340 [self replaceProgNam:DEFAULT_PROGRAM_NAME FromIndex:[from getTokenIndex] ToIndex:[to getTokenIndex] Text:theText];
345 [self replaceProgNam:programName FromIndex:[from getTokenIndex] ToIndex:[to getTokenIndex] Text:theText];
348 - (void) replaceProgNam:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText
361 [self delete:DEFAULT_PROGRAM_NAME FromIndex:(NSInteger)anIndex ToIndex:(NSInteger)anIndex];
366 [self delete:DEFAULT_PROGRAM_NAME FromIndex:from ToIndex:to];
371 [self delete:DEFAULT_PROGRAM_NAME FromIndex:[anIndexT getTokenIndex] ToIndex:[anIndexT getTokenIndex]];
376 [self delete:DEFAULT_PROGRAM_NAME FromIndex:[from getTokenIndex] ToIndex:[to getTokenIndex]]
    [all...]
  /frameworks/support/v4/ics/android/support/v4/view/accessibility/
AccessibilityRecordCompatIcs.java 150 public static void setFromIndex(Object record, int fromIndex) {
151 ((AccessibilityRecord) record).setFromIndex(fromIndex);
  /external/v8/test/mjsunit/regress/
regress-754.js 29 // as fromIndex argument.
  /external/proguard/src/proguard/
DataEntryWriterFactory.java 40 * @param fromIndex the start index in the class path.
45 int fromIndex,
51 for (int index = toIndex - 1; index >= fromIndex; index--)
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenRewriteStream.as 141 public function replaceRange(fromIndex:int, toIndex:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void {
142 if ( fromIndex > toIndex || fromIndex<0 || toIndex<0 || toIndex >= tokens.length ) {
143 throw new Error("replace: range invalid: "+fromIndex+".."+toIndex+"(size="+tokens.length+")");
145 var op:RewriteOperation = new ReplaceOp(fromIndex, toIndex, text);
163 public function removeRange(fromIndex:int, toIndex:int, programName:String = DEFAULT_PROGRAM_NAME):void {
164 replaceRange(fromIndex, toIndex, null, programName);
484 public function ReplaceOp(fromIndex:int, toIndex:int, text:Object) {
485 super(fromIndex, text);
502 public function DeleteOp(fromIndex:int, toIndex:int)
    [all...]

Completed in 1001 milliseconds

1 2 3 4 5