HomeSort by relevance Sort by last modified time
    Searched refs:toIndex (Results 1 - 25 of 392) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/gpu/vk/
GrVkUniformHandler.h 38 return fUniforms[u.toIndex()].fVariable;
71 return fSamplers[handle.toIndex()].fVariable;
74 return fSamplerSwizzles[handle.toIndex()];
77 return fSamplers[handle.toIndex()].fVisibility;
85 return fTexelBuffers[handle.toIndex()].fVariable;
88 return fTexelBuffers[handle.toIndex()].fVisibility;
111 return fUniforms[u.toIndex()];
GrVkPipelineStateDataManager.cpp 61 const Uniform& uni = fUniforms[u.toIndex()];
71 const Uniform& uni = fUniforms[u.toIndex()];
87 const Uniform& uni = fUniforms[u.toIndex()];
98 const Uniform& uni = fUniforms[u.toIndex()];
114 const Uniform& uni = fUniforms[u.toIndex()];
126 const Uniform& uni = fUniforms[u.toIndex()];
142 const Uniform& uni = fUniforms[u.toIndex()];
154 const Uniform& uni = fUniforms[u.toIndex()];
174 const Uniform& uni = fUniforms[u.toIndex()];
186 const Uniform& uni = fUniforms[u.toIndex()];
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Arrays.java 111 * Checks that {@code fromIndex} and {@code toIndex} are in
114 private static void rangeCheck(int arrayLength, int fromIndex, int toIndex) {
115 if (fromIndex > toIndex) {
117 "fromIndex(" + fromIndex + ") > toIndex(" + toIndex + ")");
122 if (toIndex > arrayLength) {
123 throw new ArrayIndexOutOfBoundsException(toIndex);
167 * the index {@code toIndex}, exclusive. If {@code fromIndex == toIndex},
178 * @param toIndex the index of the last element, exclusive, to be sorte
    [all...]
AbstractList.java 227 * index)} or {@code removeRange(int fromIndex, int toIndex)} is
479 * {@code (fromIndex < 0 || toIndex > size)}
481 * {@code (fromIndex > toIndex)}
483 public List<E> subList(int fromIndex, int toIndex) {
485 new RandomAccessSubList<>(this, fromIndex, toIndex) :
486 new SubList<>(this, fromIndex, toIndex));
547 * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive.
549 * This call shortens the list by {@code (toIndex - fromIndex)} elements.
550 * (If {@code toIndex==fromIndex}, this operation has no effect.)
565 * @param toIndex index after last element to be remove
    [all...]
BitSet.java 358 * Checks that fromIndex ... toIndex is a valid range of bit indices.
360 private static void checkRange(int fromIndex, int toIndex) {
363 if (toIndex < 0)
364 throw new IndexOutOfBoundsException("toIndex < 0: " + toIndex);
365 if (fromIndex > toIndex)
367 " > toIndex: " + toIndex);
393 * specified {@code toIndex} (exclusive) to the complement of its current
397 * @param toIndex index after the last bit to fli
    [all...]
