HomeSort by relevance Sort by last modified time
    Searched refs:instanceof (Results 201 - 225 of 233) sorted by null

1 2 3 4 5 6 7 8910

  /external/chromium_org/v8/test/mjsunit/es7/
object-observe.js 80 assertTrue(r instanceof Array)
    [all...]
  /external/chromium_org/v8/test/webkit/resources/
json2-es5-compat.js 93 return this[key] instanceof Date ?
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromePageScript.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";
21 a)});goog.defineClass=function(a,b){var c=b.constructor,d=b.statics;c&&c!=Object.prototype.constructor||(c=function(){throw Error("cannot instantiate an interface (no constructor defined).");});c=goog.defineClass.createSealingConstructor_(c);a&&goog.inherits(c,a);delete b.constructor;delete b.statics;goog.defineClass.applyProperties_(c.prototype,b);null!=d&&(d instanceof Function?d(c):goog.defineClass.applyProperties_(c,d));return c};goog.defineClass.SEAL_CLASS_INSTANCES=goog.DEBUG;
22 goog.defineClass.createSealingConstructor_=function(a){if(goog.defineClass.SEAL_CLASS_INSTANCES&&Object.seal instanceof Function){var b=function(){var c=a.apply(this,arguments)||this;this.constructor===b&&Object.seal(c);return c};return b}return a};goog.defineClass.OBJECT_PROTOTYPE_FIELDS_="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
    [all...]
chromeVoxChromeBackgroundScript.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";
21 a)});goog.defineClass=function(a,b){var c=b.constructor,d=b.statics;c&&c!=Object.prototype.constructor||(c=function(){throw Error("cannot instantiate an interface (no constructor defined).");});c=goog.defineClass.createSealingConstructor_(c);a&&goog.inherits(c,a);delete b.constructor;delete b.statics;goog.defineClass.applyProperties_(c.prototype,b);null!=d&&(d instanceof Function?d(c):goog.defineClass.applyProperties_(c,d));return c};goog.defineClass.SEAL_CLASS_INSTANCES=goog.DEBUG;
22 goog.defineClass.createSealingConstructor_=function(a){if(goog.defineClass.SEAL_CLASS_INSTANCES&&Object.seal instanceof Function){var b=function(){var c=a.apply(this,arguments)||this;this.constructor===b&&Object.seal(c);return c};return b}return a};goog.defineClass.OBJECT_PROTOTYPE_FIELDS_="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
53 goog.asserts.assertInstanceof=function(a,b,c,d){!goog.asserts.ENABLE_ASSERTS||a instanceof b||goog.asserts.doAssertFailure_("instanceof check failed.",null,c,Array.prototype.slice.call(arguments,3));return a};goog.asserts.assertObjectPrototypeIsIntact=function(){for(var a in Object.prototype)goog.asserts.fail(a+" should not be enumerable in Object.prototype.")};goog.array={};goog.NATIVE_ARRAY_PROTOTYPES=goog.TRUSTED_SITE;goog.array.ASSUME_NATIVE_FUNCTIONS=!1;goog.array.peek=function(a){return a[a.length-1]};goog.array.last=goog.array.peek;goog.array.ARRAY_PROTOTYPE_=Array.prototype;
    [all...]
chromeVoxChromeOptionsScript.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";
21 a)});goog.defineClass=function(a,b){var c=b.constructor,d=b.statics;c&&c!=Object.prototype.constructor||(c=function(){throw Error("cannot instantiate an interface (no constructor defined).");});c=goog.defineClass.createSealingConstructor_(c);a&&goog.inherits(c,a);delete b.constructor;delete b.statics;goog.defineClass.applyProperties_(c.prototype,b);null!=d&&(d instanceof Function?d(c):goog.defineClass.applyProperties_(c,d));return c};goog.defineClass.SEAL_CLASS_INSTANCES=goog.DEBUG;
22 goog.defineClass.createSealingConstructor_=function(a){if(goog.defineClass.SEAL_CLASS_INSTANCES&&Object.seal instanceof Function){var b=function(){var c=a.apply(this,arguments)||this;this.constructor===b&&Object.seal(c);return c};return b}return a};goog.defineClass.OBJECT_PROTOTYPE_FIELDS_="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
    [all...]
  /external/chromium_org/remoting/webapp/
client_plugin_impl.js 488 if (!(message.data['buffer'] instanceof ArrayBuffer)) {
519 base.debug.assert(srcArrayBuffer instanceof ArrayBuffer);
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_transfer_controller.js 643 while (item && !(item instanceof cr.ui.TreeItem)) {
725 if (domElement instanceof DirectoryItem)
    [all...]
file_table.js 318 if (splitters[i] instanceof FileTableSplitter)
directory_contents.js 596 if (fileList instanceof cr.ui.ArrayDataModel)
  /external/chromium_org/extensions/renderer/resources/
event.js 270 if (filters.url && !(filters.url instanceof Array))
  /external/chromium_org/v8/test/mjsunit/es6/
generators-iteration.js 106 if (g instanceof GeneratorFunction) {
  /external/chromium_org/v8/test/mjsunit/
instanceof-2.js 296 var answer = (x instanceof func);
  /dalvik/docs/
prettify.js 120 "boolean byte extends final finally implements import instanceof null " +
224 "do", "else", "finally", "instanceof",
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
code-load.js 193 f Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.\
350 null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d\
419 ,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j==\"number\"\
434 tructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanc\
    [all...]
pdfjs.js     [all...]
  /external/chromium_org/third_party/d3/src/
d3.js 239 if (object instanceof d3_Map) object.forEach(function(key, value) {
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/visualizer/static/third_party/jqTree/
tree.jquery.js 72 if (widget && (widget instanceof SimpleWidget)) {
85 if (widget && (widget instanceof SimpleWidget)) {
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
active_indicator.js 332 if (this.lastSyncTarget_ instanceof Array) {
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jstemplate.js 612 // The expression value instanceof Array is occasionally false for
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-unpack-code.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-unpack-code.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
string-unpack-code.js     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TracingTimelineUIUtils.js 106 if (!(model instanceof WebInspector.TracingTimelineModel))
    [all...]
  /external/chromium_org/third_party/jstemplate/
jstemplate.js 579 // The expression value instanceof Array is occasionally false for
  /external/chromium_org/v8/src/
liveedit-debugger.js 58 if (e instanceof SyntaxError) {
    [all...]

Completed in 1168 milliseconds

1 2 3 4 5 6 7 8910