Searched refs:index (Results 51 - 75 of 6826) sorted by relevance

1234567891011>>

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DUResourceBundleIterator.java40 private int index = 0; field in class:UResourceBundleIterator
61 if(index<size){
62 return bundle.get(index++);
74 if(index<size){
75 return bundle.getString(index++);
86 index = 0;
95 return index < size;
/external/proguard/src/proguard/
H A DClassPath.java41 for (int index = 0; index < classPathEntries.size(); index++)
43 if (((ClassPathEntry)classPathEntries.get(index)).isOutput())
60 public void add(int index, ClassPathEntry classPathEntry) argument
62 classPathEntries.add(index, classPathEntry);
75 public ClassPathEntry get(int index) argument
77 return (ClassPathEntry)classPathEntries.get(index);
80 public ClassPathEntry remove(int index) argument
82 return (ClassPathEntry)classPathEntries.remove(index);
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DInterfacesEditor.java77 for (int index = interfaceIndex; index < interfacesCount; index++)
79 interfaces[index] = interfaces[index + 1];
91 * Finds the index of the specified interface in the list of interfaces of
99 for (int index = 0; index < interfacesCount; index++)
101 if (interfaces[index]
[all...]
/external/proguard/src/proguard/classfile/util/
H A DExternalTypeEnumeration.java40 private int index; field in class:ExternalTypeEnumeration
64 index = descriptor.indexOf(JavaConstants.METHOD_ARGUMENTS_OPEN) + 1;
66 if (index < 1)
75 return index < descriptor.length() - 1;
81 int startIndex = index;
84 index = descriptor.indexOf(JavaConstants.METHOD_ARGUMENTS_SEPARATOR,
88 if (index < 0)
90 index = descriptor.indexOf(JavaConstants.METHOD_ARGUMENTS_CLOSE,
92 if (index < 0)
98 return descriptor.substring(startIndex, index
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_dual_blend.h15 int index)
17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
14 util_blend_state_is_dual(const struct pipe_blend_state *blend, int index) argument
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DDescriptorBase.cs42 private readonly int index; field in class:Google.Protobuf.Reflection.DescriptorBase
44 internal DescriptorBase(FileDescriptor file, string fullName, int index) argument
48 this.index = index;
52 /// The index of this descriptor within its parent descriptor.
55 /// This returns the index of this descriptor within its parent, for
57 /// types, e.g. one enum type with index 0 and one message type with index 0.)
61 get { return index; }
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dget_hanning_window.c61 int32_t index; local
66 index = (int32_t)-0x200000;
68 index = (int32_t)-0x100000;
73 index += factor;
74 (*vptr1++) = kHanningTable[index >> 22];
/external/proguard/src/proguard/util/
H A DListUtil.java46 for (int index = 0; index < list.size(); index++)
48 if (index > 0)
53 String string = (String)list.get(index);
78 int index = 0;
79 while ((index = skipWhitespace(string, index)) < string.length())
84 if (string.charAt(index) == '\'')
87 nextIndex = string.indexOf('\'', index
121 skipWhitespace(String string, int index) argument
[all...]
H A DArrayUtil.java40 for (int index = 0; index < size; index++)
42 if (array1[index] != array2[index])
61 for (int index = 0; index < size; index++)
63 if (array1[index] != array2[index])
464 insert(byte[] array, int size, int index, byte element) argument
485 remove(byte[] array, int size, int index) argument
580 insert(short[] array, int size, int index, short element) argument
601 remove(short[] array, int size, int index) argument
696 insert(int[] array, int size, int index, int element) argument
717 remove(int[] array, int size, int index) argument
812 insert(long[] array, int size, int index, long element) argument
833 remove(long[] array, int size, int index) argument
928 insert(Object[] array, int size, int index, Object element) argument
949 remove(Object[] array, int size, int index) argument
[all...]
H A DNameParser.java41 int index;
45 for (index = 0; index < regularExpression.length(); index++)
48 if (regularExpression.charAt(index) == '*')
57 parse(regularExpression.substring(index + 1)));
62 else if (regularExpression.charAt(index) == '?')
71 parse(regularExpression.substring(index + 1)));
78 return index != 0 ?
79 (StringMatcher)new FixedStringMatcher(regularExpression.substring(0, index), nextMatche
[all...]
/external/skia/src/pathops/
H A DSkIntersections.cpp14 for (int index = 0; index < fUsed; ++index) {
15 if (!between(rangeStart, fT[0][index], rangeEnd)) {
18 const SkDPoint& iPt = fPt[index];
22 closest = index;
29 for (int index = 0; index < fUsed; ++index) {
30 fT[1][index]
40 int index; local
108 int index = insertSwap(one, two, pt); local
115 setCoincident(int index) argument
151 removeOne(int index) argument
[all...]
/external/skia/tests/
H A DPathOpsQuadReduceOrderTest.cpp21 for (size_t index = 0; index < testSetCount; ++index) {
22 const QuadPts& q = testSet[index];
32 size_t index; local
51 for (index = firstQuadraticLineTest; index < quadraticLines_count; ++index) {
52 const QuadPts& q = quadraticLines[index];
57 SkDebugf("[%d] line quad order=%d\n", (int) index, orde
[all...]
/external/skia/tools/gpu/gl/debug/
H A DGrFBBindableObj.h35 int index = fColorReferees.find(referee); local
36 GrAlwaysAssert(0 <= index);
37 fColorReferees.removeShuffle(index);
40 int index = fColorReferees.find(referee); local
41 return 0 <= index;
51 int index = fDepthReferees.find(referee); local
52 GrAlwaysAssert(0 <= index);
53 fDepthReferees.removeShuffle(index);
56 int index = fDepthReferees.find(referee); local
57 return 0 <= index;
67 int index = fStencilReferees.find(referee); local
72 int index = fStencilReferees.find(referee); local
[all...]
/external/v8/src/js/
H A Dharmony-atomics.js41 function ValidateIndex(index, length) {
42 var numberIndex = TO_NUMBER(index);
55 function AtomicsCompareExchangeJS(sta, index, oldValue, newValue) {
57 index = ValidateIndex(index, %_TypedArrayGetLength(sta));
60 return %_AtomicsCompareExchange(sta, index, oldValue, newValue);
63 function AtomicsAddJS(ia, index, value) {
65 index = ValidateIndex(index, %_TypedArrayGetLength(ia));
67 return %_AtomicsAdd(ia, index, valu
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DInputTouchScreen.java22 public final void press(int index, float currentTime, float x, float y) { argument
23 assert (index >= 0 && index < MAX_TOUCH_POINTS);
24 if (index < MAX_TOUCH_POINTS) {
25 mTouchPoints[index].press(currentTime, x, y);
29 public final void release(int index) { argument
30 if (index < MAX_TOUCH_POINTS) {
31 mTouchPoints[index].release();
41 public boolean getTriggered(int index, float time) { argument
43 if (index < MAX_TOUCH_POINT
49 getPressed(int index) argument
57 setVector(int index, Vector2 vector) argument
63 getX(int index) argument
71 getY(int index) argument
79 getLastPressedTime(int index) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
H A DTokenIndex.java10 int index; field in class:TokenIndex
15 this.index = 0;
21 this.index = 1;
27 this.index = 2;
33 this.index = 3;
39 this.index = 4;
45 this.index = 5;
51 this.index = 6;
57 this.index = 7;
63 this.index
[all...]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DBooleanArrayList.java123 public Boolean get(int index) { argument
124 return getBoolean(index);
128 public boolean getBoolean(int index) { argument
129 ensureIndexInRange(index);
130 return array[index];
139 public Boolean set(int index, Boolean element) { argument
140 return setBoolean(index, element);
144 public boolean setBoolean(int index, boolean element) { argument
146 ensureIndexInRange(index);
147 boolean previousValue = array[index];
153 add(int index, Boolean element) argument
168 addBoolean(int index, boolean element) argument
245 remove(int index) argument
261 ensureIndexInRange(int index) argument
267 makeOutOfBoundsExceptionMessage(int index) argument
[all...]
H A DDoubleArrayList.java124 public Double get(int index) { argument
125 return getDouble(index);
129 public double getDouble(int index) { argument
130 ensureIndexInRange(index);
131 return array[index];
140 public Double set(int index, Double element) { argument
141 return setDouble(index, element);
145 public double setDouble(int index, double element) { argument
147 ensureIndexInRange(index);
148 double previousValue = array[index];
154 add(int index, Double element) argument
169 addDouble(int index, double element) argument
246 remove(int index) argument
262 ensureIndexInRange(int index) argument
268 makeOutOfBoundsExceptionMessage(int index) argument
[all...]
H A DFloatArrayList.java122 public Float get(int index) { argument
123 return getFloat(index);
127 public float getFloat(int index) { argument
128 ensureIndexInRange(index);
129 return array[index];
138 public Float set(int index, Float element) { argument
139 return setFloat(index, element);
143 public float setFloat(int index, float element) { argument
145 ensureIndexInRange(index);
146 float previousValue = array[index];
152 add(int index, Float element) argument
167 addFloat(int index, float element) argument
244 remove(int index) argument
260 ensureIndexInRange(int index) argument
266 makeOutOfBoundsExceptionMessage(int index) argument
[all...]
H A DIntArrayList.java122 public Integer get(int index) { argument
123 return getInt(index);
127 public int getInt(int index) { argument
128 ensureIndexInRange(index);
129 return array[index];
138 public Integer set(int index, Integer element) { argument
139 return setInt(index, element);
143 public int setInt(int index, int element) { argument
145 ensureIndexInRange(index);
146 int previousValue = array[index];
152 add(int index, Integer element) argument
167 addInt(int index, int element) argument
244 remove(int index) argument
260 ensureIndexInRange(int index) argument
266 makeOutOfBoundsExceptionMessage(int index) argument
[all...]
H A DLongArrayList.java122 public Long get(int index) { argument
123 return getLong(index);
127 public long getLong(int index) { argument
128 ensureIndexInRange(index);
129 return array[index];
138 public Long set(int index, Long element) { argument
139 return setLong(index, element);
143 public long setLong(int index, long element) { argument
145 ensureIndexInRange(index);
146 long previousValue = array[index];
152 add(int index, Long element) argument
167 addLong(int index, long element) argument
244 remove(int index) argument
260 ensureIndexInRange(int index) argument
266 makeOutOfBoundsExceptionMessage(int index) argument
[all...]
/external/v8/src/runtime/
H A Druntime-utils.h18 #define CONVERT_ARG_CHECKED(Type, name, index) \
19 CHECK(args[index]->Is##Type()); \
20 Type* name = Type::cast(args[index]);
22 #define CONVERT_ARG_HANDLE_CHECKED(Type, name, index) \
23 CHECK(args[index]->Is##Type()); \
24 Handle<Type> name = args.at<Type>(index);
26 #define CONVERT_NUMBER_ARG_HANDLE_CHECKED(name, index) \
27 CHECK(args[index]->IsNumber()); \
28 Handle<Object> name = args.at(index);
32 #define CONVERT_BOOLEAN_ARG_CHECKED(name, index) \
[all...]
/external/proguard/src/proguard/classfile/
H A DProgramMethod.java77 for (int index = 0; index < u2attributesCount; index++)
79 attributes[index].accept(programClass, this, attributeVisitor);
90 for (int index = 0; index < referencedClasses.length; index++)
92 if (referencedClasses[index] != null)
94 referencedClasses[index].accept(classVisitor);
/external/proguard/src/proguard/evaluation/value/
H A DInstructionOffsetValue.java62 public int instructionOffset(int index) argument
64 return values[index];
76 for (int index = 0; index < values.length; index++)
78 if (values[index] == value)
99 for (int index = 0; index < values.length; index++)
101 int value = values[index];
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTypedArray.java18 public boolean getBoolean(int index, boolean defValue) { argument
23 public float getFloat(int index, float defValue) { argument
28 public int getInt(int index, int defValue) { argument
33 public int getInteger(int index, int defValue) { argument
38 public float getDimension(int index, float defValue) { argument
43 public int getDimensionPixelOffset(int index, int defValue) { argument
48 public int getDimensionPixelSize(int index, int defValue) { argument
53 public int getLayoutDimension(int index, int defValue) { argument
58 public int getResourceId(int index, int defValue) { argument

Completed in 1916 milliseconds

1234567891011>>