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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/dex/file/
IndexedItem.java 20 * An item in a Dalvik file which is referenced by index.
23 /** {@code >= -1;} assigned index of the item, or {@code -1} if not
25 private int index; field in class:IndexedItem
28 * Constructs an instance. The index is initially unassigned.
31 index = -1;
35 * Gets whether or not this instance has been assigned an index.
37 * @return {@code true} iff this instance has been assigned an index
40 return (index >= 0);
44 * Gets the item index.
46 * @return {@code >= 0;} the index
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
get_sbr_startfreq.cpp 136 Int32 index; local
142 index = 0;
146 index = 1;
150 index = 2;
154 index = 3;
158 index = 4;
162 index = 4;
166 index = 4;
171 index = 5;
176 index = 6
    [all...]
sbr_decode_huff_cw.cpp 42 The table entries are interpreted either as index to the next entry
138 Char index = 0; local
140 while (index >= 0)
143 index = h[index][bits];
146 return((Int32)index + 64); /* Add offset */
  /external/qemu/android/
keycode.c 22 int index; local
24 for (index = 0; index < 4; index++) {
25 if (code == wheel[index]) {
26 index = (index + rotation) & 3;
27 code = wheel[index];
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
OIDTokenizer.java 12 private int index; field in class:OIDTokenizer
18 this.index = 0;
23 return (index != -1);
28 if (index == -1)
34 int end = oid.indexOf('.', index);
38 token = oid.substring(index);
39 index = -1;
43 token = oid.substring(index, end);
45 index = end + 1;
  /external/proguard/src/proguard/obfuscate/
NumericNameFactory.java 34 private int index; field in class:NumericNameFactory
41 index = 0;
47 return Integer.toString(++index);
MultiMappingProcessor.java 52 for (int index = 0; index < mappingProcessors.length; index++)
54 result |= mappingProcessors[index].processClassMapping(className,
67 for (int index = 0; index < mappingProcessors.length; index++)
69 mappingProcessors[index].processFieldMapping(className,
85 for (int index = 0; index < mappingProcessors.length; index++
    [all...]
  /external/webkit/WebCore/dom/
TouchList.cpp 34 Touch* TouchList::item(unsigned index)
36 if (index >= m_values.size())
38 return m_values[index].get();
  /external/webkit/WebCore/html/
FileList.cpp 37 File* FileList::item(unsigned index) const
39 if (index >= m_files.size())
41 return m_files[index].get();
  /external/emma/core/java12/com/vladium/jcd/compiler/
CodeGen.java 26 public static void load_local_object_var (final ByteArrayOStream out, final int index)
28 if (index <= 3)
30 out.write (_aload_0 + index); // aload_n
32 else if (index <= 0xFF)
35 index); // indexbyte
41 index >>> 8, // indexbyte1
42 index); // indexbyte2
46 public static void store_local_object_var (final ByteArrayOStream out, final int index)
48 if (index <= 3)
50 out.write (_astore_0 + index); // astore_
88 final int index = cls.getConstants ().add (new CONSTANT_Integer_info (value)); local
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
MultiAttributeVisitor.java 81 for (int index = 0; index < attributeVisitors.length; index++)
83 attributeVisitors[index].visitUnknownAttribute(clazz, unknownAttribute);
90 for (int index = 0; index < attributeVisitors.length; index++)
92 attributeVisitors[index].visitSourceFileAttribute(clazz, sourceFileAttribute);
99 for (int index = 0; index < attributeVisitors.length; index++
    [all...]
  /external/apache-http/src/org/apache/commons/codec/language/
DoubleMetaphone.java 92 int index = isSilentStart(value) ? 1 : 0; local
96 while (!result.isComplete() && index <= value.length() - 1) {
97 switch (value.charAt(index)) {
104 index = handleAEIOUY(value, result, index);
108 index = charAt(value, index + 1) == 'B' ? index + 2 : index + 1;
113 index++
    [all...]
  /external/proguard/src/proguard/evaluation/
Variables.java 78 for (int index = 0; index < values.length; index++)
80 values[index] = null;
123 for (int index = 0; index < size; index++)
125 Value thisValue = this.values[index];
126 Value otherValue = other.values[index];
130 // two local variables that share the same index), at some poin
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/
FullFrame.java 85 for (int index = 0; index < variablesCount; index++)
87 variables[index].variablesAccept(clazz, method, codeAttribute, offset, index, verificationTypeVisitor);
97 for (int index = 0; index < stackCount; index++)
99 stack[index].stackAccept(clazz, method, codeAttribute, offset, index, verificationTypeVisitor)
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
Pool.java 29 int index = --mFreeListIndex; local
30 if (index >= 0 && index < mFreeList.length) {
31 E object = mFreeList[index];
32 mFreeList[index] = null;
39 int index = mFreeListIndex; local
40 if (index >= 0 && index < mFreeList.length) {
41 mFreeList[index] = object;
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
dec_acelp_2p_in_64.cpp 47 int16 index, (i): 12 bits index
125 int16 index, /* (i): 12 bits index */
135 i = (index >> 5) & 0x003E;
137 if (((index >> 6) & NB_POS) == 0)
146 i = ((index & 0x001F) << 1) + 1;
148 if ((index & NB_POS) == 0)
  /libcore/luni/src/main/java/java/beans/
IndexedPropertyChangeEvent.java 28 private final int index; field in class:IndexedPropertyChangeEvent
32 * index.
47 * @param index
48 * the index of the property.
51 Object oldValue, Object newValue, int index) {
53 this.index = index;
57 * Returns the index of the property that was changed in this event.
60 return index;
  /external/proguard/src/proguard/classfile/attribute/annotation/
AnnotationsAttribute.java 65 for (int index = 0; index < u2annotationsCount; index++)
69 annotationVisitor.visitAnnotation(clazz, annotations[index]);
79 for (int index = 0; index < u2annotationsCount; index++)
83 annotationVisitor.visitAnnotation(clazz, field, annotations[index]);
93 for (int index = 0; index < u2annotationsCount; index++
    [all...]
  /external/webkit/JavaScriptCore/wtf/
ByteArray.h 37 void set(unsigned index, double value)
39 if (index >= m_size)
45 m_data[index] = static_cast<unsigned char>(value + 0.5);
48 void set(unsigned index, unsigned char value)
50 if (index >= m_size)
52 m_data[index] = value;
55 bool get(unsigned index, unsigned char& result) const
57 if (index >= m_size)
59 result = m_data[index];
63 unsigned char get(unsigned index) cons
    [all...]
  /libcore/luni/src/main/java/javax/xml/validation/
TypeInfoProvider.java 88 * @param index
89 * The index of the attribute. The same index for
94 * If the index is invalid.
109 public abstract TypeInfo getAttributeTypeInfo(int index);
130 * @param index
131 * The index of the attribute. The same index for
136 * If the index is invalid.
144 public abstract boolean isIdAttribute(int index);
    [all...]
  /external/skia/src/core/
SkBitmapSampler.h 99 static inline int do_clamp(int index, unsigned max)
104 if (index > (int)max)
105 index = max;
106 if (index < 0)
107 index = 0;
109 if ((unsigned)index > max)
111 if (index < 0)
112 index = 0;
114 index = max;
117 return index;
    [all...]
  /external/webkit/WebCore/bindings/js/
ScriptArray.h 47 bool set(unsigned index, const ScriptObject&);
48 bool set(unsigned index, const String&);
49 bool set(unsigned index, double);
50 bool set(unsigned index, long long);
51 bool set(unsigned index, int);
52 bool set(unsigned index, bool);
  /external/webkit/WebCore/bindings/v8/
ScriptArray.h 46 bool set(unsigned index, const ScriptObject&);
47 bool set(unsigned index, const String&);
48 bool set(unsigned index, double);
49 bool set(unsigned index, long long);
50 bool set(unsigned index, int);
51 bool set(unsigned index, bool);
  /frameworks/base/core/java/android/database/
CursorIndexOutOfBoundsException.java 24 public CursorIndexOutOfBoundsException(int index, int size) {
25 super("Index " + index + " requested, with a size of " + size);
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
d2_11pf.cpp 95 index -- Word16 -- Positions of the 2 pulses.
152 Word16 index, /* i : Positions of the 2 pulses. */
164 j = index & 0x1;
166 index >>= 1;
168 i = index & 0x7;
175 index >>= 3;
177 j = index & 0x3;
179 index >>= 2;
181 i = index & 0x7;

Completed in 669 milliseconds

1 2 3 4 5 6 7 8 91011>>