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

<<11121314151617181920>>

  /external/clang/test/Sema/
invalid-cast.cpp 6 T array; member in struct:X
10 return x0.array[17];
  /external/eigen/doc/snippets/
MatrixBase_bottomRows_int.cpp 2 cout << "Here is the array a:" << endl << a << endl;
6 cout << "Now the array a is:" << endl << a << endl;
MatrixBase_leftCols_int.cpp 2 cout << "Here is the array a:" << endl << a << endl;
6 cout << "Now the array a is:" << endl << a << endl;
MatrixBase_rightCols_int.cpp 2 cout << "Here is the array a:" << endl << a << endl;
6 cout << "Now the array a is:" << endl << a << endl;
MatrixBase_template_int_bottomRows.cpp 2 cout << "Here is the array a:" << endl << a << endl;
6 cout << "Now the array a is:" << endl << a << endl;
MatrixBase_template_int_leftCols.cpp 2 cout << "Here is the array a:" << endl << a << endl;
6 cout << "Now the array a is:" << endl << a << endl;
MatrixBase_template_int_rightCols.cpp 2 cout << "Here is the array a:" << endl << a << endl;
6 cout << "Now the array a is:" << endl << a << endl;
MatrixBase_template_int_topRows.cpp 2 cout << "Here is the array a:" << endl << a << endl;
6 cout << "Now the array a is:" << endl << a << endl;
MatrixBase_topRows_int.cpp 2 cout << "Here is the array a:" << endl << a << endl;
6 cout << "Now the array a is:" << endl << a << endl;
  /external/llvm/test/CodeGen/X86/
constructor.ll 2 ; RUN: llc -mtriple x86_64-pc-linux -use-init-array < %s | FileCheck --check-prefix=INIT-ARRAY %s
22 ; INIT-ARRAY: .section .init_array.15,"aw",@init_array
23 ; INIT-ARRAY-NEXT: .align 8
24 ; INIT-ARRAY-NEXT: .quad g
25 ; INIT-ARRAY-NEXT: .section .init_array,"aw",@init_array
26 ; INIT-ARRAY-NEXT: .align 8
27 ; INIT-ARRAY-NEXT: .quad f
  /external/guava/guava/src/com/google/common/primitives/
