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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-x86/string/
sse2-index-atom.S 31 #define strchr index
  /dalvik/dexgen/src/com/android/dexgen/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...]
  /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...]
  /external/dexmaker/src/dx/java/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...]
  /external/chromium_org/chrome/browser/media/
desktop_media_list_observer.h 12 virtual void OnSourceAdded(int index) = 0;
13 virtual void OnSourceRemoved(int index) = 0;
14 virtual void OnSourceNameChanged(int index) = 0;
15 virtual void OnSourceThumbnailChanged(int index) = 0;
  /external/compiler-rt/lib/asan/lit_tests/TestCases/SharedLibs/
shared-lib-test-so.cc 19 void inc(int index) {
20 GLOB[index]++;
24 void inc2(int *a, int index) {
25 a[index]++;
  /external/chromium_org/third_party/WebKit/Source/wtf/
BitArray.h 42 void set(unsigned index)
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/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/skia/tests/
PathOpsThreadedCommon.cpp 13 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]);