ArrayList.java 106 // Android-changed: Inlined methods; CME in iterators; throw AIOOBE when toIndex < fromIndex.
117 * Throw AIOOBE when toIndex < fromIndex.
631 * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive.
633 * This call shortens the list by {@code (toIndex - fromIndex)} elements.
634 * (If {@code toIndex==fromIndex}, this operation has no effect.)
637 * {@code toIndex} is out of range
640 * toIndex > size() ||
641 * toIndex < fromIndex})
643 protected void removeRange(int fromIndex, int toIndex) {
644 // Android-changed: Throw an IOOBE if toIndex < fromIndex as documented
    [all...]
  /external/skia/src/gpu/gl/
GrGLUniformHandler.h 22 return fUniforms[u.toIndex()].fVariable;
48 return fSamplers[handle.toIndex()].fVariable;
52 return fSamplerSwizzles[handle.toIndex()];
59 return fTexelBuffers[handle.toIndex()].fVariable;
67 return fImageStorages[handle.toIndex()].fVariable;
GrGLProgramDataManager.cpp 75 const Uniform& uni = fUniforms[u.toIndex()];
86 const Uniform& uni = fUniforms[u.toIndex()];
96 const Uniform& uni = fUniforms[u.toIndex()];
107 const Uniform& uni = fUniforms[u.toIndex()];
121 const Uniform& uni = fUniforms[u.toIndex()];
132 const Uniform& uni = fUniforms[u.toIndex()];
142 const Uniform& uni = fUniforms[u.toIndex()];
153 const Uniform& uni = fUniforms[u.toIndex()];
167 const Uniform& uni = fUniforms[u.toIndex()];
178 const Uniform& uni = fUniforms[u.toIndex()];
    [all...]
  /external/skia/src/gpu/
GrResourceHandle.h 25 int toIndex() const { SkASSERT(this->isValid()); return fValue; }
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableSortedMap.java 100 private ImmutableSortedMap<K, V> getSubMap(int fromIndex, int toIndex) {
101 if (fromIndex == 0 && toIndex == size()) {
103 } else if (fromIndex == toIndex) {
107 keySet.getSubSet(fromIndex, toIndex),
108 valueList.subList(fromIndex, toIndex));
SingletonImmutableList.java 66 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) {
67 Preconditions.checkPositionIndexes(fromIndex, toIndex, 1);
68 return (fromIndex == toIndex) ? ImmutableList.<E>of() : this;
ForwardingList.java 110 public List<E> subList(int fromIndex, int toIndex) {
111 return delegate().subList(fromIndex, toIndex);
214 @Beta protected List<E> standardSubList(int fromIndex, int toIndex) {
215 return Lists.subListImpl(this, fromIndex, toIndex);
ImmutableSortedAsList.java 81 ImmutableList<E> subListUnchecked(int fromIndex, int toIndex) {
83 super.subListUnchecked(fromIndex, toIndex), comparator())
RegularImmutableList.java 96 ImmutableList<E> subListUnchecked(int fromIndex, int toIndex) {
98 array, offset + fromIndex, toIndex - fromIndex);
ImmutableList.java 375 * fromIndex}, inclusive, and {@code toIndex}, exclusive. (If {@code
376 * fromIndex} and {@code toIndex} are equal, the empty immutable list is
380 public ImmutableList<E> subList(int fromIndex, int toIndex) {
381 checkPositionIndexes(fromIndex, toIndex, size());
382 int length = toIndex - fromIndex;
389 return subListUnchecked(fromIndex, toIndex);
395 * toIndex - fromIndex > 1}, after index validation has already been
398 ImmutableList<E> subListUnchecked(int fromIndex, int toIndex) {
399 return new SubList(fromIndex, toIndex - fromIndex);
423 public ImmutableList<E> subList(int fromIndex, int toIndex) {
    [all...]
  /frameworks/data-binding/extensions/library/src/main/java/android/databinding/
ObservableArrayList.java 111 protected void removeRange(int fromIndex, int toIndex) {
112 super.removeRange(fromIndex, toIndex);
113 notifyRemove(fromIndex, toIndex - fromIndex);
  /tools/loganalysis/src/com/android/loganalysis/util/
LogTailUtil.java 99 final int toIndex = mRingBuffer.size();
100 final int fromIndex = Math.max(toIndex - size, 0);
103 for (LogLine line : mRingBuffer.subList(fromIndex, toIndex)) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ForwardingImmutableList.java 49 public ImmutableList<E> subList(int fromIndex, int toIndex) {
50 return unsafeDelegateList(delegateList().subList(fromIndex, toIndex));
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
StateViewPage.java 270 * Update GL state from GL call at fromIndex to the call at toIndex.
271 * If fromIndex < toIndex, the GL state will be updated by applying all the transformations
272 * corresponding to calls from (fromIndex + 1) to toIndex (inclusive).
273 * If fromIndex > toIndex, the GL state will be updated by reverting all the calls from
274 * fromIndex (inclusive) to (toIndex + 1).
277 private Set<IGLProperty> updateState(int fromIndex, int toIndex) {
279 assert toIndex >= 0 && toIndex < mGLCalls.size();
281 if (fromIndex < toIndex) {
282 return applyTransformations(fromIndex, toIndex);
    [all...]
  /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) {
486 lastIndex = toIndex;
    [all...]
  /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 );
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 );
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 );
233 // .Take( toIndex - fromIndex + 1 )
  /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) {
242 insertNameVariant(rawContactId, dataId, toIndex,
251 for (int i = fromIndex; i < toIndex; i++) {
255 insertNameVariants(rawContactId, dataId, fromIndex + 1, toIndex,
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
ViewBoundsCheck.java 197 * Returns the first view starting from fromIndex to toIndex in views whose bounds lie within
203 * @param toIndex The view position index to end the search at.
213 View findOneViewWithinBoundFlags(int fromIndex, int toIndex,
218 final int next = toIndex > fromIndex ? 1 : -1;
220 for (int i = fromIndex; i != toIndex; i += next) {
  /external/proguard/src/proguard/
DataEntryWriterFactory.java 41 * @param toIndex the end index in the class path.
46 int toIndex)
51 for (int index = toIndex - 1; index >= fromIndex; index--)
InputReader.java 150 int toIndex,
153 for (int index = fromIndex; index < toIndex; index++)

Completed in 496 milliseconds

1 2 3 4 5 6 7 8 91011>>