| /external/deqp/framework/common/ |
| tcuMatrix.hpp | 33 class Array 36 Array (void) {} 37 ~Array (void) {} 87 Array<T, Rows*Cols> getRowMajorData (void) const; 88 Array<T, Rows*Cols> getColumnMajorData (void) const; 344 // Initialize from data array. 429 Array<T, Rows*Cols> Matrix<T, Rows, Cols>::getColumnMajorData (void) const 431 Array<T, Rows*Cols> a; 440 Array<T, Rows*Cols> Matrix<T, Rows, Cols>::getRowMajorData (void) const 442 Array<T, Rows*Cols> a [all...] |
| /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/browser/resources/cryptotoken/ |
| enroller.js | 208 /** @private {Array.<EnrollHelperChallenge>} */ 210 /** @private {Array.<SignHelperChallenge>} */ 230 * @param {Array.<Object>} enrollChallenges A set of enroll challenges 231 * @param {Array.<Object>} signChallenges A set of sign challenges for existing 256 * @param {Array.<Object>} enrollChallenges A set of enroll challenges 257 * @return {Array.<EnrollHelperChallenge>} the encoded challenges. 283 * @param {Array.<Object>} enrollChallenges The enroll challenges. 324 * @param {Array=} signData the sign challenges to add. 347 * @param {!Array.<string>} enrollAppIds The app ids in the enroll challenge 361 /** @private {Array.<string>} * [all...] |
| signhelper.js | 20 * @param {Array.<SignHelperChallenge>} challenges the new challenges to sign.
|
| /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.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 | 30 // The change is in form of list of chunks encoded in a single array as 74 var replace_code_list = new Array(); 75 var link_to_old_script_list = new Array(); 76 var link_to_original_script_list = new Array(); 77 var update_positions_list = new Array(); 130 var replaced_function_infos = new Array(); 175 var link_to_old_script_report = new Array(); 197 var position_patch_report = new Array(); 223 // Fully compiles source string as a script. Returns Array of 225 // Elements of array are ordered by start positions of functions (from to [all...] |
| /external/pdfium/fpdfsdk/src/jsapi/ |
| fxjs_v8.cpp | 568 v8::Handle<v8::Array> JS_GetObjectElementNames(v8::Handle<v8::Object> pObj) 570 if(pObj.IsEmpty()) return v8::Handle<v8::Array>(); 616 v8::Handle<v8::Array> JS_NewArray(IJS_Runtime* pJSRuntime) 618 return v8::Array::New(pJSRuntime); 621 unsigned JS_PutArrayElement(v8::Handle<v8::Array> pArray,unsigned index,v8::Handle<v8::Value> pValue,FXJSVALUETYPE eType) 628 v8::Handle<v8::Value> JS_GetArrayElemnet(v8::Handle<v8::Array> pArray,unsigned index) 634 unsigned JS_GetArrayLength(v8::Handle<v8::Array> pArray) 666 v8::Handle<v8::Value> JS_NewObject2(IJS_Runtime* pJSRuntime,v8::Handle<v8::Array> pObj) 740 v8::Handle<v8::Array> JS_ToArray(v8::Handle<v8::Value> pValue) 742 if(pValue.IsEmpty()) return v8::Handle<v8::Array>(); [all...] |
| /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
| rhino-python.extensions | 73 this.indentStack = new Array(PythonTokenSource.MAX_INDENTS);
|
| /external/chromium_org/chrome/browser/resources/ |
| about_version.js | 9 * @param {!Array.<string>} variationsList The list of variations.
|
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/ |
| externs.js | 50 * @param {function(Array.<!Object>)} callback
|
| injected_script_loader.js | 20 * @param {Array.<string>} files A list of file names.
|
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ |
| live_regions_deprecated.js | 26 * An array of all of the elements on the page that are live regions. 27 * @type {Array.<Element>} 32 * A parallel array to trackedRegions that stores the previous value of 33 * each live region, represented as an array of NavDescriptions. 34 * @type {Array.<Array.<cvox.NavDescription> >} 203 * an array of NavDescriptions. Each atomic portion of the region gets a 209 * @return {Array.<cvox.NavDescription>} An array of NavDescriptions
|
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
| composite_tts.js | 22 * @type {Array.<cvox.TtsInterface>}
|
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/testing/ |
| msgs.js | 41 * @param {Array.<string>} opt_subs Substitution strings.
|
| /external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/ |
| options.js | 33 var keys = new Array();
|
| /external/chromium_org/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_org/chrome/renderer/extensions/ |
| cast_streaming_native_handler.cc | 265 v8::Handle<v8::Array> event_args = v8::Array::New(isolate, 1); 274 v8::Handle<v8::Array> event_args = v8::Array::New(isolate, 1); 284 v8::Handle<v8::Array> event_args = v8::Array::New(isolate, 2); 316 v8::Handle<v8::Array> result = 317 v8::Array::New(args.GetIsolate(),
|
| /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/string/ |
| string.js | 38 var subsArguments = Array.prototype.slice.call(arguments, 1);
|
| /external/chromium_org/content/test/data/dom_storage/ |
| sanity_check.js | 83 return Array(minimumSize).join("X");
|
| /external/chromium_org/content/test/data/media/ |
| media_utils.js | 47 if (Array.isArray(input))
|
| /external/chromium_org/extensions/renderer/ |
| runtime_custom_bindings.cc | 162 v8::Local<v8::Array> v8_views = v8::Array::New(args.GetIsolate());
|
| /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/ |
| pack_tests.py | 93 array = mojom.Array() 99 mojom.UINT64, mojom.Struct('test'), mojom.Array()),
|
| /external/chromium_org/remoting/webapp/ |
| host.js | 33 /** @type {Array.<string>} */
|
| paired_client_manager.js | 90 * Converts a raw object to an array of PairedClient instances. Returns null if 94 * @return {Array.<remoting.PairedClient>} The converted result. 97 if (!(pairedClients instanceof Array)) { 98 console.error('pairedClients is not an Array:', pairedClients); 171 * @type {Array.<remoting.PairedClient>}
|
| /external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
| ScriptFunctionCall.cpp | 113 v8::Handle<v8::Array> result = v8::Array::New(isolate, argument.size());
|