| /external/chromium_org/extensions/renderer/resources/ |
| utils.js | 29 * @param {Array.<Object.<string, ?>>} array_of_dictionaries 56 var schemaName = $Array.join($Array.slice(parts, 0, parts.length - 1), '.'); 77 * functions: ?Array.<string>, 78 * properties: ?Array.<string>, 79 * readonly: ?Array.<string>}} exposed The names of properties on the 90 $Array.forEach(exposed.functions, function(func) { 99 $Array.forEach(exposed.properties, function(prop) { 115 $Array.forEach(exposed.readonly, function(readonly) {
|
| /external/chromium_org/v8/test/webkit/ |
| prototypes.js | 30 shouldBe("([]).__proto__", "Array.prototype"); 36 shouldBe("Array.prototype.__proto__", "Object.prototype"); 41 shouldBe("Array.__proto__", "Object.__proto__"); 48 shouldBe("Object.getPrototypeOf([])", "Array.prototype"); 54 shouldBe("Object.getPrototypeOf(Array.prototype)", "Object.prototype"); 59 shouldBe("Object.getPrototypeOf(Array)", "Object.__proto__"); 66 shouldBeTrue("Array.prototype.isPrototypeOf([])"); 72 shouldBeTrue("Object.prototype.isPrototypeOf(Array.prototype)"); 76 shouldBeTrue("Object.__proto__.isPrototypeOf(Array)");
|
| /external/chromium_org/chrome/browser/ui/webui/omnibox/ |
| omnibox_ui_handler.cc | 32 class TypeConverter<mojo::Array<AutocompleteAdditionalInfoPtr>, 35 static mojo::Array<AutocompleteAdditionalInfoPtr> ConvertFrom( 37 mojo::Array<AutocompleteAdditionalInfoPtr> array(input.size()); 44 array[index] = item.Pass(); 46 return array.Pass(); 88 mojo::Array<AutocompleteAdditionalInfoPtr>::From(input.additional_info); 103 mojo::Array<AutocompleteMatchMojoPtr>::From(input->matches()); 137 mojo::Array<AutocompleteMatchMojoPtr>::From(matches); 140 mojo::Array<AutocompleteResultsForProviderMojoPtr>::From [all...] |
| /external/llvm/lib/Support/ |
| SmallPtrSet.cpp | 31 // Install the new array. Clear all the buckets to empty. 54 // If more than 3/4 of the array is full, grow. 57 // If fewer of 1/8 of the array is empty (meaning that many are filled with 105 const void *const *Array = CurArray; 109 if (Array[Bucket] == Ptr) 110 return Array+Bucket; 115 if (Array[Bucket] == getEmptyMarker()) 116 return Tombstone ? Tombstone : Array+Bucket; 120 if (Array[Bucket] == getTombstoneMarker() && !Tombstone) 121 Tombstone = Array+Bucket; // Remember the first tombstone found [all...] |
| /external/bison/src/ |
| system.h | 44 #define ARRAY_CARDINALITY(Array) (sizeof (Array) / sizeof *(Array))
|
| /external/chromium_org/v8/src/ |
| d8-readline.cc | 121 static Persistent<Array> current_completions; 124 Handle<Array> completions; 136 completions = Local<Array>::New(isolate, current_completions);
|
| /external/chromium_org/v8/test/mjsunit/ |
| array-length.js | 46 var a = new Array(); 61 var a = new Array(); 76 var a = new Array(); 82 var a = new Array(); 104 var a = new Array(); 110 Array.prototype.pop.apply(o);
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
| codegen.ml | 44 if Array.length params == Array.length args then () else 46 let args = Array.map codegen_expr args in 52 let doubles = Array.make (Array.length args) double_type in 72 Array.iteri (fun i a ->
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
| codegen.ml | 44 if Array.length params == Array.length args then () else 46 let args = Array.map codegen_expr args in 52 let doubles = Array.make (Array.length args) double_type in 72 Array.iteri (fun i a ->
|
| /external/llvm/include/llvm/CodeGen/ |
| LiveIntervalUnion.h | 180 // Array of LiveIntervalUnions. 181 class Array { 185 Array() : Size(0), LIUs(nullptr) {} 186 ~Array() { clear(); } 188 // Initialize the array to have Size entries.
|
| /external/llvm/lib/Transforms/Utils/ |
| ModuleUtils.cpp | 23 static void appendToGlobalArray(const char *Array, 32 if (GlobalVariable *GVCtor = M.getNamedGlobal(Array)) { 33 // If there is a global_ctors array, use the existing struct type, which can 69 GlobalValue::AppendingLinkage, NewInit, Array);
|
| /pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
| CameraInfoDialogFragment.java | 18 import java.lang.reflect.Array; 103 // Iterate an array-type value 105 int len = Array.getLength(val); 110 Array.get(val, i),
|
| /external/chromium_org/third_party/mesa/src/src/mesa/main/ |
| varray.c | 111 * \param attrib the attribute array index to update 120 * \param ptr the address (or offset inside VBO) of the array data 131 struct gl_client_array *array; local 138 * "Client vertex arrays - all vertex array attribute pointers must 139 * refer to buffer objects (section 2.9.2). The default vertex array 141 * VertexAttribPointer when no buffer object or no vertex array object 147 && (ctx->Array.ArrayObj == ctx->Array.DefaultArrayObj)) { 148 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(no array object bound)", 244 * organization of vertex array data are called while zero is boun 594 const struct gl_client_array *array; local 1166 struct gl_client_array *array; local [all...] |
| /external/mesa3d/src/mesa/main/ |
| varray.c | 111 * \param attrib the attribute array index to update 120 * \param ptr the address (or offset inside VBO) of the array data 131 struct gl_client_array *array; local 138 * "Client vertex arrays - all vertex array attribute pointers must 139 * refer to buffer objects (section 2.9.2). The default vertex array 141 * VertexAttribPointer when no buffer object or no vertex array object 147 && (ctx->Array.ArrayObj == ctx->Array.DefaultArrayObj)) { 148 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(no array object bound)", 244 * organization of vertex array data are called while zero is boun 594 const struct gl_client_array *array; local 1166 struct gl_client_array *array; local [all...] |
| /art/runtime/entrypoints/portable/ |
| portable_fillarray_entrypoints.cc | 26 mirror::Array* array, 33 if (UNLIKELY(array == NULL)) { 34 ThrowNullPointerException(NULL, "null array in FILL_ARRAY_DATA"); 37 DCHECK(array->IsArrayInstance() && !array->IsObjectArray()); 38 if (UNLIKELY(static_cast<int32_t>(payload->element_count) > array->GetLength())) { 43 array->GetLength(), payload->element_count - 1); 47 memcpy(array->GetRawData(payload->element_width, 0), payload->data, size_in_bytes);
|
| /art/runtime/entrypoints/quick/ |
| quick_fillarray_entrypoints.cc | 20 #include "mirror/array.h" 26 * Fill the array with predefined constant values, throwing exceptions if the array is null or 40 extern "C" int artHandleFillArrayDataFromCode(mirror::Array* array, 46 if (UNLIKELY(array == NULL)) { 47 ThrowNullPointerException(NULL, "null array in FILL_ARRAY_DATA"); 50 DCHECK(array->IsArrayInstance() && !array->IsObjectArray()); 51 if (UNLIKELY(static_cast<int32_t>(payload->element_count) > array->GetLength())) [all...] |
| /art/test/003-omnibus-opcodes/src/ |
| Main.java | 46 Array.run();
|
| /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
| JSystem.cs | 62 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length );
|
| /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
| JSystem.cs | 61 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length );
|
| /external/chromium_org/chrome/browser/resources/cryptotoken/ |
| sha256.js | 15 this._buf = new Array(64); 16 this._W = new Array(64); 17 this._pad = new Array(64); 53 * @param {Array.<number>} buf A 64 byte buffer 115 * @param {Array.<number>|Uint8Array} bytes The data 131 * @param {Array.<number>} bytes The data buffer 150 * @return {Array.<number>} the SHA256 hash value. 156 var digest = new Array(32);
|
| /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/ |
| chrome_ex_oauthsimple.js | 290 if ((this._parameters[pName]) instanceof Array) 322 if (!(result[keyToken[0]] instanceof Array)) 324 result[keyToken[0]] = Array(result[keyToken[0]],value); 343 if (string instanceof Array) 345 throw('Array passed to _oauthEscape'); 402 var elements = new Array(); 421 if (this._parameters[paramName] instanceof Array)
|
| /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/ |
| chrome_ex_oauthsimple.js | 290 if ((this._parameters[pName]) instanceof Array) 322 if (!(result[keyToken[0]] instanceof Array)) 324 result[keyToken[0]] = Array(result[keyToken[0]],value); 343 if (string instanceof Array) 345 throw('Array passed to _oauthEscape'); 402 var elements = new Array(); 421 if (this._parameters[paramName] instanceof Array)
|
| /external/chromium_org/chrome/renderer/resources/extensions/ |
| chrome_direct_setting.js | 10 var extendedSchema = $Array.slice(schema); 24 var setSchema = $Array.slice(
|
| chrome_setting.js | 10 var extendedSchema = $Array.slice(schema); 24 var setSchema = $Array.slice(
|
| /external/chromium_org/extensions/renderer/ |
| activity_log_converter_strategy.h | 34 virtual bool FromV8Array(v8::Handle<v8::Array> value,
|