HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 26 - 50 of 1581) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/device/serial/
serial_device_enumerator_win.h 19 virtual mojo::Array<SerialDeviceInfoPtr> GetDevices() OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
UIString.js 39 return String.vsprintf(string, Array.prototype.slice.call(arguments, 1));
  /external/chromium_org/third_party/skia/include/utils/
SkJSON.h 27 class Array;
48 * parameter is copied, but ownership of the Array parameter is
49 * transferred. The Array parameter may be null, but the name must
52 void addArray(const char name[], Array* value);
90 bool findArray(const char name[], Array** = NULL) const;
146 Array* arrayValue() const;
184 friend class Array;
187 class Array {
190 * Creates an array with the specified Type and element count. All
193 Array(Type, int count)
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p6.cpp 4 template<class T> class Array { /* ... */ };
5 template<class T> void sort(Array<T>& v) { }
7 // instantiate sort(Array<int>&) - template-argument deduced
8 template void sort<>(Array<int>&);
10 template void sort(Array<long>&);
  /external/clang/test/CodeGen/
2002-03-12-ArrayInitialization.c 4 specified for an array.
17 struct Test Array[10] = { { 2, 12.0 }, { 3, 24.0 } };
  /external/skia/include/utils/
SkJSON.h 27 class Array;
48 * parameter is copied, but ownership of the Array parameter is
49 * transferred. The Array parameter may be null, but the name must
52 void addArray(const char name[], Array* value);
90 bool findArray(const char name[], Array** = NULL) const;
146 Array* arrayValue() const;
184 friend class Array;
187 class Array {
190 * Creates an array with the specified Type and element count. All
193 Array(Type, int count)
    [all...]
  /external/eigen/Eigen/src/Core/
Array.h 15 /** \class Array
20 * The %Array class is very similar to the Matrix class. It provides
22 * %Array and the %Matrix class is primarily in the API: the API for the
23 * %Array class provides easy access to coefficient-wise operations, while the
34 struct traits<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > : traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
37 typedef ArrayBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > XprBase;
42 class Array
43 : public PlainObjectBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
47 typedef PlainObjectBase<Array> Base;
48 EIGEN_DENSE_PUBLIC_INTERFACE(Array)
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
array-functions-non-arrays.js 25 "Test some array functions on non-array objects."
102 shouldBe("Array.prototype.toString.call({})", '"' + ({}).toString() + '"');
103 shouldBe("Array.prototype.toString.call(new Date)", '"' + Object.prototype.toString.call(new Date) + '"');
104 shouldBe("Array.prototype.toString.call({sort: function() { return 'sort' }})", '"' + Object.prototype.toString.call({}) + '"');
105 shouldBe("Array.prototype.toString.call({join: function() { return 'join' }})", '"join"');
106 shouldBe("Array.prototype.toString.call({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3})", '"a,b,c"');
107 shouldBe("({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3}).toString()", '"a,b,c"');
108 shouldBe("Array.prototype.toString.call({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3, join: func (…)
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-builtinbust-6.js 5 // Test that Array builtins can be called on primitive values.
9 Array.prototype.join.call(v);
10 Array.prototype.pop.call(v);
11 Array.prototype.push.call(v);
12 Array.prototype.reverse.call(v);
13 Array.prototype.shift.call(v);
14 Array.prototype.slice.call(v);
15 Array.prototype.splice.call(v);
16 Array.prototype.unshift.call(v);
33 test_receiver(11, "Array.prototype.join.call(11)"
    [all...]
regress-3158.js 7 Array.prototype[0] = 'a';
8 delete Array.prototype[0];
14 var a = new Array(100000);
22 Array.prototype[0] = 'a';
regress-sort-arguments.js 8 Array.prototype.sort.apply(a);
10 Array.prototype.sort.apply(a);
  /external/clang/test/CodeGenCXX/
exception-spec-decay.cpp 2 typedef int Array[10];
4 void foo() throw (Array) {
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFwd.h 36 typedef Array<Scalar,1,OrderAtCompileTime> BasisVectorType;
39 typedef Array<Scalar,Dynamic,Dynamic,RowMajor,NumOfDerivativesAtCompileTime,OrderAtCompileTime> BasisDerivativeType;
42 typedef Array<Scalar,Dimension,Dynamic,ColMajor,Dimension,NumOfDerivativesAtCompileTime> DerivativeType;
45 typedef Array<Scalar,Dimension,1> PointType;
48 typedef Array<Scalar,1,Dynamic> KnotVectorType;
51 typedef Array<Scalar,Dimension,Dynamic> ControlPointVectorType;
67 typedef Array<_Scalar,Dynamic,Dynamic,RowMajor,NumOfDerivativesAtCompileTime,OrderAtCompileTime> BasisDerivativeType;
70 typedef Array<_Scalar,_Dim,Dynamic,ColMajor,_Dim,NumOfDerivativesAtCompileTime> DerivativeType;
  /ndk/tests/device/test-stlport_shared-exception/jni/
array5.cpp 6 // array of class.
35 struct Array
37 A array[2][2][2]; member in struct:Array
45 Array A;
  /ndk/tests/device/test-stlport_static-exception/jni/
array5.cpp 6 // array of class.
35 struct Array
37 A array[2][2][2]; member in struct:Array
45 Array A;
  /external/chromium_org/mojo/public/cpp/bindings/
array.h 20 // Provides read-only access to array data.
22 class Array {
23 MOJO_MOVE_ONLY_TYPE_FOR_CPP_03(Array, RValue)
35 Array() : is_null_(true) {}
36 explicit Array(size_t size) : vec_(size), is_null_(false) {
39 ~Array() { Traits::Finalize(&vec_); }
41 Array(RValue other) : is_null_(true) { Take(other.object); }
42 Array& operator=(RValue other) {
47 static Array New(size_t size) {
48 return Array(size).Pass()
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p6.cpp 42 template<class T> class Array { /* ... */ };
44 template<class T> void sort(Array<T>& v) { /* ... */ }
48 void f(Array<String>& v) {
52 // sort(Array<T>&), T is String
55 template<> void sort<String>(Array<String>& v); // // expected-error{{after instantiation}}
56 template<> void sort<>(Array<char*>& v); // OK: sort<char*> not yet used
  /external/llvm/lib/Analysis/
LibCallSemantics.cpp 52 const LibCallFunctionInfo *Array = getFunctionInfoArray();
53 if (!Array) return nullptr;
55 // We now have the array of entries. Populate the StringMap.
56 for (unsigned i = 0; Array[i].Name; ++i)
57 (*Map)[Array[i].Name] = Array+i;
  /external/deqp/modules/gles2/functional/
es2fVertexArrayTest.cpp 21 * \brief Vertex array and buffer tests
72 Array::Usage usages[] = {Array::USAGE_STATIC_DRAW, Array::USAGE_STREAM_DRAW, Array::USAGE_DYNAMIC_DRAW};
75 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE}
    [all...]
  /external/chromium_org/v8/test/webkit/
array-proto-func-length-getter-except.js 25 "This test checks that functions on the array prototype correctly handle exceptions from length getters when called on non-array objects."
47 shouldBeTrue("test(Array.prototype.join)");
48 shouldBeTrue("test(Array.prototype.pop)");
49 shouldBeTrue("test(Array.prototype.push)");
50 shouldBeTrue("test(Array.prototype.reverse)");
51 shouldBeTrue("test(Array.prototype.shift)");
52 shouldBeTrue("test(Array.prototype.slice)");
53 shouldBeTrue("test(Array.prototype.sort)");
54 shouldBeTrue("test(Array.prototype.splice)")
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-constructor.js 33 var a = new Array();
34 var b = Array();
46 var a = new Array(j);
47 var b = Array(j);
59 a = new Array(0, 1);
61 a = new Array(0, 1, 2);
63 a = new Array(0, 1, 2, 3);
65 a = new Array(0, 1, 2, 3, 4);
67 a = new Array(0, 1, 2, 3, 4, 5);
69 a = new Array(0, 1, 2, 3, 4, 5, 6)
    [all...]
elements-transition-hoisting.js 35 support_smi_only_arrays = %HasFastSmiElements(new Array(1,2,3,4,5,6));
44 // Make sure that a simple elements array transitions inside a loop before
45 // stores to an array gets hoisted in a way that doesn't generate a deopt in
56 testDoubleConversion4(new Array(5));
57 testDoubleConversion4(new Array(5)); // Call twice to make sure that second
61 testDoubleConversion4(new Array(5));
62 testDoubleConversion4(new Array(5));
82 testExactMapHoisting(new Array(5));
83 testExactMapHoisting(new Array(5)); // Call twice to make sure that second
87 testExactMapHoisting(new Array(5))
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-member-initializers.cpp 39 template<typename T> struct Array {
41 Array() : a() {}
43 Array<int> s;
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
GwtPlatform.java 21 import com.google.gwt.lang.Array;
37 public static <T> T[] clone(T[] array) {
38 return (T[]) Array.clone(array);
42 return Array.createFrom(reference, length);
  /external/chromium_org/mojo/public/cpp/bindings/lib/
array_serialization.h 16 inline size_t GetSerializedSize_(const Array<E>& input);
19 inline void Serialize_(Array<E> input, internal::Buffer* buf,
22 inline void Deserialize_(internal::Array_Data<F>* data, Array<E>* output);
31 static size_t GetSerializedSize(const Array<E>& input) {
35 Array<E> input, Buffer* buf, Array_Data<F>* output) {
39 Array_Data<F>* input, Array<E>* output) {
47 static size_t GetSerializedSize(const Array<bool>& input) {
51 Array<bool> input, Buffer* buf, Array_Data<bool>* output) {
57 Array_Data<bool>* input, Array<bool>* output) {
58 Array<bool> result(input->size())
    [all...]

Completed in 1184 milliseconds

12 3 4 5 6 7 8 91011>>