HomeSort by relevance Sort by last modified time
    Searched defs:Array (Results 1 - 25 of 303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p11.cpp 4 template<class T> class Array { /* ... */ };
5 template<class T> void sort(Array<T>& v);
7 // explicit specialization for sort(Array<int>&)
9 template<> void sort(Array<int>&);
  /external/clang/test/CodeGenCXX/
pr20897.cpp 32 int Array[1];
exception-spec-decay.cpp 2 typedef int Array[10];
4 void foo() throw (Array) {
  /device/linaro/bootloader/edk2/ShellPkg/Application/ShellSortTestApp/
ShellSortTestApp.c 65 INTN Array[10];
67 Array[0] = 2;
68 Array[1] = 3;
69 Array[2] = 4;
70 Array[3] = 1;
71 Array[4] = 5;
72 Array[5] = 6;
73 Array[6] = 7;
74 Array[7] = 8;
75 Array[8] = 1;
    [all...]
  /external/clang/test/CodeGen/
2002-01-24-ComplexSpaceInType.c 4 // %Array = uninitialized global [10 x %complex int]
9 struct { int X, Y; } Array[10];
  /external/libcxx/test/libcxx/utilities/function.objects/func.require/
invoke.pass.cpp 18 struct Array
25 Array<char, 1>::type& f1();
26 Array<char, 2>::type& f2() const;
28 Array<char, 1>::type& g1() &;
29 Array<char, 2>::type& g2() const &;
30 Array<char, 3>::type& g3() &&;
31 Array<char, 4>::type& g4() const &&;
  /external/libcxxabi/test/
catch_array_01.pass.cpp 10 // Can you have a catch clause of array type that catches anything?
12 // GCC incorrectly allows array types to be caught by reference.
21 typedef char Array[4];
22 Array a = {'H', 'i', '!', 0};
28 catch (Array& b) // can't catch char*
catch_array_02.pass.cpp 10 // Can you have a catch clause of array type that catches anything?
17 typedef char Array[4];
18 Array a = {'H', 'i', '!', 0};
24 catch (Array b) // equivalent to char*
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/tests/
catch_array_01.cpp 10 // Can you have a catch clause of array type that catches anything?
16 typedef char Array[4];
17 Array a = {'H', 'i', '!', 0};
23 catch (Array& b) // can't catch char*
catch_array_02.cpp 10 // Can you have a catch clause of array type that catches anything?
16 typedef char Array[4];
17 Array a = {'H', 'i', '!', 0};
23 catch (Array b) // equivalent to char*
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.require/
invoke.pass.cpp 20 struct Array
27 Array<char, 1>::type& f1();
28 Array<char, 2>::type& f2() const;
30 Array<char, 1>::type& g1() &;
31 Array<char, 2>::type& g2() const &;
33 Array<char, 3>::type& g3() &&;
34 Array<char, 4>::type& g4() const &&;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
catch_array_01.pass.cpp 10 // Can you have a catch clause of array type that catches anything?
16 typedef char Array[4];
17 Array a = {'H', 'i', '!', 0};
23 catch (Array& b) // can't catch char*
catch_array_02.pass.cpp 10 // Can you have a catch clause of array type that catches anything?
16 typedef char Array[4];
17 Array a = {'H', 'i', '!', 0};
23 catch (Array b) // equivalent to char*
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/tests/
catch_array_01.cpp 10 // Can you have a catch clause of array type that catches anything?
16 typedef char Array[4];
17 Array a = {'H', 'i', '!', 0};
23 catch (Array& b) // can't catch char*
catch_array_02.cpp 10 // Can you have a catch clause of array type that catches anything?
16 typedef char Array[4];
17 Array a = {'H', 'i', '!', 0};
23 catch (Array b) // equivalent to char*
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/function.objects/func.require/
invoke.pass.cpp 18 struct Array
25 Array<char, 1>::type& f1();
26 Array<char, 2>::type& f2() const;
28 Array<char, 1>::type& g1() &;
29 Array<char, 2>::type& g2() const &;
30 Array<char, 3>::type& g3() &&;
31 Array<char, 4>::type& g4() const &&;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/test/
catch_array_01.pass.cpp 10 // Can you have a catch clause of array type that catches anything?
13 // GCC incorrectly allows array types to be caught by reference.
21 typedef char Array[4];
22 Array a = {'H', 'i', '!', 0};
28 catch (Array& b) // can't catch char*
catch_array_02.pass.cpp 10 // Can you have a catch clause of array type that catches anything?
16 typedef char Array[4];
17 Array a = {'H', 'i', '!', 0};
23 catch (Array b) // equivalent to char*
  /external/deqp/framework/common/
tcuArray.hpp 23 * \brief Templatized array class.
35 class Array
38 Array (void) {}
39 ~Array (void) {}
53 std::ostream& operator<< (std::ostream& stream, const Array<T, Size>& arr)
55 return stream << Format::Array<T*>(arr.getPtr(), arr.getPtr() + Size);
  /external/v8/tools/turbolizer/
monkey.js 5 Array.prototype.getStaggeredFromMiddle = function(i) {
14 Array.prototype.contains = function(obj) {
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ArrayTest.java 19 import java.lang.reflect.Array;
45 assertEquals(booleans[0], Array.getBoolean(booleans, 0));
46 try { Array.getBoolean(bytes, 0); fail(); } catch (IllegalArgumentException expected) {}
47 try { Array.getBoolean(chars, 0); fail(); } catch (IllegalArgumentException expected) {}
48 try { Array.getBoolean(doubles, 0); fail(); } catch (IllegalArgumentException expected) {}
49 try { Array.getBoolean(floats, 0); fail(); } catch (IllegalArgumentException expected) {}
50 try { Array.getBoolean(ints, 0); fail(); } catch (IllegalArgumentException expected) {}
51 try { Array.getBoolean(longs, 0); fail(); } catch (IllegalArgumentException expected) {}
52 try { Array.getBoolean(shorts, 0); fail(); } catch (IllegalArgumentException expected) {}
53 try { Array.getBoolean(null, 0); fail(); } catch (NullPointerException expected) {
    [all...]
OldAndroidArrayTest.java 19 import java.lang.reflect.Array;
23 * Test java.lang.reflect.Array methods.
28 Object intArray = Array.newInstance(Integer.TYPE, 2);
30 int[] array = (int[]) intArray; local
31 array[0] = 5;
32 Array.setInt(intArray, 1, 6);
34 assertEquals(5, Array.getInt(intArray, 0));
35 assertEquals(6, array[1]);
38 array[2] = 27;
44 assertEquals(2, array.length)
61 String[] array = (String[]) strArray; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ArrayTest.java 20 import java.lang.reflect.Array;
25 * java.lang.reflect.Array#get(java.lang.Object, int)
29 // java.lang.reflect.Array.get(java.lang.Object, int)
35 ret = Array.get(x, 0);
42 ret = Array.get(new Object(), 0);
48 fail("Passing non-array failed to throw exception");
52 ret = Array.get(x, 4);
66 ret = Array.get(y, 0);
73 ret = Array.get(new Object(), 0);
79 fail("Passing non-array failed to throw exception")
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-array.cpp 16 static_assert(sizeof(IntArray<10>) == sizeof(int) * 10, "Array size mismatch");
17 static_assert(sizeof(IntArray<1>) == sizeof(int) * 1, "Array size mismatch");
23 static_assert(sizeof(TenElementArray<int>) == sizeof(int) * 10, "Array size mismatch");
25 template<typename T, int N> class Array {
29 static_assert(sizeof(Array<int, 10>) == sizeof(int) * 10, "Array size mismatch");
  /art/test/045-reflect-array/src/
Main.java 5 import java.lang.reflect.Array;
8 * Test java.lang.reflect.Array.
27 intArray = Array.newInstance(Integer.TYPE, 2);
29 int[] array = (int[]) intArray; local
30 array[0] = 5;
31 Array.setInt(intArray, 1, 6);
33 if (Array.getInt(intArray, 0) != 5)
35 if (array[1] != 6)
38 array[2] = 27;
42 Array.setInt(intArray, 2, 27)
75 char[] array = (char[]) charArray; local
146 long[] array = (long[]) longArray; local
167 String[] array = (String[]) strArray; local
    [all...]

Completed in 5176 milliseconds

1 2 3 4 5 6 7 8 91011>>