/external/clang/test/Sema/ |
template-specialization.cpp | 13 int array[i]; local 14 A::template bar(array[0]); // expected-error {{no matching function for call to 'bar'}}
|
/external/harfbuzz_ng/src/hb-icu-le/ |
letest.h | 37 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0]) 43 #define DELETE_ARRAY(array) free((void *) (array)) 45 #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);
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.13.2-1.js | 55 var array = new Array(); 60 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 *= VAR2", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 *= VAR2") ); 61 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 *= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 *= VAR2; VAR1") ); 64 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=1; VAR1 *= VAR2", 0, eval("VAR1 = 0; VAR2=1; VAR1 *= VAR2") ); 65 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=1; VAR1 *= VAR2;VAR1", 0, eval("VAR1 = 0; VAR2=1; VAR1 *= VAR2;VAR1") ); 67 array[item++] = new TestCase( SECTION, "VAR1 = 0xFF; VAR2 = 0xA, VAR1 *= VAR2", 2550, eval("VAR1 = 0XFF; VAR2 = 0XA, VAR1 *= VAR2") ); 71 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2= Infinity; VAR1 *= VAR2", Number.NaN, eval("VAR1 = 0; VAR2 = Number.POSITIVE_INFINITY; VAR1 *= VAR2; VAR1") ); 72 array[item++] = new TestCase( SECTION, "VAR1 = -0; VAR2= Infinity; VAR1 *= VAR2", Number.NaN, eval("VAR1 = -0; VAR2 = Number.POSITIVE_INFINITY; VAR1 *= VAR2; VAR1") ); 73 array[item++] = new TestCase( SECTION, "VAR1 = -0; VAR2= -Infinity; VAR1 *= VAR2", Number.NaN, (…) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.1.1.js | 44 var array = new Array(); 47 array[array.length] = new TestCase( SECTION, "NaN", Number.NaN, NaN ); 48 array[array.length] = new TestCase( SECTION, "this.NaN", Number.NaN, this.NaN ); 49 array[array.length] = new TestCase( SECTION, "typeof NaN", "number", typeof NaN ); 51 return ( array );
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/ |
9.9-1.js | 48 // all tests must call a function that returns an array of TestCase objects. 52 var array = new Array(); 55 array[item++] = new TestCase( SECTION, "Object(true).valueOf()", true, (Object(true)).valueOf() ); 56 array[item++] = new TestCase( SECTION, "typeof Object(true)", "object", typeof Object(true) ); 57 array[item++] = new TestCase( SECTION, "(Object(true)).__proto__", Boolean.prototype, (Object(true)).__proto__ ); 59 array[item++] = new TestCase( SECTION, "Object(false).valueOf()", false, (Object(false)).valueOf() ); 60 array[item++] = new TestCase( SECTION, "typeof Object(false)", "object", typeof Object(false) ); 61 array[item++] = new TestCase( SECTION, "(Object(true)).__proto__", Boolean.prototype, (Object(true)).__proto__ ); 63 array[item++] = new TestCase( SECTION, "Object(0).valueOf()", 0, (Object(0)). (…) [all...] |
/external/webkit/Source/WebCore/page/ |
Crypto.idl | 34 void getRandomValues(in ArrayBufferView array) raises(DOMException);
|
/libcore/support/src/test/java/tests/support/ |
Support_TestResource.java | 21 final String array[] = {"Str1", "Str2", "Str3"}; field in class:Support_TestResource 27 { "parent4", "parentValue4" }, {"IntegerVal", 1}, {"StringArray", array}};
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/array/array.tuple/ |
get.pass.cpp | 10 // <array> 12 // template <size_t I, class T, size_t N> T& get(array<T, N>& a); 14 #include <array> 21 typedef std::array<T, 3> C;
|
/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);
|
/external/guava/guava/src/com/google/common/primitives/ |
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...] |
Doubles.java | 98 * {@code array}. Note that this always returns {@code false} when {@code 101 * @param array an array of {@code double} values, possibly empty 103 * @return {@code true} if {@code array[i] == target} for some value of {@code 106 public static boolean contains(double[] array, double target) { 107 for (double value : array) { 117 * {@code array}. Note that this always returns {@code -1} when {@code target} 120 * @param array an array of {@code double} values, possibly empty 122 * @return the least index {@code i} for which {@code array[i] == target}, o 375 double[] array = new double[len]; local 410 final double[] array; field in class:Doubles.DoubleArrayAsList [all...] |
Floats.java | 95 * {@code array}. Note that this always returns {@code false} when {@code 98 * @param array an array of {@code float} values, possibly empty 100 * @return {@code true} if {@code array[i] == target} for some value of {@code 103 public static boolean contains(float[] array, float target) { 104 for (float value : array) { 114 * {@code array}. Note that this always returns {@code -1} when {@code target} 117 * @param array an array of {@code float} values, possibly empty 119 * @return the least index {@code i} for which {@code array[i] == target}, o 372 float[] array = new float[len]; local 407 final float[] array; field in class:Floats.FloatArrayAsList [all...] |
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/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/ |
Chars.java | 112 * {@code array}. 114 * @param array an array of {@code char} values, possibly empty 116 * @return {@code true} if {@code array[i] == target} for some value of {@code 119 public static boolean contains(char[] array, char target) { 120 for (char value : array) { 130 * {@code array}. 132 * @param array an array of {@code char} values, possibly empty 134 * @return the least index {@code i} for which {@code array[i] == target}, o 381 char[] array = new char[len]; local 413 final char[] array; field in class:Chars.CharArrayAsList [all...] |
/external/skia/legacy/src/effects/ |
SkColorMatrixFilter.cpp | 13 static int32_t rowmul4(const int32_t array[], unsigned r, unsigned g, 15 return array[0] * r + array[1] * g + array[2] * b + array[3] * a + array[4]; 18 static int32_t rowmul3(const int32_t array[], unsigned r, unsigned g, 20 return array[0] * r + array[1] * g + array[2] * b + array[4] 25 const int32_t* SK_RESTRICT array = state->fArray; local 37 const int32_t* SK_RESTRICT array = state->fArray; local 48 const int32_t* SK_RESTRICT array = state->fArray; local 60 const int32_t* SK_RESTRICT array = state->fArray; local 71 const int32_t* SK_RESTRICT array = state->fArray; local 84 const int32_t* SK_RESTRICT array = state->fArray; local 96 const int32_t* SK_RESTRICT array = state->fArray; local 108 const int32_t* SK_RESTRICT array = state->fArray; local 130 int32_t* array = fState.fArray; local 331 int32_t* array = fState.fArray; local [all...] |
/external/clang/test/CodeGenCXX/ |
debug-info-global-ctor-dtor.cpp | 13 A array[2]; variable
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/ |
15.4.1.js | 24 ECMA Section: 15.4.1 The Array Constructor Called as a Function 26 Description: When Array is called as a function rather than as a 27 constructor, it creates and initializes a new array 28 object. Thus, the function call Array(...) is 29 equivalent to the object creationi new Array(...) with 39 var TITLE = "The Array Constructor Called as a Function"; 47 var array = new Array(); 50 array[item++] = new TestCase( SECTION, 51 "Array() +''" [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8.2.8.js | 49 var array = new Array(); 52 array[item++] = new TestCase( SECTION, "Math.exp.length", 1, Math.exp.length ); 54 array[item++] = new TestCase( SECTION, "Math.exp()", Number.NaN, Math.exp() ); 55 array[item++] = new TestCase( SECTION, "Math.exp(null)", 1, Math.exp(null) ); 56 array[item++] = new TestCase( SECTION, "Math.exp(void 0)", Number.NaN, Math.exp(void 0) ); 57 array[item++] = new TestCase( SECTION, "Math.exp(1)", Math.E, Math.exp(1) ); 58 array[item++] = new TestCase( SECTION, "Math.exp(true)", Math.E, Math.exp(true) ); 59 array[item++] = new TestCase( SECTION, "Math.exp(false)", 1, Math.exp(false) ); 61 array[item++] = new TestCase( SECTION, "Math.exp('1')", Math.E, Math.exp('1') ) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/ |
15.7.1.js | 53 var array = new Array(); 56 array[item++] = new TestCase(SECTION, "Number()", 0, Number() ); 57 array[item++] = new TestCase(SECTION, "Number(void 0)", Number.NaN, Number(void 0) ); 58 array[item++] = new TestCase(SECTION, "Number(null)", 0, Number(null) ); 59 array[item++] = new TestCase(SECTION, "Number()", 0, Number() ); 60 array[item++] = new TestCase(SECTION, "Number(new Number())", 0, Number( new Number() ) ); 61 array[item++] = new TestCase(SECTION, "Number(0)", 0, Number(0) ); 62 array[item++] = new TestCase(SECTION, "Number(1)", 1, Number(1) ); 63 array[item++] = new TestCase(SECTION, "Number(-1)", -1, Number(-1) ) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/ |
ListOfVariables.java | 25 ArrayList<TypeVariable<?>> array = new ArrayList<TypeVariable<?>>(); field in class:ListOfVariables 28 array.add(elem); 32 TypeVariable<?>[] a = new TypeVariable[array.size()]; 33 return array.toArray(a);
|
/external/v8/test/mjsunit/ |
array-shift.js | 28 // Check that shifting array of holes keeps it as array of holes 30 var array = new Array(10); 31 array.shift(); 32 assertFalse(0 in array); 35 // Now check the case with array of holes and some elements on prototype. 38 var array = new Array(len); 39 Array.prototype[3] = "@3" [all...] |
/libcore/luni/src/main/java/java/util/ |
Arrays.java | 21 import java.lang.reflect.Array; 129 contents = (T[]) Array.newInstance(ct, size); 144 * Returns a {@code List} of the objects in the specified array. The size of the 147 * array. 149 * @param array 150 * the array. 151 * @return a {@code List} of the elements of the specified array. 153 public static <T> List<T> asList(T... array) { 154 return new ArrayList<T>(array); 158 * Performs a binary search for {@code value} in the ascending sorted array {@code array} [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
EncodedArrayItem.java | 24 * Encoded array of constant values. 30 /** {@code non-null;} the array to represent */ 31 private final CstArray array; field in class:EncodedArrayItem 42 * @param array {@code non-null;} array to represent 44 public EncodedArrayItem(CstArray array) { 51 if (array == null) { 52 throw new NullPointerException("array == null"); 55 this.array = array; [all...] |