| /external/chromium_org/v8/test/webkit/ |
| function-apply-aliased.js | 75 // Blow the stack with a sparse array 76 shouldThrow("myFunction.apply(null, new Array(5000000))"); 77 // Blow the stack with a sparse array that is sufficiently large to cause int overflow 78 shouldThrow("myFunction.apply(null, new Array(1 << 30))"); 84 shouldThrow("recurseArguments.apply(null, new Array(50000))");
|
| /external/clang/lib/AST/ |
| APValue.cpp | 39 /// Path - The sequence of base classes, fields and array indices to follow to 159 case Array: 202 else if (Kind == Array) 222 case Array: 300 case Array: 301 OS << "Array: "; 458 // The lvalue must refer to an array. 474 case APValue::Array: { 639 Kind = Array;
|
| /external/chromium_org/v8/test/cctest/ |
| test-types.cc | 155 array = isolate->factory()->NewJSArray(20); 161 ArrayConstant = Type::Constant(array, region); 168 values.push_back(array); 174 NumberArray = Type::Array(Number, region); 175 StringArray = Type::Array(String, region); 176 AnyArray = Type::Array(Any, region); 196 Handle<i::JSArray> array; member in class:Types 247 return Type::Array(element, region_); 309 case 4: { // array 311 return Type::Array(element, region_) 595 TypeHandle array = T.Array1(type); local 602 TypeHandle array = T.Array1(type); local [all...] |
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/ |
| speech_rule.js | 223 * @return {Array.<string>} List of translated attribute:value strings. 238 * @param {Array.<cvox.SpeechRule.Component>} components The input rule. 242 /** @type {Array.<cvox.SpeechRule.Component>} */ 281 * @param {Array.<string>=} opt_constraints A list of constraint functions. 288 /** @type {!Array.<string>} */ 309 * @return {Array.<string>} A list of single component strings.
|
| speech_rule_functions.js | 62 * @typedef {function(!Node): Array.<Node>} 102 * @typedef {function(Array.<Node>, ?string): (function(): string)}
|
| /external/chromium_org/chrome/browser/resources/standalone/ |
| standalone_hack.js | 69 // We don't want to hand out our array directly because the NTP will 70 // assume it owns the array and is free to modify it. For now we make a 71 // one-level deep copy of the array (since cloning the whole thing is 77 * Like Array.prototype.indexOf but calls a predicate to test for match 79 * @param {Array} array The array to search. 84 function indexOfPred(array, predicate) { 85 for (var i = 0; i < array.length; i++) { 86 if (predicate(array[i]) [all...] |
| /external/chromium_org/mojo/services/view_manager/ |
| root_node_manager.cc | 84 Array<Id> roots(0); 90 const Array<Id>& node_ids) { 221 const Array<Id>& node_ids) {
|
| /external/chromium_org/third_party/WebKit/Source/core/inspector/ |
| InspectorStyleSheet.h | 120 PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> > buildArrayForComputedStyle() const; 211 PassRefPtr<TypeBuilder::CSS::CSSRule> buildObjectForRule(CSSStyleRule*, PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSMedia> >); 246 PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::Selector> > selectorsFromSource(const CSSRuleSourceData*, const String&);
|
| /external/eigen/test/ |
| vectorwiseop.cpp | 18 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> ColVectorType; 19 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType; 200 CALL_SUBTEST_2(vectorwiseop_array(Array<double, 3, 2>()));
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
| codegen.ml | 62 if Array.length params == Array.length args then () else 64 let args = Array.map codegen_expr args in 192 let doubles = Array.make (Array.length args) double_type in 212 Array.iteri (fun i a ->
|
| /libcore/json/src/main/java/org/json/ |
| JSONArray.java | 19 import java.lang.reflect.Array; 65 * Unsupported values are not permitted and will yield an array in an 79 * Creates a new {@code JSONArray} with values from the next array in the 103 * @param json a JSON-encoded string containing an array. 112 * Creates a new {@code JSONArray} with values from the given primitive array. 114 public JSONArray(Object array) throws JSONException { 115 if (!array.getClass().isArray()) { 116 throw new JSONException("Not a primitive array: " + array.getClass()); 118 final int length = Array.getLength(array) [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
| snmp.h | 223 #define DEFINE_SIZEOF(Array) (sizeof(Array)/sizeof((Array)[0]))
|
| /art/runtime/entrypoints/ |
| entrypoint_utils.cc | 56 ThrowRuntimeException("Bad filled array request for type %s", 63 "Found type %s; filled-new-array not implemented for anything but 'int'", 79 // Helper function to allocate array for FILLED_NEW_ARRAY. 80 mirror::Array* CheckAndAllocArrayFromCode(uint32_t type_idx, mirror::ArtMethod* referrer, 89 // Always go slow path for now, filled new array is not common. 93 return mirror::Array::Alloc<false>(self, klass, component_count, klass->GetComponentSize(), 97 // Helper function to allocate array for FILLED_NEW_ARRAY. 98 mirror::Array* CheckAndAllocArrayFromCodeInstrumented(uint32_t type_idx, 112 return mirror::Array::Alloc<true>(self, klass, component_count, klass->GetComponentSize(), 239 // Build argument array possibly triggering GC [all...] |
| /external/chromium_org/chrome/browser/resources/chromeos/braille_ime/ |
| externs.js | 25 * @param {Array.<string>=} opt_extraInfoSpec 51 * @param {{engineID: string, items: Array.<chrome.input.ime.MenuItem>}}
|
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ |
| keyboard_handler.js | 44 * Converts the key bindings table into an array that is sorted by the lengths 49 * @return {Array.<Array.<string>>} The sorted key bindings table in 50 * array form. Each entry in the array is itself an array containing the
|
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/ |
| chromevox_unittest_base.js | 48 * @param {Array.<string>} array1 The expected array. 49 * @param {Array.<string>} array2 The test array.
|
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/ |
| table_shifter.js | 74 * found : Array.<number> 75 * required: (Array.<string>|null|undefined)
|
| /external/chromium_org/chrome/renderer/resources/extensions/ |
| omnibox_custom_bindings.js | 26 // and 'descriptionStyles', which is an array of style objects in a format 68 $Array.push(result.descriptionStyles, style); 108 $Array.push(suggestions, parseResult);
|
| /external/chromium_org/chrome/test/base/ |
| v8_unit_test.cc | 109 v8::Local<v8::Array> params = v8::Array::New(isolate()); 296 v8::Handle<v8::Array> testResult(args[1].As<v8::Array>());
|
| /external/chromium_org/content/renderer/ |
| v8_value_converter_impl.h | 63 base::Value* FromV8Array(v8::Handle<v8::Array> array,
|
| /external/chromium_org/extensions/renderer/ |
| script_context.h | 83 void DispatchEvent(const char* event_name, v8::Handle<v8::Array> args) const;
|
| /external/chromium_org/mojo/examples/image_viewer/ |
| image_viewer.cc | 67 int GetContentLength(const Array<String>& headers) {
|
| /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
| V8FileCustom.cpp | 58 length = v8::Local<v8::Array>::Cast(info[0])->Length();
|
| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
| InspectorFrontendHostStub.js | 273 var args = Array.prototype.slice.call(arguments, 1);
|
| /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/polyfills/ |
| cachePolyfill.js | 34 var flatten = Array.prototype.concat.apply.bind(Array.prototype.concat, []);
|