/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]);
|
/external/aac/libSBRdec/src/ |
huff_dec.cpp | 96 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/ |
TouchList.cpp | 32 Touch* TouchList::item(unsigned index) 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/ |
ByteArray.java | 23 * Reads an unsigned 16bit integer at the index. 25 public static int readU16bit(byte[] code, int index) { 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) { 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) { [all...] |
/external/bouncycastle/bcprov/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/chromium/chrome/browser/ui/views/tabs/ |
tab_strip_controller.h | 26 // 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 is closeable [all...] |
/external/clang/test/Sema/ |
implicit-builtin-redecl.c | 17 int index = 1; local 20 static int index; variable 23 return index << 2;
|
/external/proguard/src/proguard/obfuscate/ |
NumericNameFactory.java | 34 private int index; field in class:NumericNameFactory 41 index = 0; 47 return Integer.toString(++index);
|
/external/chromium_org/chrome/browser/profiles/ |
profile_info_interface.h | 25 virtual base::string16 GetNameOfProfileAtIndex(size_t index) const = 0; 28 size_t index) const = 0; 30 virtual base::FilePath GetPathOfProfileAtIndex(size_t index) const = 0; 32 virtual base::string16 GetUserNameOfProfileAtIndex(size_t index) const = 0; 35 size_t index) const = 0; 38 size_t index) const = 0; 40 // Returns true if the profile at the given index is currently running any 43 size_t index) const = 0; 45 virtual base::string16 GetGAIANameOfProfileAtIndex(size_t index) const = 0; 48 size_t index) const = 0 [all...] |
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glGetStringi.java | 1 // C function const GLubyte * glGetStringi ( GLenum name, GLuint index ) 5 int index
|
/external/chromium_org/chrome/browser/ui/cocoa/media_picker/ |
desktop_media_picker_bridge.h | 13 - (void)sourceAddedAtIndex:(int)index; 14 - (void)sourceRemovedAtIndex:(int)index; 15 - (void)sourceNameChangedAtIndex:(int)index; 16 - (void)sourceThumbnailChangedAtIndex:(int)index; 28 virtual void OnSourceAdded(int index) OVERRIDE; 29 virtual void OnSourceRemoved(int index) OVERRIDE; 30 virtual void OnSourceNameChanged(int index) OVERRIDE; 31 virtual void OnSourceThumbnailChanged(int index) OVERRIDE;
|
/external/chromium_org/ui/base/models/ |
combobox_model.cc | 9 bool ComboboxModel::IsItemSeparatorAt(int index) { 17 bool ComboboxModel::IsItemEnabledAt(int index) const {
|
/frameworks/base/media/java/android/media/ |
MediaCodecList.java | 33 public static final MediaCodecInfo getCodecInfoAt(int index) { 34 if (index < 0 || index > getCodecCount()) { 38 return new MediaCodecInfo(index); 41 /* package private */ static native final String getCodecName(int index); 43 /* package private */ static native final boolean isEncoder(int index); 45 /* package private */ static native final String[] getSupportedTypes(int index); 48 getCodecCapabilities(int index, String type);
|
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/ |
GamepadList.cpp | 36 void GamepadList::set(unsigned index, PassRefPtr<Gamepad> gamepad) 38 if (index >= kMaximumGamepads) 40 m_items[index] = gamepad; 48 Gamepad* GamepadList::item(unsigned index) 50 return index < length() ? m_items[index].get() : 0;
|
/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/jmonkeyengine/engine/src/test/jme3test/network/ |
MovingAverage.java | 40 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;
|