HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 1 - 25 of 1582) 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/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*
  /ndk/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*
  /ndk/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*
  /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/opencv3/samples/winrt/ImageManipulations/
Constants.cpp 17 Platform::Array<Scenario>^ MainPage::scenariosInner = ref new Platform::Array<Scenario>
  /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...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/data/
ModelAnimation.java 19 import com.badlogic.gdx.utils.Array;
23 public Array<ModelNodeAnimation> nodeAnimations = new Array<ModelNodeAnimation>();
ModelData.java 21 import com.badlogic.gdx.utils.Array;
30 public final Array<ModelMesh> meshes = new Array<ModelMesh>();
31 public final Array<ModelMaterial> materials = new Array<ModelMaterial>();
32 public final Array<ModelNode> nodes = new Array<ModelNode>();
33 public final Array<ModelAnimation> animations = new Array<ModelAnimation>();
ModelNodeAnimation.java 21 import com.badlogic.gdx.utils.Array;
27 public Array<ModelNodeKeyframe<Vector3>> translation;
29 public Array<ModelNodeKeyframe<Quaternion>> rotation;
31 public Array<ModelNodeKeyframe<Vector3>> scaling;
  /external/libgdx/extensions/gdx-controllers/gdx-controllers/src/com/badlogic/gdx/controllers/
ControllerManagerStub.java 19 import com.badlogic.gdx.utils.Array;
24 Array<Controller> controllers = new Array<Controller>();
27 public Array<Controller> getControllers () {
ControllerManager.java 19 import com.badlogic.gdx.utils.Array;
23 public Array<Controller> getControllers ();
  /external/libcxx/test/std/utilities/meta/meta.rel/
is_convertible.pass.cpp 35 typedef char Array[1];
48 test_is_not_convertible<void,Array> ();
49 test_is_not_convertible<void,Array&> ();
59 test_is_not_convertible<Function, Array> ();
60 test_is_not_convertible<Function, Array&> ();
71 test_is_not_convertible<Function&, Array> ();
72 test_is_not_convertible<Function&, Array&> ();
83 test_is_not_convertible<Function*, Array> ();
84 test_is_not_convertible<Function*, Array&> ();
89 // Array
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.rel/
is_convertible.pass.cpp 35 typedef char Array[1];
55 test_is_not_convertible<void,Array> ();
56 test_is_not_convertible<void,Array&> ();
66 test_is_not_convertible<Function, Array> ();
67 test_is_not_convertible<Function, Array&> ();
78 test_is_not_convertible<Function&, Array> ();
79 test_is_not_convertible<Function&, Array&> ();
90 test_is_not_convertible<Function*, Array> ();
91 test_is_not_convertible<Function*, Array&> ();
96 // Array
    [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/deqp/modules/gles3/functional/
es3fVertexArrayTest.cpp 21 * \brief Vertex array and buffer tests
41 SingleVertexArrayUsageGroup (Context& context, Array::Usage usage);
50 Array::Usage m_usage;
53 SingleVertexArrayUsageGroup::SingleVertexArrayUsageGroup (Context& context, Array::Usage usage)
54 : TestCaseGroup (context, Array::usageTypeToString(usage).c_str(), Array::usageTypeToString(usage).c_str())
75 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE}
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
GroupPlug.java 19 import com.badlogic.gdx.utils.Array;
24 public void beforeGroup (Array<Decal> contents);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/
Animation.java 20 import com.badlogic.gdx.utils.Array;
33 public Array<NodeAnimation> nodeAnimations = new Array<NodeAnimation>();
  /external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp 21 * \brief Vertex array and buffer unaligned access stress tests
44 SingleVertexArrayUsageGroup (Context& context, Array::Usage usage);
53 Array::Usage m_usage;
56 SingleVertexArrayUsageGroup::SingleVertexArrayUsageGroup (Context& context, Array::Usage usage)
57 : TestCaseGroup (context, Array::usageTypeToString(usage).c_str(), Array::usageTypeToString(usage).c_str())
78 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE}
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p2.cpp 4 template<class T> class Array { void mf() { } };
6 template class Array<char>;
7 template void Array<int>::mf();
8 template<class T> void sort(Array<T>& v) { /* ... */ }
9 template void sort(Array<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);
  /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 381 milliseconds

1 2 3 4 5 6 7 8 91011>>