| /cts/tools/vm-tests/src/dot/junit/opcodes/aput_boolean/d/ |
| T_aput_boolean_1.java | 20 public void run(boolean[] arr, int idx, boolean value) { 21 arr[idx] = value;
|
| /cts/tools/vm-tests/src/dot/junit/opcodes/aput_byte/d/ |
| T_aput_byte_1.java | 20 public void run(byte[] arr, int idx, byte value) { 21 arr[idx] = value;
|
| /cts/tools/vm-tests/src/dot/junit/opcodes/aput_char/d/ |
| T_aput_char_1.java | 20 public void run(char[] arr, int idx, char value) { 21 arr[idx] = value;
|
| /cts/tools/vm-tests/src/dot/junit/opcodes/aput_short/d/ |
| T_aput_short_1.java | 20 public void run(short[] arr, int idx, short value) { 21 arr[idx] = value;
|
| /cts/tools/vm-tests/src/dot/junit/opcodes/aput_wide/d/ |
| T_aput_wide_1.java | 21 public void run(long[] arr, int idx, long value) { 22 arr[idx] = value;
|
| T_aput_wide_2.java | 21 public void run(double[] arr, int idx, double value) { 22 arr[idx] = value;
|
| /system/core/nexus/ |
| Property.h | 40 virtual int set(int idx, const char *value) = 0; 41 virtual int set(int idx, int value) = 0; 42 virtual int set(int idx, struct in_addr *value) = 0; 44 virtual int get(int idx, char *buffer, size_t max) = 0; 45 virtual int get(int idx, int *buffer) = 0; 46 virtual int get(int idx, struct in_addr *buffer) = 0; 59 virtual int set(int idx, const char *value) = 0; 60 int set(int idx, int value); 61 int set(int idx, struct in_addr *value); 63 virtual int get(int idx, char *buffer, size_t max) = 0 [all...] |
| /external/elfutils/libdw/ |
| dwarf_filesrc.c | 23 dwarf_filesrc (Dwarf_Files *file, size_t idx, Dwarf_Word *mtime, 26 if (file == NULL || idx >= file->nfiles) 30 *mtime = file->info[idx].mtime; 33 *length = file->info[idx].length; 35 return file->info[idx].name;
|
| /frameworks/base/include/utils/ |
| StringArray.h | 44 void erase(int idx); 65 const char* getEntry(int idx) const { 66 return (unsigned(idx) >= unsigned(mCurrent)) ? NULL : mArray[idx]; 73 void setEntry(int idx, const char* str);
|
| /external/opencore/codecs_v2/video/m4v_h263/enc/src/ |
| vlc_encode_inline.h | 25 Int idx, run, level, j; local 28 idx = 0; 53 RLB->level[idx] = -level; 54 RLB->s[idx] = 1; 55 RLB->run[idx] = run; 57 idx++; 61 RLB->level[idx] = level; 62 RLB->s[idx] = 0; 63 RLB->run[idx] = run; 65 idx++ 116 Int idx, run, level, j; local 230 Int idx, run, level = 0, j; local [all...] |
| /frameworks/base/libs/utils/ |
| StringArray.cpp | 74 void StringArray::erase(int idx) { 75 if (idx < 0 || idx >= mCurrent) 77 delete[] mArray[idx]; 78 if (idx < mCurrent-1) { 79 memmove(&mArray[idx], &mArray[idx+1], 80 (mCurrent-1 - idx) * sizeof(char*)); 103 void StringArray::setEntry(int idx, const char* str) { 104 if (idx < 0 || idx >= mCurrent [all...] |
| /cts/tools/dx-tests/src/dxc/junit/opcodes/aaload/jm/ |
| T_aaload_6.java | 21 public String run(Object a, String[] arr, int idx) { 22 return arr[idx];
|
| /cts/tools/dx-tests/src/dxc/junit/opcodes/aastore/jm/ |
| T_aastore_1.java | 21 public void run(String[] arr, int idx, String value) { 22 arr[idx] = value;
|
| T_aastore_10.java | 21 public void run(Integer[] arr, int idx, Integer value) { 22 arr[idx] = value;
|
| T_aastore_12.java | 21 public void run(String[] arr, int idx, String value) { 22 arr[idx] = value;
|
| T_aastore_2.java | 21 public void run(String[] arr, int idx, String value) { 22 arr[idx] = value;
|
| T_aastore_3.java | 21 public void run(String[] arr, int idx, String value) { 22 arr[idx] = value;
|
| T_aastore_5.java | 21 public void run(String[] arr, double idx, String value) { 22 arr[(int)idx] = value;
|
| T_aastore_6.java | 21 public void run(String[] arr, int idx, String value) { 22 arr[idx] = value;
|
| T_aastore_7.java | 21 public void run(Object a, String[] arr, int idx, String value) { 22 arr[idx] = value;
|
| T_aastore_8.java | 21 public void run(String a[], float[] arr, int idx, String value) { 22 a[idx] = value;
|
| T_aastore_9.java | 21 public void run(String a[], long[] arr, int idx, String value) { 22 a[idx] = value;
|
| /cts/tools/dx-tests/src/dxc/junit/opcodes/bastore/jm/ |
| T_bastore_6.java | 21 public void run(Object a, byte[] arr, int idx, byte value) { 22 arr[idx] = value;
|
| /cts/tools/dx-tests/src/dxc/junit/opcodes/castore/jm/ |
| T_castore_6.java | 21 public void run(Object a, char[] arr, int idx, char value) { 22 arr[idx] = value;
|
| /cts/tools/dx-tests/src/dxc/junit/opcodes/dastore/jm/ |
| T_dastore_6.java | 21 public void run(Object a, double[] arr, int idx, double value) { 22 arr[idx] = value;
|