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

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DIndexedItem.java20 * 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
64 setIndex(int index) argument
[all...]
/external/compiler-rt/lib/asan/lit_tests/TestCases/SharedLibs/
H A Dshared-lib-test-so.cc19 void inc(int index) { argument
20 GLOB[index]++;
24 void inc2(int *a, int index) { argument
25 a[index]++;
/external/chromium_org/v8/test/webkit/
H A Dfor-in-to-text.js29 for (j in index) {
30 testProperty(index[j]);
34 shouldBeTrue("test.toString().match('for *[(]j *in *index[)]') != null");
H A Darray-index-immediate-types.js36 function putSelf(array, index)
38 index = index << 0;
39 array[index] = index;
H A Darguments-bad-index.js25 "This test checks whether arguments crashes when passed a bad index."
28 function indexArguments(index)
30 return arguments[index];
/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/skia/tests/
H A DPathOpsThreadedCommon.cpp13 for (int index = 0; index < fRunnables.count(); index++) {
14 SkDELETE(fRunnables[index]);
20 for (int index = 0; index < fRunnables.count(); ++ index) {
21 pool.add(fRunnables[index]);
/external/aac/libSBRdec/src/
H A Dhuff_dec.cpp96 The table entries are interpreted either as index to the next entry
108 SCHAR index = 0; local
111 while (index >= 0) {
113 index = h[index][bit];
116 value = index+64; /* Add offset */
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTouchList.cpp32 Touch* TouchList::item(unsigned index) argument
34 if (index >= m_values.size())
36 return m_values[index].get();
39 const Touch* TouchList::item(unsigned index) const
41 return const_cast<TouchList*>(this)->item(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/bcprov/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);
/external/chromium_org/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/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/chromium_org/third_party/WebKit/Source/wtf/
H A DBitArray.h42 void set(unsigned index) argument
44 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySize);
45 m_data[index / 8] |= 1 << (index & 7);
48 bool get(unsigned index) const
50 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySize);
51 return !!(m_data[index / 8] & (1 << (index & 7)));
/external/chromium_org/tools/sharding_supervisor/
H A Ddummy_test.py11 index = os.environ['GTEST_SHARD_INDEX'] variable
12 print 'Running shard %s of %s' % (index, total)
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadList.cpp37 void GamepadList::set(unsigned index, PassRefPtr<Gamepad> gamepad) argument
39 if (index >= kMaximumGamepads)
41 m_items[index] = gamepad;
49 Gamepad* GamepadList::item(unsigned index) argument
51 return index < length() ? m_items[index].get() : 0;
/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/chromium_org/ui/webui/resources/js/cr/ui/table/
H A Dtable_column_model.js40 * Returns id of column at the given index.
41 * @param {number} index The index of the column.
44 getId: function(index) {
45 return this.columns_[index].id;
49 * Returns name of column at the given index. Name is used as column header
51 * @param {number} index The index of the column.
54 getName: function(index) {
55 return this.columns_[index]
[all...]
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dfake_base_tab_strip_controller.cc19 void FakeBaseTabStripController::AddTab(int index, bool is_active) { argument
21 tab_strip_->AddTabAt(index, TabRendererData(), is_active);
23 active_index_ = index;
26 void FakeBaseTabStripController::RemoveTab(int index) { argument
28 tab_strip_->RemoveTabAt(index);
29 if (active_index_ == index)
41 bool FakeBaseTabStripController::IsValidIndex(int index) const {
42 return index >= 0 && index < num_tabs_;
45 bool FakeBaseTabStripController::IsActiveTab(int index) cons
67 SelectTab(int index) argument
70 ExtendSelectionTo(int index) argument
73 ToggleSelected(int index) argument
76 AddSelectionFromAnchorTo(int index) argument
79 CloseTab(int index, CloseTabSource source) argument
95 OnDropIndexUpdate(int index, bool drop_before) argument
99 PerformDrop(bool drop_before, int index, const GURL& url) argument
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DMovingAverage.java40 private int count, index; field in class:MovingAverage
47 sum = sum - samples[index] + sample;
48 samples[index++] = sample;
49 if (index > count){
50 count = index;
52 if (index >= samples.length){
53 index = 0;
/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...]

Completed in 1402 milliseconds

1234567891011>>