HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 526 - 550 of 1473) sorted by null

<<21222324252627282930>>

  /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...]
  /dalvik/tests/003-omnibus-opcodes/src/
Array.java 7 public class Array {
10 * Verify array contents.
73 System.out.println("Array.checkRange32");
128 System.out.println("Array.checkRange64");
175 System.out.println("Array.checkNegAlloc");
195 System.out.println("Array check...");
  /external/chromium/base/mac/
mac_util.h 159 CF_TO_NS_MUTABLE_CAST_DECL(Array);
  /external/chromium_org/chrome/browser/resources/chromeos/
keyboard_overlay.js 113 * @return {Array} Keyboard layout data.
188 * @return {Array} List of modifiers based on key event.
213 // make the result array
252 * @param {Array} list Container list.
264 * @param {Array} modifiers List of key modifiers.
265 * @return {Array} List of class names corresponding to specified params.
305 * @param {Array} modifiers Key Modifier list.
341 * @param {Array} modifiers Key Modifier list.
385 * @param {Array} modifiers Key Modifier list.
489 var array = layout[i]
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/
function_sequence.js 11 * @param {Array} steps array of functions to invoke in sequence.
129 * @param {Array.*} args // TODO(JSDOC).
  /external/chromium_org/chrome/renderer/resources/extensions/
bluetooth_custom_bindings.js 124 var args = $Array.slice(arguments);
134 $Array.push(args,
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_);
298 v8::Handle<v8::Array> testResult(args[1].As<v8::Array>());
  /external/chromium_org/chrome/third_party/chromevox/closure/
closure_preinit.js 34 * Array of urls that should be included next, in order.
35 * @type {Array}
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8FileCustom.cpp 59 length = v8::Local<v8::Array>::Cast(info[0])->Length();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelineMemoryOverview.js 70 var histogram = new Array(width);
  /external/chromium_org/third_party/WebKit/Source/web/
WebBindings.cpp 323 v8::Handle<v8::Array> result = v8::Array::New(isolate, data.size());
334 v8::Handle<v8::Array> result = v8::Array::New(isolate, data.size());
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
svn-log.js 76 var commits = Array.prototype.map.call(responseXML.getElementsByTagName('entry'), function(logentry) {
  /external/chromium_org/tools/code_coverage/third_party/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
449 // array-like enumeration
450 if (!Array.forEach) { // mozilla already supports this
451 Array.forEach = function(array, block, context) {
452 for (var i = 0; i < array.length; i++) {
453 block.call(context, array[i], i, array);
469 Array.forEach(string.split(""), function(chr, index) {
489 // the object is array-lik
    [all...]
  /external/chromium_org/v8/src/
arraybuffer.js 101 InstallFunctions($ArrayBuffer, DONT_ENUM, $Array(
105 InstallFunctions($ArrayBuffer.prototype, DONT_ENUM, $Array(
  /external/chromium_org/v8/test/mjsunit/
delete-non-configurable.js 43 // Delete elements of an Array.
44 var arr = new Array(length);
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-example-membrane.js 151 return wrap(fun.apply(that, Array.prototype.map.call(args, wrap)));
183 return wrap(new forward(Array.prototype.map.call(arguments, wrap)));
322 optWetHandler, Array.prototype.map.call(arguments, asWet)));
339 asWet(this), Array.prototype.map.call(arguments, asWet)));
345 return asDry(new forward(Array.prototype.map.call(arguments, asWet)));
389 optDryHandler, Array.prototype.map.call(arguments, asDry)));
406 asDry(this), Array.prototype.map.call(arguments, asDry)));
412 return asWet(new forward(Array.prototype.map.call(arguments, asDry)));
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1167.js 33 var a = new Array(n);
50 var a = new Array(n);
regress-crbug-3184.js 70 Object.extend( Array.prototype,
75 var res = new Array(len);
  /external/chromium_org/v8/test/webkit/
Object-create.js 34 shouldBe("Object.getPrototypeOf(Object.create(Array.prototype))", "Array.prototype");
array-reduce.js 28 function toObject(array) {
30 for (var i in array)
31 o[i] = array[i];
32 o.length = array.length;
33 o.reduce = Array.prototype.reduce;
36 function toUnorderedObject(array) {
39 for (var i in array)
42 o[props[i]] = array[props[i]];
43 o.length = array.length;
44 o.reduce = Array.prototype.reduce
    [all...]
  /external/clang/tools/scan-build/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
447 // array-like enumeration
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
450 for (var i = 0; i < array.length; i++) {
451 block.call(context, array[i], i, array);
467 Array.forEach(string.split(""), function(chr, index) {
487 // the object is array-lik
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 40 Ast.Call (id, Array.of_list (List.rev args))
104 Ast.Prototype (id, Array.of_list (List.rev args))
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
parser.ml 40 Ast.Call (id, Array.of_list (List.rev args))
104 Ast.Prototype (id, Array.of_list (List.rev args))
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
parser.ml 40 Ast.Call (id, Array.of_list (List.rev args))
104 Ast.Prototype (id, Array.of_list (List.rev args))

Completed in 444 milliseconds

<<21222324252627282930>>