Ints.java 121 * {@code array}.
123 * @param array an array of {@code int} values, possibly empty
125 * @return {@code true} if {@code array[i] == target} for some value of {@code
128 public static boolean contains(int[] array, int target) {
129 for (int value : array) {
139 * {@code array}.
141 * @param array an array of {@code int} values, possibly empty
143 * @return the least index {@code i} for which {@code array[i] == target}, o
439 int[] array = new int[len]; local
471 final int[] array; field in class:Ints.IntArrayAsList
    [all...]
Longs.java 91 * {@code array}.
93 * @param array an array of {@code long} values, possibly empty
95 * @return {@code true} if {@code array[i] == target} for some value of {@code
98 public static boolean contains(long[] array, long target) {
99 for (long value : array) {
109 * {@code array}.
111 * @param array an array of {@code long} values, possibly empty
113 * @return the least index {@code i} for which {@code array[i] == target}, o
424 long[] array = new long[len]; local
456 final long[] array; field in class:Longs.LongArrayAsList
    [all...]
Shorts.java 119 * {@code array}.
121 * @param array an array of {@code short} values, possibly empty
123 * @return {@code true} if {@code array[i] == target} for some value of {@code
126 public static boolean contains(short[] array, short target) {
127 for (short value : array) {
137 * {@code array}.
139 * @param array an array of {@code short} values, possibly empty
141 * @return the least index {@code i} for which {@code array[i] == target}, o
437 short[] array = new short[len]; local
469 final short[] array; field in class:Shorts.ShortArrayAsList
    [all...]
generate.sh 136 * {@code array}.
138 * @param array an array of {@code primtyp} values, possibly empty
140 * @return {@code true} if {@code array[i] == target} for some value of {@code
143 public static boolean contains(primtyp[] array, primtyp target) {
144 for (primtyp value : array) {
154 * {@code array}.
156 * @param array an array of {@code primtyp} values, possibly empty
158 * @return the least index {@code i} for which {@code array[i] == target}, o
    [all...]
Chars.java 114 * {@code array}.
116 * @param array an array of {@code char} values, possibly empty
118 * @return {@code true} if {@code array[i] == target} for some value of {@code
121 public static boolean contains(char[] array, char target) {
122 for (char value : array) {
132 * {@code array}.
134 * @param array an array of {@code char} values, possibly empty
136 * @return the least index {@code i} for which {@code array[i] == target}, o
432 char[] array = new char[len]; local
464 final char[] array; field in class:Chars.CharArrayAsList
    [all...]
  /external/chromium_org/v8/src/
array-iterator.js 10 // var $Array = global.Array;
27 function CreateArrayIterator(array, kind) {
28 var object = ToObject(array);
55 ['Array Iterator.prototype.next']);
58 var array = GET_PRIVATE(iterator, arrayIteratorObjectSymbol);
59 if (IS_UNDEFINED(array)) {
65 var length = TO_UINT32(array.length);
77 return CreateIteratorResultObject(array[index], false);
81 return CreateIteratorResultObject([index, array[index]], false)
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1790.js 29 // array functions is specification conform (i.e. [[HasProperty]] might return
33 var array = [1,2,3];
41 Object.defineProperty(array, '1', {
42 get: function () { delete array[1]; },
46 assertTrue(array.hasOwnProperty('1'));
47 builtin.apply(array, [callback_wrapper, 'argument']);
48 assertFalse(array.hasOwnProperty('1'));
52 CheckSequence(Array.prototype.every, function() { return true; });
53 CheckSequence(Array.prototype.filter, function() { return true; });
54 CheckSequence(Array.prototype.forEach, function() { return 0; })
    [all...]
  /external/junit/src/org/junit/internal/
ComparisonCriteria.java 3 import java.lang.reflect.Array;
22 * Object array or array of arrays (multi-dimensional array) with
25 * Object array or array of arrays (multi-dimensional array) with
38 Object expected= Array.get(expecteds, i);
39 Object actual= Array.get(actuals, i);
64 Assert.fail(header + "expected array was null")
    [all...]
  /external/mockito/src/org/mockito/internal/matchers/
ArrayEquals.java 8 import java.lang.reflect.Array;
55 private void appendArray(Object[] array, Description description) {
57 for (int i = 0; i < array.length; i++) {
58 new Equals(array[i]).describeTo(description);
59 if (i != array.length - 1) {
66 public static Object[] createObjectArray(Object array) {
67 if (array instanceof Object[]) {
68 return (Object[]) array;
70 Object[] result = new Object[Array.getLength(array)];
    [all...]
  /packages/apps/TvSettings/QuickSettings/res/values/
config.xml 23 <string-array name="setting_names">
30 </string-array>
31 <string-array name="setting_preset_choices">
37 </string-array>
45 <integer-array name="standard_setting_values">
52 </integer-array>
53 <integer-array name="cinema_setting_values">
60 </integer-array>
61 <integer-array name="vivid_setting_values">
68 </integer-array>
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-iteration.js 28 // Tests for non-standard array iteration functions.
32 // <http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Global_Objects:Array>
37 // Array.prototype.filter
50 // Modify original array.
52 assertArrayEquals([42,42], a.filter(function(n, index, array) { array[index] = 43; return 42 == n; }));
55 // Only loop through initial part of array eventhough elements are
58 assertArrayEquals([], a.filter(function(n, index, array) { array.push(n+1); return n == 2; }));
62 a = new Array(20)
    [all...]
  /external/chromium_org/tools/json_schema_compiler/test/
arrays.json 11 "type": "array",
29 "type": "array",
41 "type": "array",
48 "type": "array",
54 "type": "array",
66 "type": "array",
80 "type": "array",
84 "type": "array",
88 "type": "array",
92 "type": "array",
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p6.cpp 4 template<class T> class Array { /* ... */ };
5 template<class T> void sort(Array<T>& v) { }
7 // instantiate sort(Array<int>&) - template-argument deduced
8 template void sort<>(Array<int>&);
10 template void sort(Array<long>&);
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_GetKeyState.3 11 Gets a snapshot of the current keyboard state\&. The current state is return as a pointer to an array, the size of this array is stored in \fBnumkeys\fR\&. The array is indexed by the \fI\fBSDLK_*\fP\fR symbols\&. A value of 1 means the key is pressed and a value of 0 means its not\&. The pointer returned is a pointer to an internal SDL array and should not be freed by the caller\&.
16 Use \fI\fBSDL_PumpEvents\fP\fR to update the state array\&.
  /packages/apps/Camera/res/values/
arrays.xml 20 <string-array name="pref_video_quality_entries" translatable="false">
26 </string-array>
28 <string-array name="pref_video_quality_entryvalues" translatable="false">
39 </string-array>
43 <string-array name="pref_video_time_lapse_frame_interval_entryvalues" translatable="false">
84 </string-array>
88 <string-array name="pref_video_time_lapse_frame_interval_entries">
129 </string-array>
133 <string-array name="pref_video_time_lapse_frame_interval_duration_values" translatable="false">
147 </string-array>
    [all...]

Completed in 622 milliseconds

<<11121314151617181920>>