Searched refs:index (Results 76 - 100 of 8369) sorted by relevance

1234567891011>>

/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/skqp/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/skqp/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/skqp/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
/external/trappy/tests/
H A Dtest_utils.py31 index = [0.0, 1.0, 1.0, 6.0, 7.0]
32 series = pandas.Series(values, index=index)
40 expected_series = pandas.Series(values, index=expected_index)
52 index = [0.0, 1.0, 2.0, 6.0, 6.0]
53 expected_index = index[:]
55 series = pandas.Series(values, index=index)
56 expected_series = pandas.Series(values, index=expected_index)
/external/proguard/src/proguard/obfuscate/
H A DSimpleNameFactory.java40 private int index = 0; field in class:SimpleNameFactory
67 index = 0;
73 return name(index++);
78 * Returns the name at the given index.
80 private String name(int index) argument
88 if (index < cachedNames.size())
90 return (String)cachedNames.get(index);
94 String name = newName(index);
95 cachedNames.add(index, name);
102 * Creates and returns the name at the given index
104 newName(int index) argument
129 charAt(int index) argument
[all...]
/external/v8/src/
H A Dregister-configuration.h70 int GetAllocatableGeneralCode(int index) const {
71 return allocatable_general_codes_[index];
73 bool IsAllocatableGeneralCode(int index) const {
74 return ((1 << index) & allocatable_general_codes_mask_) != 0;
76 int GetAllocatableFloatCode(int index) const {
77 return allocatable_float_codes_[index];
79 bool IsAllocatableFloatCode(int index) const {
80 return ((1 << index) & allocatable_float_codes_mask_) != 0;
82 int GetAllocatableDoubleCode(int index) const {
83 return allocatable_double_codes_[index];
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationRootElements.java153 int index = findP(p);
154 long q = elements[index];
157 // p == elements[index] is a root primary. Find the CE before it.
160 secTer = elements[index - 1];
167 index -= 2;
169 p = elements[index];
174 --index;
178 // p > elements[index] which is the previous primary.
183 q = elements[++index];
201 int index
323 getPrimaryAfter(long p, int index, boolean isCompressible) argument
353 getSecondaryAfter(int index, int s) argument
387 getTertiaryAfter(int index, int s, int t) argument
425 getFirstSecTerForPrimary(int index) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationRootElements.java151 int index = findP(p);
152 long q = elements[index];
155 // p == elements[index] is a root primary. Find the CE before it.
158 secTer = elements[index - 1];
165 index -= 2;
167 p = elements[index];
172 --index;
176 // p > elements[index] which is the previous primary.
181 q = elements[++index];
199 int index
321 getPrimaryAfter(long p, int index, boolean isCompressible) argument
351 getSecondaryAfter(int index, int s) argument
385 getTertiaryAfter(int index, int s, int t) argument
423 getFirstSecTerForPrimary(int index) argument
[all...]
/external/pdfium/core/fpdfapi/font/
H A Dcfx_stockfontarray.cpp23 CPDF_Font* CFX_StockFontArray::GetFont(uint32_t index) const {
24 if (index >= FX_ArraySize(m_StockFonts))
26 return m_StockFonts[index].get();
29 CPDF_Font* CFX_StockFontArray::SetFont(uint32_t index, argument
32 if (index < FX_ArraySize(m_StockFonts))
33 m_StockFonts[index] = std::move(pFont);
/external/pdfium/fxjs/
H A Dcfxjse_arguments.h23 std::unique_ptr<CFXJSE_Value> GetValue(int32_t index) const;
24 bool GetBoolean(int32_t index) const;
25 int32_t GetInt32(int32_t index) const;
26 float GetFloat(int32_t index) const;
27 ByteString GetUTF8String(int32_t index) const;
28 CFXJSE_HostObject* GetObject(int32_t index,
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DMultiInstructionVisitor.java86 for (int index = 0; index < instructionVisitorCount; index++)
88 instructionVisitors[index].visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction);
94 for (int index = 0; index < instructionVisitorCount; index++)
96 instructionVisitors[index].visitVariableInstruction(clazz, method, codeAttribute, offset, variableInstruction);
102 for (int index = 0; index < instructionVisitorCoun
[all...]

Completed in 691 milliseconds

1234567891011>>