Searched refs:arr (Results 76 - 100 of 247) sorted by relevance

12345678910

/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
H A Dshell.js154 * If available, arr.toSource() gives more detail than arr.toString()
156 * var arr = Array(1,2,'3');
158 * arr.toSource()
161 * arr.toString()
167 function formatArray(arr)
171 return arr.toSource();
175 return toSource(arr);
181 * Imitate SpiderMonkey's arr.toSource() method:
189 function toSource(arr)
[all...]
/external/clang/test/CodeGenCXX/
H A Dconst-init.cpp76 int arr[2]; variable
77 // CHECK: @pastEnd = constant i32* bitcast (i8* getelementptr (i8* bitcast ([2 x i32]* @arr to i8*), i64 8) to i32*)
78 int &pastEnd = arr[2];
H A Ddelete.cpp68 void test(A (*arr)[10][20]) { argument
69 delete [] arr;
H A Dglobal-array-destruction.cpp14 S arr[2][1]; variable
/external/clang/test/SemaCXX/
H A Dcondition.cpp8 typedef int arr[10]; typedef
9 while (arr x=0) ; // expected-error {{an array type is not allowed here}} expected-error {{array initializer must be an initializer list}}
H A Dwarn-memset-bad-sizeof.cpp31 char arr[5]; local
73 memset(arr, 0, sizeof(arr));
86 memcpy(0, &arr, sizeof(arr));
88 memcpy(0, &arr, sizeof(Buff));
105 memcpy(&foo, &arr, sizeof(Foo));
106 memcpy(&arr, &foo, sizeof(Foo));
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Array/
H A Dregress-101964.js48 var arr = Array(BIG); variable
50 arr.length = LITTLE;
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DAnimation.java201 Savable[] arr = in.readSavableArray("tracks", null);
202 tracks = new Track[arr.length];
203 System.arraycopy(arr, 0, tracks, 0, arr.length);
H A DCompactArray.java171 * @param arr the array
175 protected float[] ensureCapacity(float[] arr, int size) { argument
176 if (arr == null) {
178 } else if (arr.length >= size) {
179 return arr;
182 System.arraycopy(arr, 0, tmp, 0, arr.length);
184 //return Arrays.copyOf(arr, size);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/
H A DFractalTileLoader.java57 float[] arr = buffer.array();
58 for (int i = 0; i < arr.length; i++) {
59 arr[i] = arr[i] * this.heightScale;
/external/llvm/utils/obj2yaml/
H A Dobj2yaml.cpp31 const llvm::ArrayRef<uint8_t> arr) {
36 const iter_t end = arr.end();
37 for (iter_t iter = arr.begin(); iter != end; ++iter)
41 for (iter_t iter = arr.begin(); iter != end; ++iter)
30 writeHexStream(llvm::raw_ostream &Out, const llvm::ArrayRef<uint8_t> arr) argument
/external/valgrind/main/none/tests/x86-linux/
H A Dseg_override.c124 int arr[9]; local
126 for (i = 0; i < 9; i++) arr[i] = 11*i;
128 set_ldt1( &arr[4] );
133 for (i = 0; i < 9; i++) printf("%d ", arr[i]);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
H A Dregress-58274.js162 var arr = s.match(re);
164 if (!(arr && arr[1]))
166 return arr[1];
/external/clang/test/Sema/
H A Dexpr-address-of.c87 register int arr[2]; local
93 int *_dummy0 = &(int*) arr; // expected-error {{address expression must be an lvalue or a function designator}}
94 int *_dummy1 = &(arr + 1); // expected-error {{address expression must be an lvalue or a function designator}}
H A Ddesignated-initializers.c158 int arr[10]; member in struct:foo
162 [1] .arr [1] = 2,
163 [4] .arr [2] = 4
168 float *arr[10]; member in struct:bar
173 .f.arr[3] = 1,
174 .arr = { &f }
/external/clang/test/SemaTemplate/
H A Dinstantiate-self.cpp67 typedef int arr[f(T())];
71 typedef int arr[g(T())];
83 typedef int arr[g(T())];
/external/harfbuzz/src/
H A Dharfbuzz-dump-main.c33 #define N_ELEMENTS(arr) (sizeof(arr)/ sizeof((arr)[0]))
/external/v8/test/mjsunit/regress/
H A Dregress-1713.js37 var arr = [];
38 do {arr.push(new Array(1024));} while (--N > 0);
39 return arr;
/external/clang/test/Analysis/
H A Duninit-sometimes.cpp131 int arr[3] = { 1, 2, 3 }; local
133 for (int &a : arr) { // no-warning, condition was not explicitly specified
135 x = &a - arr;
147 int arr[3] = { 1, 2, 3 }; local
149 for (int &a : arr) { // no-warning
H A Ddtor.cpp140 IntWrapper arr[2]; local
145 clang_analyzer_eval(arr[0].x == 0); // expected-warning{{UNKNOWN}}
146 clang_analyzer_eval(arr[1].x == 0); // expected-warning{{UNKNOWN}}
148 arr[0].x = &i;
149 arr[1].x = &j;
150 clang_analyzer_eval(*arr[0].x == 42); // expected-warning{{TRUE}}
151 clang_analyzer_eval(*arr[1].x == 42); // expected-warning{{TRUE}}
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
H A DPerturbFilter.java58 float[] arr = data.array();
76 float c00 = arr[this.wrap(y - py, workSize) * workSize + this.wrap(x - px, workSize)];
77 float c01 = arr[this.wrap(y - py, workSize) * workSize + this.wrap(x + px, workSize)];
78 float c10 = arr[this.wrap(y + py, workSize) * workSize + this.wrap(x - px, workSize)];
79 float c11 = arr[this.wrap(y + py, workSize) * workSize + this.wrap(x + px, workSize)];
/external/v8/test/mjsunit/
H A Dobject-literal.js52 var arr = []; variable
54 arr[i] = {
61 arr[0].b.x = 2;
62 assertEquals(2, arr[0].b.x);
63 assertEquals(12, arr[1].b.x);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Unicode/
H A Duc-005.js186 * The return value will be an array |arr| indexed such that
187 * |arr[1]| is the 1st identifier, |arr[2]| the 2nd, and so on.
205 var arr = str.split('Z');
211 * Thus note the 1st identifier will be stored in |arr[1]|,
212 * the 2nd one in |arr[2]|, etc., making the indexing easy -
214 for (i in arr)
215 arr[i] = arr[i].charAt(0);
216 return arr;
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Exec.java64 Object[] arr = exec(command, args, envp, displayOutput);
66 Process proc = (Process) arr[0];
86 ((StringBuilder)arr[1]).toString()
96 Object[] arr =
99 return getProcessOutput(arr, displayOutput, true);
108 Object[] arr =
111 return getProcessOutput(arr, displayOutput, true);
114 private static String getProcessOutput(Object[] arr, boolean displayOutput, argument
117 Process proc = (Process) arr[0];
133 checkStderr(arr);
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DPositionList.java76 PositionList.Entry[] arr = new PositionList.Entry[sz];
99 arr[at] = new PositionList.Entry(insn.getAddress(), pos);
107 result.set(i, arr[i]);

Completed in 917 milliseconds

12345678910