HomeSort by relevance Sort by last modified time
    Searched full:array (Results 251 - 275 of 22317) sorted by null

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/io/instructions/
ShortArrayCodeInput.java 26 /** source array to read from */
27 private final short[] array; field in class:ShortArrayCodeInput
32 public ShortArrayCodeInput(short[] array) {
33 if (array == null) {
34 throw new NullPointerException("array == null");
37 this.array = array;
42 return cursor() < array.length;
48 int value = array[cursor()];
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_var_array_interface.h 18 virtual PP_Var Get(PP_Var array, uint32_t index);
19 virtual PP_Bool Set(PP_Var array, uint32_t index, PP_Var value);
20 virtual uint32_t GetLength(PP_Var array);
21 virtual PP_Bool SetLength(PP_Var array, uint32_t length);
  /external/chromium_org/third_party/WebKit/PerformanceTests/ShadowDOM/
ChangingClassName.html 17 var array = new Array(numDivsInHost);
27 array[i] = div;
35 var array = window.array;
43 array[j].className = 'selected';
44 selected.appendChild(array[j]);
46 array[j].className = '';
47 nonSelected.appendChild(array[j]);
  /external/chromium_org/tools/json_schema_compiler/test/
forbidden.json 14 "description": "a choice between int and array",
17 {"type": "array", "items": {"type": "integer"}}
26 "description": "a choice between int and array",
29 {"type": "array", "items": {"type": "integer"}}
  /external/chromium_org/v8/test/mjsunit/
array-shift2.js 7 Object.defineProperty(Array.prototype, "1", {
11 function test(array) {
12 array.shift();
13 return array;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-3158.js 7 Array.prototype[0] = 'a';
8 delete Array.prototype[0];
14 var a = new Array(100000);
22 Array.prototype[0] = 'a';
regress-crbug-344186.js 8 var array = new Int32Array(128);
10 array[base - 95] = 1;
11 array[base - 99] = 2;
12 array[base + 4] = 3;
regress-crbug-347903.js 8 var a = new Array(84632);
10 // array "b."
11 var b = new Array(84632);
12 var c = new Array(84632);
  /external/clang/test/CodeGen/
2007-11-29-ArraySizeFromInitializer.c 3 int array[] = {1, 2, 3, 4, 5}; variable
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
ShortArrayCodeInput.java 26 /** source array to read from */
27 private final short[] array; field in class:ShortArrayCodeInput
32 public ShortArrayCodeInput(short[] array) {
33 if (array == null) {
34 throw new NullPointerException("array == null");
37 this.array = array;
42 return cursor() < array.length;
48 int value = array[cursor()];
  /external/stlport/test/unit/
reviter_test.cpp 35 int array [] = { 1, 5, 2, 3 }; local
37 vector<int> v(array, array + 4);
50 int array [] = { 1, 5, 2, 3 }; local
52 vector<int> v(array, array + 4);
63 int array [] = { 1, 5, 2, 3 }; local
65 list<int> v(array, array + 4);
  /external/valgrind/main/drd/tests/
pth_barrier.c 29 int8_t* array; member in struct:threadinfo
45 /** Single thread, which touches p->iterations elements of array p->array.
46 * Each modification of an element of p->array is a data race. */
50 int8_t* const array = p->array; local
59 pthread_self(), i + 1, &array[i]);
60 array[i] = i;
73 int8_t* array; local
76 array = malloc(iterations * sizeof(array[0]))
    [all...]
  /frameworks/compile/slang/tests/F_const_array_arg/
stderr.txt.expect 1 const_array_arg.rs:4:10: error: exported function parameters may not have array type: 'float [3]'
  /ndk/tests/device/test-gnustl-full/unit/
reviter_test.cpp 35 int array [] = { 1, 5, 2, 3 }; local
37 vector<int> v(array, array + 4);
50 int array [] = { 1, 5, 2, 3 }; local
52 vector<int> v(array, array + 4);
63 int array [] = { 1, 5, 2, 3 }; local
65 list<int> v(array, array + 4);
  /ndk/tests/device/test-stlport/unit/
reviter_test.cpp 35 int array [] = { 1, 5, 2, 3 }; local
37 vector<int> v(array, array + 4);
50 int array [] = { 1, 5, 2, 3 }; local
52 vector<int> v(array, array + 4);
63 int array [] = { 1, 5, 2, 3 }; local
65 list<int> v(array, array + 4);
  /packages/apps/Calendar/res/values/
arrays.xml 18 These must be kept in sync with the reminder_methods_values array.
21 <string-array name="reminder_methods_labels">
26 </string-array>
29 <integer-array name="reminder_methods_values" translatable="false">
34 </integer-array>
37 These must be kept in sync with the reminder_minutes_values array.
43 <string-array name="reminder_minutes_labels">
60 </string-array>
62 <integer-array name="reminder_minutes_values" translatable="false">
79 </integer-array>
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
array-functions-non-arrays-expected.txt 24 Test some array functions on non-array objects.
33 PASS Array.prototype.toString.call({}) is "[object Object]"
34 PASS Array.prototype.toString.call(new Date) is "[object Date]"
35 PASS Array.prototype.toString.call({sort: function() { return 'sort' }}) is "[object Object]"
36 PASS Array.prototype.toString.call({join: function() { return 'join' }}) is "join"
37 PASS Array.prototype.toString.call({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3}) is "a,b,c"
38 PASS ({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3}).toString() is "a,b,c"
39 PASS Array.prototype.toString.call({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3, join: func (…)
    [all...]
array-prototype-properties.js 29 shouldThrow("Array.prototype.toString.call(undefined)");
30 shouldThrow("Array.prototype.toLocaleString.call(undefined)");
31 shouldThrow("Array.prototype.concat.call(undefined, [])");
32 shouldThrow("Array.prototype.join.call(undefined, [])");
33 shouldThrow("Array.prototype.pop.call(undefined)");
34 shouldThrow("Array.prototype.push.call(undefined, {})");
35 shouldThrow("Array.prototype.reverse.call(undefined)");
36 shouldThrow("Array.prototype.shift.call(undefined)");
37 shouldThrow("Array.prototype.slice.call(undefined, 0, 1)");
38 shouldThrow("Array.prototype.sort.call(undefined)")
    [all...]
  /external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp 21 * \brief Vertex array and buffer unaligned access stress tests
44 SingleVertexArrayUsageGroup (Context& context, Array::Usage usage);
53 Array::Usage m_usage;
56 SingleVertexArrayUsageGroup::SingleVertexArrayUsageGroup (Context& context, Array::Usage usage)
57 : TestCaseGroup (context, Array::usageTypeToString(usage).c_str(), Array::usageTypeToString(usage).c_str())
78 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE}
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLR.xcodeproj/project.xcworkspace/xcuserdata/acondit.xcuserdatad/
UserInterfaceState.xcuserstate 8 <array>
17 <array>
174 </array>
176 <array>
333 </array>
381 <array>
406 </array>
408 <array>
433 </array>
450 <array>
    [all...]
  /external/chromium_org/v8/test/webkit/
dfg-ensure-non-array-array-storage-on-window.js 25 "Tests that passing the global object to an array access that will arrayify to NonArrayWithArrayStorage doesn't break things."
28 function foo(array) {
30 for (var i = 0; i < array.length; ++i)
31 result += array[i];
35 function bar(array) {
36 array[1] = 42;
39 var array = {};
40 array.length = 3;
41 array[0] = 1;
42 array[1] = 2
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/util/
poloutil.h 29 // Converts an array of big-endian bytes to a hex string.
30 // @param bytes an array of big-endian bytes
31 // @param length the length of the given byte array
32 // @return a hex string representing the given byte array
36 // Converts a hex string to an array of big-endian bytes. A new byte array
38 // The byte array must be freed using: delete[] bytes.
40 // @param bytes pointer to a byte array that will be created with the
42 // @return the number of bytes in the resulting byte array
46 // Converts an integer value to a big-endian array of bytes. A new byte arra
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
Bytes.java 63 * {@code array}.
65 * @param array an array of {@code byte} values, possibly empty
67 * @return {@code true} if {@code array[i] == target} for some value of {@code
70 public static boolean contains(byte[] array, byte target) {
71 for (byte value : array) {
81 * {@code array}.
83 * @param array an array of {@code byte} values, possibly empty
85 * @return the least index {@code i} for which {@code array[i] == target}, o
265 final byte[] array; field in class:Bytes.ByteArrayAsList
    [all...]
  /external/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.comp.assign/
Android.mk 17 test_makefile := external/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.comp.assign/Android.mk
19 test_name := numerics/numarray/template.gslice.array/gslice.array.comp.assign/and
23 test_name := numerics/numarray/template.gslice.array/gslice.array.comp.assign/multiply
27 test_name := numerics/numarray/template.gslice.array/gslice.array.comp.assign/addition
31 test_name := numerics/numarray/template.gslice.array/gslice.array.comp.assign/subtractio
    [all...]
  /external/libcxx/test/numerics/numarray/template.indirect.array/indirect.array.comp.assign/
Android.mk 17 test_makefile := external/libcxx/test/numerics/numarray/template.indirect.array/indirect.array.comp.assign/Android.mk
19 test_name := numerics/numarray/template.indirect.array/indirect.array.comp.assign/and
23 test_name := numerics/numarray/template.indirect.array/indirect.array.comp.assign/multiply
27 test_name := numerics/numarray/template.indirect.array/indirect.array.comp.assign/addition
31 test_name := numerics/numarray/template.indirect.array/indirect.array.comp.assign/subtractio
    [all...]

Completed in 629 milliseconds

<<11121314151617181920>>