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

1 2 3 45 6 7 8 91011>>

  /external/clang/test/SemaCXX/
warn-char-subscripts.cpp 5 int array[1] = { 0 }; local
7 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}}
12 int array[1] = { 0 }; local
14 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}}
parentheses.cpp 5 bool test(Foo f, int *array)
7 return false && false || array[f.get()]; // expected-warning {{'&&' within '||'}} expected-note {{parentheses}}
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/array/
data.hpp 21 # define BOOST_PP_ARRAY_DATA(array) BOOST_PP_TUPLE_ELEM(2, 1, array)
23 # define BOOST_PP_ARRAY_DATA(array) BOOST_PP_ARRAY_DATA_I(array)
24 # define BOOST_PP_ARRAY_DATA_I(array) BOOST_PP_ARRAY_DATA_II array
size.hpp 21 # define BOOST_PP_ARRAY_SIZE(array) BOOST_PP_TUPLE_ELEM(2, 0, array)
23 # define BOOST_PP_ARRAY_SIZE(array) BOOST_PP_ARRAY_SIZE_I(array)
24 # define BOOST_PP_ARRAY_SIZE_I(array) BOOST_PP_ARRAY_SIZE_II array
  /external/chromium_org/v8/test/mjsunit/regress/
regress-builtinbust-6.js 5 // Test that Array builtins can be called on primitive values.
9 Array.prototype.join.call(v);
10 Array.prototype.pop.call(v);
11 Array.prototype.push.call(v);
12 Array.prototype.reverse.call(v);
13 Array.prototype.shift.call(v);
14 Array.prototype.slice.call(v);
15 Array.prototype.splice.call(v);
16 Array.prototype.unshift.call(v);
33 test_receiver(11, "Array.prototype.join.call(11)"
    [all...]
regress-crbug-352929.js 8 array = new Int32Array(100);
11 array[-17] = 0;
13 array[base - 1] = 1;
14 array[base - 2] = 2;
16 array[base - 4] = 3;
17 array[base - 5] = 4;
19 array[base - 6] = 5;
20 array[base - 100] = 777;
  /packages/apps/Camera/res/xml/
video_preferences.xml 24 camera:entries="@array/pref_video_quality_entries"
25 camera:entryValues="@array/pref_video_quality_entryvalues"/>
31 camera:entries="@array/pref_video_time_lapse_frame_interval_entries"
32 camera:entryValues="@array/pref_video_time_lapse_frame_interval_entryvalues"/>
37 camera:icons="@array/video_flashmode_icons"
38 camera:largeIcons="@array/video_flashmode_largeicons"
39 camera:entries="@array/pref_camera_video_flashmode_entries"
40 camera:entryValues="@array/pref_camera_video_flashmode_entryvalues"/>
45 camera:icons="@array/whitebalance_icons"
46 camera:largeIcons="@array/whitebalance_largeicons
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-slice.js 28 // Check that slicing array of holes keeps it as array of holes
30 var array = new Array(10);
32 var sliced = array.slice();
33 assertEquals(array.length, sliced.length);
39 // Check various variants of empty array's slicing.
52 var array = new Array(7);
55 assertEquals(array, array.slice())
    [all...]
  /cts/apps/CtsVerifier/res/values/
nfc_reader_types.xml 3 <string-array name="nfc_types_array">
6 </string-array>
  /external/chromium_org/mojo/public/interfaces/bindings/tests/data/validation/
conformance_mthd3_good.data 13 [dist4]array // num_bytes
17 [anchr]array
conformance_mthd3_array_num_bytes_less_than_necessary_size.data 13 [dist4]array // num_bytes: Less than the size needed (array header + 12 boolean
17 [anchr]array
  /external/chromium_org/third_party/icu/source/test/letest/
letest.h 25 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
31 #define DELETE_ARRAY(array) free((void *) (array))
33 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
  /external/chromium_org/v8/test/webkit/
dfg-put-by-val-setter-then-get-by-val-expected.txt 29 PASS foo(array, -1, i) is 42
31 PASS foo(array, -1, i) is 42
33 PASS foo(array, -1, i) is 42
35 PASS foo(array, -1, i) is 42
37 PASS foo(array, -1, i) is 42
39 PASS foo(array, -1, i) is 42
41 PASS foo(array, -1, i) is 42
43 PASS foo(array, -1, i) is 42
45 PASS foo(array, -1, i) is 42
47 PASS foo(array, -1, i) is 4
    [all...]
  /external/icu/icu4c/source/test/letest/
letest.h 25 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
31 #define DELETE_ARRAY(array) free((void *) (array))
33 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
  /external/stlport/test/unit/
bcompos_test.cpp 36 int array [6] = { -2, -1, 0, 1, 2, 3 }; local
41 int* p = find_if((int*)array, (int*)array + 6, b);
42 CPPUNIT_ASSERT(p != array + 6);
49 int array [6] = { -2, -1 , 0, 1, 2, 3 }; local
51 int* p = find_if((int*)array, (int*)array + 6,
53 CPPUNIT_ASSERT(p != array + 6);
  /frameworks/base/libs/androidfw/tests/data/overlay/res/values/
values.xml 4 <integer-array name="integerArray1">
7 </integer-array>
  /ndk/tests/device/test-gnustl-full/unit/
bcompos_test.cpp 36 int array [6] = { -2, -1, 0, 1, 2, 3 }; local
41 int* p = find_if((int*)array, (int*)array + 6, b);
42 CPPUNIT_ASSERT(p != array + 6);
49 int array [6] = { -2, -1 , 0, 1, 2, 3 }; local
51 int* p = find_if((int*)array, (int*)array + 6,
53 CPPUNIT_ASSERT(p != array + 6);
  /ndk/tests/device/test-stlport/unit/
bcompos_test.cpp 36 int array [6] = { -2, -1, 0, 1, 2, 3 }; local
41 int* p = find_if((int*)array, (int*)array + 6, b);
42 CPPUNIT_ASSERT(p != array + 6);
49 int array [6] = { -2, -1 , 0, 1, 2, 3 }; local
51 int* p = find_if((int*)array, (int*)array + 6,
53 CPPUNIT_ASSERT(p != array + 6);
  /packages/apps/LegacyCamera/res/xml/
camera_preferences.xml 24 camera:icons="@array/camera_flashmode_icons"
25 camera:largeIcons="@array/camera_flashmode_largeicons"
26 camera:entries="@array/pref_camera_flashmode_entries"
27 camera:entryValues="@array/pref_camera_flashmode_entryvalues" />
38 camera:entries="@array/pref_camera_scenemode_entries"
39 camera:entryValues="@array/pref_camera_scenemode_entryvalues" />
44 camera:icons="@array/whitebalance_icons"
45 camera:largeIcons="@array/whitebalance_largeicons"
46 camera:entries="@array/pref_camera_whitebalance_entries"
47 camera:entryValues="@array/pref_camera_whitebalance_entryvalues" /
    [all...]
  /art/test/061-out-of-memory/
expected.txt 2 Got expected huge-array OOM
  /external/chromium_org/chrome/common/extensions/docs/templates/private/
variable_type.html 14 {{?array}}
15 array of {{+partials.variable_type type:array/}}
16 {{/array}}
  /external/clang/test/Sema/
array-size.c 4 int x0[1073741824]; // expected-error{{array is too large}}
5 int x1[1073741824 + 1]; // expected-error{{array is too large}}
6 int x2[(unsigned)1073741824]; // expected-error{{array is too large}}
7 int x3[(unsigned)1073741824 + 1]; // expected-error{{array is too large}}
illegal-types.c 3 void a (void []()); // expected-error{{'type name' declared as array of functions}}
4 void b (void p[]()); // expected-error{{'p' declared as array of functions}}
5 void c (int &[]); // expected-error{{'type name' declared as array of references}}
6 void d (int &p[]); // expected-error{{'p' declared as array of references}}
  /external/dnsmasq/contrib/dnsmasq_MacOSX/
StartupParameters.plist 10 <array>
12 </array>
14 <array>
16 </array>
  /frameworks/compile/slang/tests/P_array_init/
stderr.txt.expect 1 array_init.rs:22:6: warning: tentative array definition assumed to have one element

Completed in 1000 milliseconds

1 2 3 45 6 7 8 91011>>