Searched refs:index (Results 1 - 25 of 3524) sorted by relevance

1234567891011>>

/external/skia/samplecode/
H A Dvertexdump.cpp3 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
5 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) { argument
38 index[0] = 0; index[1] = 5; index[2] = 1;
39 index[3] = 0; index[4] = 4; index[5] = 5;
41 index[6] = 1; index[
[all...]
/external/qemu/android/
H A Dkeycode.c22 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/javassist/src/main/javassist/bytecode/
H A DByteArray.java23 * Reads an unsigned 16bit integer at the index.
25 public static int readU16bit(byte[] code, int index) { argument
26 return ((code[index] & 0xff) << 8) | (code[index + 1] & 0xff);
30 * Reads a signed 16bit integer at the index.
32 public static int readS16bit(byte[] code, int index) { argument
33 return (code[index] << 8) | (code[index + 1] & 0xff);
37 * Writes a 16bit integer at the index.
39 public static void write16bit(int value, byte[] code, int index) { argument
47 read32bit(byte[] code, int index) argument
55 write32bit(int value, byte[] code, int index) argument
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DOIDTokenizer.java12 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/clang/test/Sema/
H A Dimplicit-builtin-redecl.c17 int index = 1; local
20 static int index; variable
23 return index << 2;
/external/proguard/src/proguard/obfuscate/
H A DNumericNameFactory.java34 private int index; field in class:NumericNameFactory
41 index = 0;
47 return Integer.toString(++index);
H A DMultiMappingProcessor.java52 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 < mappingProcessor
[all...]
/external/webkit/Source/WebCore/dom/
H A DTouchList.cpp34 Touch* TouchList::item(unsigned index) argument
36 if (index >= m_values.size())
38 return m_values[index].get();
/external/webkit/Source/WebCore/fileapi/
H A DFileList.cpp37 File* FileList::item(unsigned index) const
39 if (index >= m_files.size())
41 return m_files[index].get();
H A DEntryArray.cpp42 Entry* EntryArray::item(unsigned index) const
44 if (index >= m_entries.size())
46 return m_entries[index].get();
/external/v8/test/mjsunit/
H A Dstring-indexof-2.js57 var index = -1;
59 index = lipsum.indexOf(substring, index + 1);
60 assertTrue(index != -1,
62 assertEquals(lipsum.substring(index, index + len), substring,
64 index + ".." + (index + len - 1));
65 } while (index >= 0 && index <
[all...]
/external/emma/core/java12/com/vladium/jcd/compiler/
H A DCodeGen.java26 public static void load_local_object_var (final ByteArrayOStream out, final int index) argument
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) argument
48 if (index <= 3)
50 out.write (_astore_0 + index); // astore_
106 push_constant_index(final ByteArrayOStream out, final int index) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DMultiAttributeVisitor.java81 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 < attributeVisitor
[all...]
/external/webkit/Source/WebCore/page/
H A DWebKitAnimationList.cpp49 WebKitAnimation* WebKitAnimationList::item(unsigned index) argument
51 if (index < m_animations.size())
52 return m_animations[index].get();
56 void WebKitAnimationList::deleteAnimation(unsigned index) argument
58 if (index >= m_animations.size())
61 m_animations.remove(index);
69 unsigned WebKitAnimationList::insertAnimation(RefPtr<WebKitAnimation> animation, unsigned index) argument
74 if (index > m_animations.size())
77 m_animations.insert(index, animation);
78 return index;
[all...]
/external/apache-http/src/org/apache/commons/codec/language/
H A DDoubleMetaphone.java92 int index = isSilentStart(value) ? 1 : 0;
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
269 handleAEIOUY(String value, DoubleMetaphoneResult result, int index) argument
280 handleC(String value, DoubleMetaphoneResult result, int index) argument
334 handleCC(String value, DoubleMetaphoneResult result, int index) argument
360 handleCH(String value, DoubleMetaphoneResult result, int index) argument
391 handleD(String value, DoubleMetaphoneResult result, int index) argument
417 handleG(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
473 handleGH(String value, DoubleMetaphoneResult result, int index) argument
507 handleH(String value, DoubleMetaphoneResult result, int index) argument
525 handleJ(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
560 handleL(String value, DoubleMetaphoneResult result, int index) argument
578 handleP(String value, DoubleMetaphoneResult result, int index) argument
594 handleR(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
611 handleS(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
664 handleSC(String value, DoubleMetaphoneResult result, int index) argument
696 handleT(String value, DoubleMetaphoneResult result, int index) argument
726 handleW(String value, DoubleMetaphoneResult result, int index) argument
765 handleX(String value, DoubleMetaphoneResult result, int index) argument
786 handleZ(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
808 conditionC0(String value, int index) argument
827 conditionCH0(String value, int index) argument
843 conditionCH1(String value, int index) argument
855 conditionL0(String value, int index) argument
871 conditionM0(String value, int index) argument
933 charAt(String value, int index) argument
[all...]
/external/proguard/src/proguard/evaluation/
H A DVariables.java78 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), a
172 getValue(int index) argument
187 store(int index, Value value) argument
209 load(int index) argument
226 iload(int index) argument
235 lload(int index) argument
244 fload(int index) argument
253 dload(int index) argument
262 aload(int index) argument
271 oload(int index) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DFullFrame.java85 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, verificationTypeVisito
[all...]
/external/chromium/chrome/browser/ui/views/tabs/
H A Dtab_strip_controller.h26 // Returns true if |index| is a valid model index.
27 virtual bool IsValidIndex(int index) const = 0;
29 // Returns true if the tab at |index| is the active tab. The active tab is the
31 virtual bool IsActiveTab(int index) const = 0;
33 // Returns true if the selected index is selected.
34 virtual bool IsTabSelected(int index) const = 0;
36 // Returns true if the selected index is pinned.
37 virtual bool IsTabPinned(int index) const = 0;
39 // Returns true if the selected index i
[all...]
/external/proguard/src/proguard/classfile/attribute/annotation/
H A DAnnotationsAttribute.java65 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 < u2annotationsCoun
[all...]
/external/skia/src/core/
H A DSkBitmapSampler.h99 static inline int do_clamp(int index, unsigned max) argument
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;
120 do_repeat_mod(int index, unsigned max) argument
134 do_repeat_pow2(int index, unsigned max) argument
141 do_mirror_mod(int index, unsigned max) argument
160 do_mirror_pow2(int index, unsigned max) argument
[all...]
/external/chromium/chrome/browser/ui/cocoa/applescript/
H A Dbookmark_folder_applescript.h30 - (void)insertInBookmarkFolders:(id)aBookmarkFolder atIndex:(int)index;
35 - (void)removeFromBookmarkFoldersAtIndex:(int)index;
49 atIndex:(int)index;
54 - (void)removeFromBookmarkItemsAtIndex:(int)index;
60 - (int)calculatePositionOfBookmarkFolderAt:(int)index;
66 - (int)calculatePositionOfBookmarkItemAt:(int)index;
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DAttributesImpl.java110 * @param index The attribute's index (zero-based).
112 * available, or null if the index is out of range.
115 public String getURI (int index)
117 if (index >= 0 && index < length) {
118 return data[index*5];
128 * @param index The attribute's index (zero-based).
130 * none is available, or null if the index i
113 getURI(int index) argument
131 getLocalName(int index) argument
149 getQName(int index) argument
167 getType(int index) argument
184 getValue(int index) argument
421 setAttribute(int index, String uri, String localName, String qName, String type, String value) argument
444 removeAttribute(int index) argument
474 setURI(int index, String uri) argument
494 setLocalName(int index, String localName) argument
514 setQName(int index, String qName) argument
533 setType(int index, String type) argument
552 setValue(int index, String value) argument
606 badIndex(int index) argument
[all...]
/external/proguard/src/proguard/util/
H A DFileNameParser.java42 int index;
46 for (index = 0; index < regularExpression.length(); index++)
49 if (regularExpression.regionMatches(index, "**", 0, 2))
58 parse(regularExpression.substring(index + 2)));
63 else if (regularExpression.charAt(index) == '*')
72 parse(regularExpression.substring(index + 1)));
77 else if (regularExpression.charAt(index) == '?')
86 parse(regularExpression.substring(index
[all...]
H A DVariableStringMatcher.java61 for (int index = 0; index < minimumLength; index++)
63 if (!isAllowedCharacter(string.charAt(index)))
72 for (int index = minimumLength; index < maximumLength; index++)
74 if (nextMatcher.matches(string.substring(index)))
79 if (!isAllowedCharacter(string.charAt(index)))
100 for (int index
[all...]
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSArrayExtras.m35 -(NSNumber *)_webkit_numberAtIndex:(NSUInteger)index
37 id object = [self objectAtIndex:index];
41 -(NSString *)_webkit_stringAtIndex:(NSUInteger)index
43 id object = [self objectAtIndex:index];
57 int index;
60 for (index = [self count] - 1; index >= 0; --index) {
61 NSMenuItem *item = [self objectAtIndex:index];
64 if (itemIsSeparator && (removePreviousItemIfSeparator || index
[all...]

Completed in 578 milliseconds

1234567891011>>