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

<<21222324252627282930>>

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 92 if Array.length params == Array.length args then () else
94 let args = Array.map codegen_expr args in
247 Array.iter (fun (var_name, init) ->
290 let doubles = Array.make (Array.length args) double_type in
310 Array.iteri (fun i a ->
323 Array.iteri (fun i ai ->
  /external/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/v8/test/mjsunit/regress/
regress-1167.js 33 var a = new Array(n);
50 var a = new Array(n);
regress-1713.js 38 do {arr.push(new Array(1024));} while (--N > 0);
56 return new Node(new Array(1024), LongList(N - 1, x));
regress-crbug-3184.js 70 Object.extend( Array.prototype,
75 var res = new Array(len);
  /frameworks/base/core/java/android/text/
SpannableStringInternal.java 21 import java.lang.reflect.Array;
243 ret = (Object[]) Array.newInstance(kind, spanCount - i + 1);
272 ret = (Object[]) Array.newInstance(kind, 1);
280 Object[] nret = (Object[]) Array.newInstance(kind, count);
  /frameworks/base/tools/preload/
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...]
  /libcore/luni/src/main/java/java/sql/
Connection.java 476 * auto-generated keys designated by a supplied array. If {@code sql} is an
575 * auto-generated keys designated by a supplied array. If {@code sql} is an
    [all...]
ResultSet.java 239 * of this {@code ResultSet} as a {@code java.sql.Array}.
243 * @return a {@code java.sql.Array} with the data from the column.
247 public Array getArray(int columnIndex) throws SQLException;
251 * java.sql.Array}.
255 * @return a {@code java.sql.Array} with the data from the specified column.
259 public Array getArray(String colName) throws SQLException;
453 * Gets the value of a column specified by column index as a byte array.
457 * @return a byte array containing the value of the column. {@code null} if
465 * Gets the value of a column specified by column name as a byte array.
469 * @return a byte array containing the value of the column. {@code null} i
    [all...]
  /libcore/luni/src/main/java/java/util/
AbstractCollection.java 20 import java.lang.reflect.Array;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ActionScript.stg 84 this.state.ruleMemo = new Array(<numRules>+1);<\n> <! index from 1..n !>
175 public static const tokenNames:Array = [
203 public override function get tokenNames():Array { return <grammar.composite.rootGrammar.recognizerName>.tokenNames; }
228 this.state.ruleMemo = new Array(<length(grammar.allImportedRules)>+1);<\n> <! index from 1..n !>
395 :{var list_<it.label.text>:Array=null;}; separator="\n"
410 :{var list_<it.label.text>:Array=null;}; separator="\n"
638 if (list_<label>==null) list_<label>=new Array();
948 private const DFA<dfa.decisionNumber>_eot:Array =
950 private const DFA<dfa.decisionNumber>_eof:Array =
952 private const DFA<dfa.decisionNumber>_min:Array
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxKbExplorerScript.js 9 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";
10 else if("function"==b&&"undefined"==typeof a.call)return"object";return b};goog.isDef=function(a){return void 0!==a};goog.isNull=function(a){return null===a};goog.isDefAndNotNull=function(a){return null!=a};goog.isArray=function(a){return"array"==goog.typeOf(a)};goog.isArrayLike=function(a){var b=goog.typeOf(a);return"array"==b||"object"==b&&"number"==typeof a.length};goog.isDateLike=function(a){return goog.isObject(a)&&"function"==typeof a.getFullYear};goog.isString=function(a){return"string"==typeof a};
12 goog.UID_PROPERTY_="closure_uid_"+(1E9*Math.random()>>>0);goog.uidCounter_=0;goog.getHashCode=goog.getUid;goog.removeHashCode=goog.removeUid;goog.cloneObject=function(a){var b=goog.typeOf(a);if("object"==b||"array"==b){if(a.clone)return a.clone();var b="array"==b?[]:{},c;for(c in a)b[c]=goog.cloneObject(a[c]);return b}return a};goog.bindNative_=function(a,b,c){return a.call.apply(a.bind,arguments)};
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 fun (…)
    [all...]
  /external/chromium_org/v8/src/
liveedit-debugger.js 53 // The change is in form of list of chunks encoded in a single array as
97 var replace_code_list = new Array();
98 var link_to_old_script_list = new Array();
99 var link_to_original_script_list = new Array();
100 var update_positions_list = new Array();
153 var replaced_function_infos = new Array();
198 var link_to_old_script_report = new Array();
220 var position_patch_report = new Array();
246 // Fully compiles source string as a script. Returns Array of
248 // Elements of array are ordered by start positions of functions (from to
    [all...]
  /external/v8/src/
liveedit-debugger.js 51 // The change is in form of list of chunks encoded in a single array as
85 var replace_code_list = new Array();
86 var link_to_old_script_list = new Array();
87 var link_to_original_script_list = new Array();
88 var update_positions_list = new Array();
141 var replaced_function_infos = new Array();
181 var link_to_old_script_report = new Array();
203 var position_patch_report = new Array();
229 // Fully compiles source string as a script. Returns Array of
231 // Elements of array are ordered by start positions of functions (from to
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.cpp 465 void InspectorPageAgent::getNavigationHistory(ErrorString*, int*, RefPtr<TypeBuilder::Array<TypeBuilder::Page::NavigationEntry> >&)
486 static PassRefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> > buildArrayForCookies(ListHashSet<Cookie>& cookiesList)
488 RefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> > cookies = TypeBuilder::Array<TypeBuilder::Page::Cookie>::create();
542 void InspectorPageAgent::getCookies(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> >& cookies)
596 void InspectorPageAgent::searchInResource(ErrorString*, const String& frameId, const String& url, const String& query, const bool* const optionalCaseSensitive, const bool* const optionalIsRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> >& results)
598 results = TypeBuilder::Array<TypeBuilder::Page::SearchMatch>::create();
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
CameraTestUtils.java 39 import java.lang.reflect.Array;
115 assertTrue(message, arr != null && Array.getLength(arr) > 0);
143 * 1-D linear byte array, such that it can be write into disk, or accessed by
147 * <p>For YUV_420_888/NV21/YV12/Y8/Y16, it returns a byte array that contains
151 * <p>For JPEG, it returns a 1-D byte array contains a complete JPEG image.</p>
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.extensions 73 this.indentStack = new Array(PythonTokenSource.MAX_INDENTS);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate.js 132 * An array of logging messages. These are collected during processing
134 * @type Array.<string>
194 * The array is global since it can be reused - this way there is no need to
195 * construct a new array object for each invocation. (IE6 perf)
196 * @type Array
219 * @type Array.<Array>
327 * We represent the call tree as an array of array of calls, indexed as
342 * ie. a flattened array of methods with 2 arguments, in reverse order
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 347 var newargs = Array.prototype.slice.call(arguments).slice(2);
349 var combinedargs = newargs.concat(Array.prototype.slice.call(arguments));
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jstemplate.js 132 * An array of logging messages. These are collected during processing
134 * @type Array.<string>
194 * The array is global since it can be reused - this way there is no need to
195 * construct a new array object for each invocation. (IE6 perf)
196 * @type Array
219 * @type Array.<Array>
327 * We represent the call tree as an array of array of calls, indexed as
342 * ie. a flattened array of methods with 2 arguments, in reverse orde
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js 347 var newargs = Array.prototype.slice.call(arguments).slice(2);
349 var combinedargs = newargs.concat(Array.prototype.slice.call(arguments));
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
chrome_ex_oauth.js 347 var newargs = Array.prototype.slice.call(arguments).slice(2);
349 var combinedargs = newargs.concat(Array.prototype.slice.call(arguments));
  /external/chromium_org/chrome/browser/resources/
about_version.js 9 * @param {!Array.<string>} variationsList The list of variations.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate.js 132 * An array of logging messages. These are collected during processing
134 * @type Array.<string>
194 * The array is global since it can be reused - this way there is no need to
195 * construct a new array object for each invocation. (IE6 perf)
196 * @type Array
219 * @type Array.<Array>
327 * We represent the call tree as an array of array of calls, indexed as
342 * ie. a flattened array of methods with 2 arguments, in reverse orde
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/
options.js 33 var keys = new Array();

Completed in 894 milliseconds

<<21222324252627282930>>