/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/massif/tests/ |
new-cpp.cpp | 14 int array[1000]; member in struct:__anon14247
|
/external/webkit/Source/WebCore/bindings/js/ |
JSFloat32ArrayCustom.cpp | 54 RefPtr<Float32Array> array = constructArrayBufferView<Float32Array, float>(exec); local 55 if (!array.get()) 58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
|
JSFloat64ArrayCustom.cpp | 54 RefPtr<Float64Array> array = constructArrayBufferView<Float64Array, double>(exec); local 55 if (!array.get()) 58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
|
JSInt16ArrayCustom.cpp | 54 RefPtr<Int16Array> array = constructArrayBufferView<Int16Array, short>(exec); local 55 if (!array.get()) 58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
|
JSInt32ArrayCustom.cpp | 54 RefPtr<Int32Array> array = constructArrayBufferView<Int32Array, int>(exec); local 55 if (!array.get()) 58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
|
JSInt8ArrayCustom.cpp | 55 RefPtr<Int8Array> array = constructArrayBufferView<Int8Array, signed char>(exec); local 56 if (!array.get()) 59 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
|
JSUint16ArrayCustom.cpp | 54 RefPtr<Uint16Array> array = constructArrayBufferView<Uint16Array, unsigned short>(exec); local 55 if (!array.get()) 58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
|
JSUint32ArrayCustom.cpp | 54 RefPtr<Uint32Array> array = constructArrayBufferView<Uint32Array, unsigned int>(exec); local 55 if (!array.get()) 58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
|
JSUint8ArrayCustom.cpp | 54 RefPtr<Uint8Array> array = constructArrayBufferView<Uint8Array, unsigned char>(exec); local 55 if (!array.get()) 58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
InjectedBundlePageContextMenuClient.cpp | 55 RefPtr<ImmutableArray> array = adoptRef(toImpl(newMenuWK)); local 60 if (!array || !array->size()) 63 size_t size = array->size(); 65 WebContextMenuItem* item = array->at<WebContextMenuItem>(i);
|
/libcore/support/src/test/java/tests/support/ |
Support_Proxy_I1.java | 23 int[] array(long[] f); method in interface:Support_Proxy_I1
|
Support_Proxy_I2.java | 22 int[] array(long[] f); method in interface:Support_Proxy_I2
|
Support_TestResource.java | 21 final String array[] = {"Str1", "Str2", "Str3"}; field in class:Support_TestResource 27 { "parent4", "parentValue4" }, {"IntegerVal", 1}, {"StringArray", 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);
|
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/ |
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);
|
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);
|
/dalvik/tests/049-show-object/src/ |
Main.java | 27 Object[] array = new Object[5]; local 28 showObject(array); 31 array = niftyStrings; 32 showObject(array);
|
/dalvik/tests/058-enum-order/src/ |
Main.java | 26 Muffin[] array = Muffin.class.getEnumConstants(); local 27 for (Muffin m : array) {
|
/dalvik/tests/081-hot-exceptions/src/ |
Main.java | 19 int[] array; field in class:Main.ArrayObj 22 return array[i];
|
/external/clang/test/CXX/expr/expr.unary/expr.sizeof/ |
p5-0x.cpp | 23 any array[sizeof...(inits)] = { inits... }; local
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
p17.cpp | 20 int array[5]; local 21 h(array); 22 h<5>(array); 28 int array[5]; local 29 h(array, a); // expected-error{{no matching function for call}} 30 h<5>(array, a);
|
/external/clang/test/CodeGenCXX/ |
array-construction.cpp | 26 xpto array[2][3][4]; local 30 printf("array[%d][%d][%d] = {%d, %f}\n", 31 h, i, j, array[h][i][j].i, array[h][i][j].f);
|
/external/clang/test/SemaCXX/ |
cast-conversion.cpp | 34 const char array[2] = { 'a', 'b' }; local 35 make_X0(array);
|