Searched defs:Array (Results 101 - 125 of 184) sorted by relevance

12345678

/external/clang/tools/scan-build/
H A Dsorttable.js448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
488 resolve = Array;
/external/eigen/Eigen/src/Core/
H A DArray.h15 /** \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 class in namespace:Eigen
43 : public PlainObjectBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
47 typedef PlainObjectBase<Array> Base;
48 EIGEN_DENSE_PUBLIC_INTERFACE(Array)
110 EIGEN_STRONG_INLINE explicit Array() : Base() function in class:Eigen::Array
119 Array(internal::constructor_without_unaligned_array_assert) function in class:Eigen::Array
133 EIGEN_STRONG_INLINE explicit Array(Index dim) function in class:Eigen::Array
145 EIGEN_STRONG_INLINE Array(const T0& x, const T1& y) function in class:Eigen::Array
162 EIGEN_STRONG_INLINE Array(const Scalar& x, const Scalar& y, const Scalar& z) function in class:Eigen::Array
171 EIGEN_STRONG_INLINE Array(const Scalar& x, const Scalar& y, const Scalar& z, const Scalar& w) function in class:Eigen::Array
185 EIGEN_STRONG_INLINE Array(const ArrayBase<OtherDerived>& other) function in class:Eigen::Array
192 EIGEN_STRONG_INLINE Array(const Array& other) function in class:Eigen::Array
200 EIGEN_STRONG_INLINE Array(const ReturnByValue<OtherDerived>& other) function in class:Eigen::Array
209 EIGEN_STRONG_INLINE Array(const EigenBase<OtherDerived> &other) function in class:Eigen::Array
[all...]
H A DMap.h177 inline Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>
178 ::Array(const Scalar *data) function in class:Eigen::Array
180 this->_set_noalias(Eigen::Map<const Array>(data));
/external/liblzf/cs/
H A DCLZF.cs129 UInt32 FRST(byte[] Array,UInt32 ptr) argument
131 return (UInt32)(((Array[ptr]) << 8) | Array[ptr+1]);
134 UInt32 NEXT(UInt32 v,byte[] Array,UInt32 ptr) argument
136 return ((v) << 8) | Array[ptr+2];
/external/liblzf/src/org/liblzf/
H A DCLZF.java129 static int FRST(byte[] Array,int ptr) argument
131 return (int)((((Array[ptr]) << 8) & 0xff00) | (Array[ptr+1] & 0xff));
134 static int NEXT(int v,byte[] Array,int ptr) argument
136 return ((v) << 8) | (Array[ptr+2] & 0xff);
/external/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp23 static void appendToGlobalArray(const char *Array, argument
36 if (GlobalVariable * GVCtor = M.getNamedGlobal(Array)) {
56 GlobalValue::AppendingLinkage, NewInit, Array);
/external/llvm/unittests/Support/
H A DYAMLParserTest.cpp59 ExpectParseSuccess("Array with spaces", " [ ] ");
130 ExpectParseSuccess("Array of arrays", "[[]]");
187 yaml::SequenceNode *Array local
189 EXPECT_EQ(6, std::distance(Array->begin(), Array->end()));
/external/mesa3d/src/gallium/tools/trace/
H A Dmodel.py74 class Array(Node): class in inherits:Node
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A Dexterns.js67 /** @type {!Array.<!Node>} */ this.addedNodes = [];
68 /** @type {!Array.<!Node>} */ this.removedNodes = [];
73 * @param {function(!Array.<!WebKitMutation>)} callback
93 * @this {Array.<T>}
96 Array.prototype.remove = function(value, onlyFirst) {}
99 * @this {Array.<T>}
102 Array.prototype.keySet = function() {}
105 * @return {!Array.<!T>}
106 * @this {Array.<T>}
109 Array
88 Array.prototype.remove = function(value, onlyFirst) {} class
[all...]
H A DScriptFormatterWorker.js169 * @param {!{original: !Array.<number>, formatted: !Array.<number>}} mapping
192 * @param {!{original: !Array.<number>, formatted: !Array.<number>}} mapping
308 * @param {function(string, {formatted: !Array.<number>, original: !Array.<number>}, number, number, string)} formatFunction
326 Array.prototype.keySet = function()
324 Array.prototype.keySet = function() class
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
H A Dview.js11 Array.prototype.forEach.call(this.buttons, function(button) {
10 Array.prototype.forEach.call(this.buttons, function(button) { class
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
H A Dbackground.js28 window.results.data = new Array();
40 var benchmarks = new Array();
49 // Array Remove - By John Resig (MIT Licensed)
50 Array.prototype.remove = function(from, to) {
157 current_.startLoadResults = new Array(); // times to start
158 current_.commitLoadResults = new Array(); // times to commit
159 current_.docLoadResults = new Array(); // times to docload
160 current_.paintResults = new Array(); // times to paint
161 current_.totalResults = new Array(); // times to complete load
162 current_.KbytesRead = new Array();
47 Array.prototype.remove = function(from, to) { class
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Darray-sort.js193 Array.prototype.sort.call(obj);
209 var x = new Array(4);
213 Array.prototype.sort.call(x);
232 Array.prototype.sort.call(x);
257 Array.prototype.sort.call(x);
283 Array.prototype.sort.call(obj, function(a,b) { return (b < a) - (a < b); });
315 Array.prototype.sort.call(y);
364 Array.prototype.sort.call(x);
192 Array.prototype.sort.call(obj); class
H A Dstack-traces.js249 testTrace("testArrayNative", testArrayNative, ["Array.map (native)"]);
263 testTrace("testAnonymousMethod", testAnonymousMethod, ["Array.<anonymous>"]);
303 Array.prototype.push = function(x) { assertUnreachable(); };
304 Array.prototype.join = function(x) { assertUnreachable(); };
302 Array.prototype.push = function(x) { assertUnreachable(); }; class
H A Darray-feedback.js43 // support_smi_only_arrays = %HasFastSmiElements(new Array(1,2,3,4,5,6,7,8));
95 return Array();
109 return Array(arg);
126 return Array(arg1, arg2, arg3);
145 name = "Array";
158 return Array();
165 var oldArray = this.Array;
166 this.Array = function() { return ["hi"]; }; function
169 this.Array = oldArray;
178 return Array();
[all...]
/external/chromium_org/v8/tools/profviz/
H A Dcomposer.js28 Array.prototype.top = function() {
0 Array.prototype.top = function() { class
/external/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h180 // Array of LiveIntervalUnions.
181 class Array { class in class:llvm::LiveIntervalUnion
185 Array() : Size(0), LIUs(0) {} function in class:llvm::LiveIntervalUnion::Array
186 ~Array() { clear(); }
/external/v8/test/mjsunit/
H A Darray-sort.js193 Array.prototype.sort.call(obj);
209 var x = new Array(4);
213 Array.prototype.sort.call(x);
232 Array.prototype.sort.call(x);
257 Array.prototype.sort.call(x);
283 Array.prototype.sort.call(obj, function(a,b) { return (b < a) - (a < b); });
315 Array.prototype.sort.call(y);
364 Array.prototype.sort.call(x);
192 Array.prototype.sort.call(obj); class
/external/chromium_org/mojo/public/bindings/generators/
H A Dmojom.py79 class Array(Kind): class in inherits:Kind
/external/chromium_org/mojo/public/bindings/lib/
H A Darray.h20 class Array { class in namespace:mojo
26 Array() : data_(NULL) { function in class:mojo::Array
30 Array(const U& u, Buffer* buf = Buffer::current()) { function in class:mojo::Array
31 *this = TypeConverter<Array<T>,U>::ConvertFrom(u, buf);
35 Array& operator=(const U& u) {
36 *this = TypeConverter<Array<T>,U>::ConvertFrom(u, Buffer::current());
47 return TypeConverter<Array<T>,U>::ConvertTo(*this);
62 typedef typename Array<T>::Data Data;
63 typedef typename Array<T>::Traits_ Traits_;
77 Array<
92 Array(Wrap, const Data* data) : data_(data) {} function in class:mojo::Array
[all...]
/external/chromium_org/third_party/skia/include/utils/
H A DSkJSON.h27 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 { class in class:SkJSON
193 Array(Type, int count);
199 Array(cons
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersChecker.cpp46 void addSizeInfo(const Expr *Array, const Expr *Size,
61 void ObjCContainersChecker::addSizeInfo(const Expr *Array, const Expr *Size, argument
70 SVal ArrayRef = State->getSVal(Array, C.getLocationContext());
/external/clang/test/Sema/
H A Doffsetof.c66 typedef struct Array { int array[1]; } Array; typedef in typeref:struct:Array
67 int test4 = __builtin_offsetof(Array, array);
70 return __builtin_offsetof(Array, array[*(int*)0]); // expected-warning{{indirection of non-volatile null pointer}} expected-note{{__builtin_trap}}
/external/llvm/lib/Transforms/Instrumentation/
H A DProfilingUtils.cpp25 GlobalValue *Array,
53 if (Array) {
54 Args[2] = ConstantExpr::getGetElementPtr(Array, GEPIndices);
56 cast<ArrayType>(Array->getType()->getElementType())->getNumElements();
24 InsertProfilingInitCall(Function *MainFn, const char *FnName, GlobalValue *Array, PointerType *arrayType) argument
/external/skia/include/utils/
H A DSkJSON.h27 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 { class in class:SkJSON
193 Array(Type, int count);
199 Array(cons
[all...]

Completed in 1487 milliseconds

12345678