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

1234567

/external/chromium_org/v8/test/mjsunit/
H A Darray-tostring.js28 // Array's toString should call the object's own join method, if one exists and
40 // On an Array object.
56 assertEquals("[object Array]", a3.toString());
60 a4.__proto__ = { toString: Array.prototype.toString };
61 // No join on Array.
62 assertEquals("[object Array]", a4.toString());
65 // On a non-Array object.
69 toString: Array.prototype.toString,
70 join: Array.prototype.join};
76 var o2 = {toString : Array
115 Array.prototype.toString = function() { assertUnreachable(); }; class
[all...]
/external/chromium_org/v8/test/webkit/fast/js/
H A Darguments.js59 Array.prototype.push.call(arguments, a);
64 Array.prototype.push.call(arguments, a);
69 Array.prototype.push.apply(arguments, arguments);
74 Array.prototype.push.apply(arguments, arguments);
58 Array.prototype.push.call(arguments, a); class
/external/deqp/framework/common/
H A DtcuMatrix.hpp33 class Array class in namespace:tcu
36 Array (void) {} function in class:tcu::Array
37 ~Array (void) {}
87 Array<T, Rows*Cols> getRowMajorData (void) const;
88 Array<T, Rows*Cols> getColumnMajorData (void) const;
429 Array<T, Rows*Cols> Matrix<T, Rows, Cols>::getColumnMajorData (void) const
431 Array<T, Rows*Cols> a;
440 Array<T, Rows*Cols> Matrix<T, Rows, Cols>::getRowMajorData (void) const
442 Array<T, Rows*Cols> a;
H A DtcuFormatUtil.hpp171 // Array formatters.
174 class Array class in namespace:tcu::Format
180 Array (const Iterator& begin_, const Iterator& end_) : begin(begin_), end(end_) {} function in class:tcu::Format::Array
194 std::ostream& operator<< (std::ostream& str, const Array<Iterator>& fmt)
211 return str << Array<const T*>(fmt.arr, fmt.arr+fmt.size);
269 inline Format::Array<Iterator> formatArray (const Iterator& begin, const Iterator& end)
271 return Format::Array<Iterator>(begin, end);
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dcparse.py127 class Array(Node,Parser): class in inherits:Node,Parser
298 node = Array()
H A Dgenpyx.py180 elif isinstance(node,Array):
185 class Array(object): class in inherits:object
354 if type(child)==Array and not child.has_size():
355 # mutate this mystery array into a pointer XX method: Array.to_pointer()
/external/chromium_org/tools/usb_gadget/
H A Dhid_descriptors.py104 Array = (1, False) variable
/external/chromium_org/v8/src/
H A Druntime.js22 var $Array = global.Array;
660 // NOTE: Setting the prototype for Array must take place as early as
665 %FunctionSetPrototype($Array, new $Array(0));
/external/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp241 llvm::yaml::SequenceNode *Array = dyn_cast<llvm::yaml::SequenceNode>(Root); local
242 if (!Array) {
246 for (llvm::yaml::SequenceNode::iterator AI = Array->begin(),
247 AE = Array->end();
/external/llvm/include/llvm/Bitcode/
H A DBitCodes.h94 Array = 3, // A sequence of fields, next field species elt encoding. enumerator in enum:llvm::BitCodeAbbrevOp::Encoding
122 case Array:
H A DBitstreamReader.h366 uint8_t Array[sizeof(word_t)] = {0}; local
368 BitStream->getBitcodeBytes().readBytes(NextChar, sizeof(Array), Array);
373 memcpy(&EndianValue, Array, sizeof(Array));
/external/llvm/lib/Target/R600/
H A DSIInsertWaits.cpp38 unsigned Array[3]; member in union:__anon26125::__anon26126
211 LastIssued.Array[i] += Increment.Array[i];
212 Sum += Increment.Array[i];
272 if (Required.Array[i] <= WaitedOn.Array[i])
278 unsigned Value = LastIssued.Array[i] - Required.Array[i];
281 Counts.Array[i] = std::min(Value, WaitCounts.Array[
[all...]
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromePageScript.js9 goog.typeOf=function(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
13 goog.bindJs_=function(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var c=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(c,d);return a.apply(b,c)}}return function(){return a.apply(b,arguments)}};goog.bind=function(a,b,c){Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?goog.bind=goog.bindNative_:goog.bind=goog.bindJs_;return goog.bind.apply(null,arguments)}; class
14 goog.partial=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}};goog.mixin=function(a,b){for(var c in b)a[c]=b[c]};goog.now=goog.TRUSTED_SITE&&Date.now||function(){return+new Date};
17 goog.getMsg=function(a,b){b&&(a=a.replace(/\{\$([^}]+)}/g,function(a,d){return d in b?b[d]:a}));return a};goog.getMsgWithFallback=function(a){return a};goog.exportSymbol=function(a,b,c){goog.exportPath_(a,b,c)};goog.exportProperty=function(a,b,c){a[b]=c};goog.inherits=function(a,b){function c(){}c.prototype=b.prototype;a.superClass_=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.base=function(a,c,f){var g=Array.prototype.slice.call(arguments,2);return b.prototype[c].apply(a,g)}};
18 goog.base=function(a,b,c){var d=arguments.callee.caller;if(goog.STRICT_MODE_COMPATIBLE||goog.DEBUG&&!d)throw Error("arguments.caller not defined. goog.base() cannot be used with strict mode code. See http://www.ecma-international.org/ecma-262/5.1/#sec-C");if(d.superClass_)return d.superClass_.constructor.apply(a,Array.prototype.slice.call(arguments,1));for(var e=Array.prototype.slice.call(arguments,2),f=!1,g=a.constructor;g;g=g.superClass_&&g.superClass_.constructor)if(g.prototype[b]===d)f=!0;else if(f)return g.prototype[b].apply(a,
20 goog.MODIFY_FUNCTION_PROTOTYPES&&(Function.prototype.bind=Function.prototype.bind||function(a,b){if(1<arguments.length){var c=Array
[all...]
H A DchromeVoxKbExplorerScript.js9 goog.typeOf=function(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
13 goog.bindJs_=function(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var c=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(c,d);return a.apply(b,c)}}return function(){return a.apply(b,arguments)}};goog.bind=function(a,b,c){goog.bind=Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?goog.bindNative_:goog.bindJs_;return goog.bind.apply(null,arguments)}; class
14 goog.partial=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}};goog.mixin=function(a,b){for(var c in b)a[c]=b[c]};goog.now=goog.TRUSTED_SITE&&Date.now||function(){return+new Date};
17 goog.getMsg=function(a,b){b&&(a=a.replace(/\{\$([^}]+)}/g,function(a,d){return d in b?b[d]:a}));return a};goog.getMsgWithFallback=function(a){return a};goog.exportSymbol=function(a,b,c){goog.exportPath_(a,b,c)};goog.exportProperty=function(a,b,c){a[b]=c};goog.inherits=function(a,b){function c(){}c.prototype=b.prototype;a.superClass_=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.base=function(a,c,h){var f=Array.prototype.slice.call(arguments,2);return b.prototype[c].apply(a,f)}};
18 goog.base=function(a,b,c){var d=arguments.callee.caller;if(goog.STRICT_MODE_COMPATIBLE||goog.DEBUG&&!d)throw Error("arguments.caller not defined. goog.base() cannot be used with strict mode code. See http://www.ecma-international.org/ecma-262/5.1/#sec-C");if(d.superClass_)return d.superClass_.constructor.apply(a,Array.prototype.slice.call(arguments,1));for(var e=Array.prototype.slice.call(arguments,2),h=!1,f=a.constructor;f;f=f.superClass_&&f.superClass_.constructor)if(f.prototype[b]===d)h=!0;else if(h)return f.prototype[b].apply(a,
20 goog.MODIFY_FUNCTION_PROTOTYPES&&(Function.prototype.bind=Function.prototype.bind||function(a,b){if(1<arguments.length){var c=Array
[all...]
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/
H A Dbase.js374 * @param {Array} provides An array of strings with the names of the objects
376 * @param {Array} requires An array of strings with the names of the objects
561 // NOTE: JSCompiler can't optimize away Array#push.
573 * @type {!Array.<!Function>}
812 if (value instanceof Array) {
830 // We cannot always use constructor == Array or instanceof Array because
831 // different frames have different Array objects. In IE6, if the iframe
848 if ((className == '[object Array]' ||
865 // (value instanceof Array) an
1168 Array.prototype.unshift.apply(newArgs, boundArgs); class
[all...]
/external/chromium_org/ui/file_manager/file_manager/background/js/
H A Dtest_util.js141 * @return {Array.<string>} Array of selected files.
160 * @return {Array.<Array.<string>>} Array of rows.
184 * @param {Array.<string>=} opt_styleNames List of CSS property name to be
186 * @return {Array.<{attributes:Object.<string, string>, text:string,
197 return Array.prototype.map.call( class
591 * @param {Array.<Object>} taskList List of tasks to be returned in
623 * @return {Array
[all...]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dmodule.py207 class Array(ReferenceKind): class in inherits:ReferenceKind
371 return isinstance(kind, Array)
/external/chromium_org/third_party/libevent/
H A Devent_rpcgen.py77 if entry.Array():
112 if entry.Array():
152 if entry.Array():
220 if not entry.Array():
329 def Array(self): member in class:Entry
419 if self.Array():
427 if self.Array() and not self._can_be_array:
/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c9 int Array[12]; member in struct:FunStructTest
111 int SumArray(int Array[], int Num) { argument
114 Result += Array[i];
/external/clang/test/Parser/
H A Ddeclarators.c24 // Hard case for array decl, not Array[*].
25 int Array[*(int*)P+A]; local
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dbencher396 class Array class
617 if name.is_a? Array
/external/clang/include/clang/AST/
H A DAPValue.h37 /// [Vector: N * APValue], [Array: N * APValue]
50 Array, enumerator in enum:clang::APValue::ValueKind
188 bool isArray() const { return Kind == Array; }
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h518 SVal ArrayToPointer(Loc Array, QualType ElementTy) { argument
519 return StoreMgr->ArrayToPointer(Array, ElementTy);
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsplugin.c137 cmsBool CMSEXPORT _cmsReadUInt16Array(cmsIOHANDLER* io, cmsUInt32Number n, cmsUInt16Number* Array) argument
145 if (Array != NULL) {
146 if (!_cmsReadUInt16Number(io, Array + i)) return FALSE;
276 cmsBool CMSEXPORT _cmsWriteUInt16Array(cmsIOHANDLER* io, cmsUInt32Number n, const cmsUInt16Number* Array) argument
281 _cmsAssert(Array != NULL);
284 if (!_cmsWriteUInt16Number(io, Array[i])) return FALSE;
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Value.cpp146 CJS_Value::operator v8::Handle<v8::Array>() const
149 return v8::Handle<v8::Array>::Cast(JS_ToObject(m_pValue));
150 return v8::Handle<v8::Array>();
217 m_pValue = JS_NewObject2(m_isolate,(v8::Handle<v8::Array>)array);
459 void CJS_Array::Attach(v8::Handle<v8::Array> pArray)
492 CJS_Array:: operator v8::Handle<v8::Array>()

Completed in 2039 milliseconds

1234567