HomeSort by relevance Sort by last modified time
    Searched refs:index (Results 251 - 275 of 7195) sorted by null

<<11121314151617181920>>

  /external/proguard/src/proguard/classfile/editor/
InterfaceSorter.java 51 for (int index = 0; index < interfacesCount; index++)
53 int interfaceIndex = interfaces[index];
  /external/proguard/src/proguard/classfile/visitor/
ExceptClassesFilter.java 80 for (int index = 0; index < exceptClasses.length; index++)
82 if (exceptClasses[index].equals(clazz))
SubclassFilter.java 81 for (int index = 0; index < subclasses.length; index++)
83 if (subclasses[index].equals(subclass))
  /external/proguard/src/proguard/gui/
ExtensionFileFilter.java 68 for (int index = 0; index < extensions.length; index++)
70 if (fileName.endsWith(extensions[index]))
  /external/proguard/src/proguard/io/
DirectoryPump.java 72 for (int index = 0; index < files.length; index++)
74 readFiles(files[index], dataEntryReader);
  /external/proguard/src/proguard/obfuscate/
AttributeShrinker.java 105 for (int index = 0; index < length; index++)
107 if (AttributeUsageMarker.isUsed(array[index]))
109 array[counter++] = array[index];
114 for (int index = counter; index < length; index++)
116 array[index] = null;
NameAndTypeShrinker.java 48 // index map.
74 // Create a new index map, if necessary.
85 for (int index = 1; index < length; index++)
87 constantIndexMap[index] = counter;
89 Constant constant = constantPool[index];
105 for (int index = counter; index < length; index++
    [all...]
Utf8Shrinker.java 48 // index map.
73 // Create a new index map, if necessary.
83 for (int index = 1; index < length; index++)
85 constantIndexMap[index] = counter;
87 Constant constant = constantPool[index];
103 for (int index = counter; index < length; index++
    [all...]
  /external/proguard/src/proguard/util/
ListParser.java 71 for (int index = regularExpressions.size()-1; index >=0; index--)
73 String regularExpression = (String)regularExpressions.get(index);
125 for (int index = 1; index < args.length; index++)
127 String string = args[index];
129 System.out.println(" -> match = "+matcher.matches(args[index]));
  /external/skia/src/gpu/
GrTBSearch.h 25 int index = (low + high) >> 1; local
26 if (LT(array[index], target)) {
27 low = index + 1;
29 high = index;
  /external/v8/src/ia32/
lithium-gap-resolver-ia32.h 52 // Perform the move at the moves_ index in question (possibly requiring
54 void PerformMove(int index);
62 void RemoveMove(int index);
69 void EmitMove(int index);
73 void EmitSwap(int index);
104 // allocation index.
  /external/webkit/Source/WebCore/html/
HTMLOptionsCollection.cpp 45 void HTMLOptionsCollection::add(PassRefPtr<HTMLOptionElement> element, int index, ExceptionCode &ec)
54 if (index < -1) {
62 if (index == -1 || unsigned(index) >= length())
65 select->add(newOption, static_cast<HTMLOptionElement*>(item(index)), ec);
70 void HTMLOptionsCollection::remove(int index)
72 static_cast<HTMLSelectElement*>(base())->remove(index);
80 void HTMLOptionsCollection::setSelectedIndex(int index)
82 static_cast<HTMLSelectElement*>(base())->setSelectedIndex(index);
TimeRanges.idl 32 float start(in unsigned long index)
34 float end(in unsigned long index)
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnLocalTriangulator.h 132 // Gets the vertex at the given index, 0 <= index < 3.
133 Vertex* getVertex(int index)
135 ASSERT(index >= 0 && index < 3);
136 return m_vertices[index];
160 // Returns the index [0..2] associated with the given vertex, or
183 Vertex* getVertex(int index)
185 ASSERT(index >= 0 && index < 4)
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebNSArrayExtras.h 34 -(NSNumber *)_webkit_numberAtIndex:(NSUInteger)index;
35 -(NSString *)_webkit_stringAtIndex:(NSUInteger)index;
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d1035pf.h 106 Word16 index[], /* (i) : index of 10 pulses (sign+position) */
d2_11pf.h 85 Word16 index, /* i : Positions of the 2 pulses. */
d3_14pf.h 106 Word16 index, /* i : Positions of the 3 pulses. */
d4_17pf.h 107 Word16 index, /* i : Positions of the 4 pulses. */
d8_31pf.h 107 Word16 index[], /* i : index of 8 pulses (sign+position) */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
omxVCCOMM_Copy16x16.c 60 OMX_INT count,index, x, y; local
71 for (y = 0, count = 0, index = 0; y < 16; y++, count = count + step - 16)
73 for (x = 0; x < 16; x++, count++, index++)
75 pDst[index] = pSrc[count];
omxVCCOMM_Copy8x8.c 60 OMX_INT count,index, x, y; local
71 for (y = 0, count = 0, index = 0; y < 8; y++, count = count + step - 8)
73 for (x = 0; x < 8; x++, count++, index++)
75 pDst[index] = pSrc[count];
  /frameworks/base/core/java/android/util/
AttributeSet.java 69 * @param index Index of the desired attribute, 0...count-1.
74 public String getAttributeName(int index);
79 * @param index Index of the desired attribute, 0...count-1.
84 public String getAttributeValue(int index);
118 * @param index Index of the desired attribute, 0...count-1.
122 public int getAttributeNameResource(int index);
125 * Return the index of the value of 'attribute' in the list 'options'
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
ShortButtons.java 37 public Button getButtonAt(int index) {
38 if (index < 3) {
39 return getContentChildAt(index);
42 return (Button) ll.getChildAt(index - 3);
  /frameworks/compile/libbcc/lib/ScriptCRT/
rs_mesh.c 27 rsgMeshGetVertexAllocation(rs_mesh m, uint32_t index) {
29 if (mesh == NULL || index >= mesh->mHal.state.vertexBuffersCount) {
33 rs_allocation returnAlloc = {mesh->mHal.state.vertexBuffers[index]};
38 rsgMeshGetIndexAllocation(rs_mesh m, uint32_t index) {
40 if (mesh == NULL || index >= mesh->mHal.state.primitivesCount) {
44 rs_allocation returnAlloc = {mesh->mHal.state.indexBuffers[index]};
49 rsgMeshGetPrimitive(rs_mesh m, uint32_t index) {
51 if (mesh == NULL || index >= mesh->mHal.state.primitivesCount) {
54 return mesh->mHal.state.primitives[index];

Completed in 6008 milliseconds

<<11121314151617181920>>