Searched defs:Array (Results 126 - 150 of 184) sorted by relevance

12345678

/external/chromium_org/chrome/browser/resources/inspect/
H A Dinspect.js11 chrome.send(command, Array.prototype.slice.call(arguments, 1));
135 Array.prototype.forEach.call(
214 Array.prototype.forEach.call(
322 Array.prototype.forEach.call(data.guests, function(guest) {
545 dialog.deactivatedNodes = Array.prototype.filter.call(
134 Array.prototype.forEach.call( class
/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/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/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/v8/src/
H A Druntime.js45 var $Array = global.Array;
673 // NOTE: Setting the prototype for Array must take place as early as
678 %FunctionSetPrototype($Array, new $Array(0));
/external/chromium_org/v8/test/cctest/
H A Dtest-types.cc124 Array(Type::Array(), isolate),
162 Handle<Type> Array; member in class:HandlifiedTypes
314 CheckSub(T.Array, T.Object);
318 CheckUnordered(T.Array, T.Function);
336 CheckSub(T.ArrayConstant1, T.Array);
386 CheckOverlap(T.Array, T.Object);
390 CheckDisjoint(T.Array, T.Function);
408 CheckOverlap(T.ArrayConstant1, T.Array);
448 CheckUnordered(T.Union(T.ObjectClass, T.ArrayClass), T.Array);
[all...]
/external/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp242 llvm::yaml::SequenceNode *Array = dyn_cast<llvm::yaml::SequenceNode>(Root); local
243 if (Array == NULL) {
247 for (llvm::yaml::SequenceNode::iterator AI = Array->begin(),
248 AE = Array->end();
/external/clang/test/Parser/
H A Ddeclarators.c24 // Hard case for array decl, not Array[*].
25 int Array[*(int*)P+A]; local
/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.h367 uint8_t Array[sizeof(word_t)] = {0}; local
369 BitStream->getBitcodeBytes().readBytes(NextChar, sizeof(Array), Array);
374 memcpy(&EndianValue, Array, sizeof(Array));
/external/llvm/lib/Target/R600/
H A DSIInsertWaits.cpp38 unsigned Array[3]; member in union:__anon22418::__anon22419
206 LastIssued.Array[i] += Increment.Array[i];
207 Sum += Increment.Array[i];
267 if (Required.Array[i] <= WaitedOn.Array[i])
273 unsigned Value = LastIssued.Array[i] - Required.Array[i];
276 Counts.Array[i] = std::min(Value, WaitCounts.Array[
[all...]
/external/v8/src/
H A Druntime.js45 var $Array = global.Array;
662 // NOTE: Setting the prototype for Array must take place as early as
667 %FunctionSetPrototype($Array, new $Array(0));
/external/chromium/chrome/browser/resources/
H A Dnew_new_tab.js1395 Array.prototype.forEach.call(elements, fixLinkUnderline);
1394 Array.prototype.forEach.call(elements, fixLinkUnderline); class
/external/chromium_org/chrome/third_party/chromevox/closure/
H A Dbase.js303 * @param {Array} provides An array of strings with the names of the objects
305 * @param {Array} requires An array of strings with the names of the objects
514 // NOTE: JSCompiler can't optimize away Array#push.
526 * @type {!Array.<!Function>}
766 if (value instanceof Array) {
784 // We cannot always use constructor == Array or instanceof Array because
785 // different frames have different Array objects. In IE6, if the iframe
802 if ((className == '[object Array]' ||
819 // (value instanceof Array) an
1124 Array.prototype.unshift.apply(newArgs, boundArgs); class
[all...]
/external/chromium/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/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/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
189 bool isArray() const { return Kind == Array; }
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h519 SVal ArrayToPointer(Loc Array, QualType ElementTy) { argument
520 return StoreMgr->ArrayToPointer(Array, ElementTy);
/external/chromium_org/chrome/third_party/chromevox/
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};
18 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)}};
19 goog.base=function(a,b,c){var d=arguments.callee.caller;if(goog.DEBUG&&!d)throw Error("arguments.caller not defined. goog.base() expects not to be running in strict mode. 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,
21 goog.MODIFY_FUNCTION_PROTOTYPES&&(Function.prototype.bind=Function.prototype.bind||function(a,b){if(1<arguments.length){var c=Array
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dheap-checker_unittest.cc1020 struct Array { struct
1021 Array() { function in struct:Array
1025 ~Array() { delete [] ptr; }
1026 Array(const Array& x) { function in struct:Array
1033 void operator=(const Array& x) {
1041 void append(const Array& x) {
1062 REGISTER_OBJ_MAKER(string, Array<char>* p = new(initialized) Array<char>();)
1064 Array<cha
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dheap-checker_unittest.cc1020 struct Array { struct
1021 Array() { function in struct:Array
1025 ~Array() { delete [] ptr; }
1026 Array(const Array& x) { function in struct:Array
1033 void operator=(const Array& x) {
1041 void append(const Array& x) {
1062 REGISTER_OBJ_MAKER(string, Array<char>* p = new(initialized) Array<char>();)
1064 Array<cha
[all...]

Completed in 4130 milliseconds

12345678