HomeSort by relevance Sort by last modified time
    Searched defs:isDefAndNotNull (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/third_party/chromevox/closure/
base.js 274 if (goog.isDefAndNotNull(cur[part])) {
880 goog.isDefAndNotNull = function(val) {
    [all...]
  /external/chromium_org/third_party/accessibility-audit/
axs_testing.js 63 if(goog.isDefAndNotNull(d[e])) {
225 goog.isDefAndNotNull = function(a) {
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeOptionsScript.js 2 goog.setTestOnly=function(a){if(!goog.DEBUG)throw a=a||"",Error("Importing test-only code into non-debug environment"+a?": "+a:".");};goog.getObjectByName=function(a,b){for(var c=a.split("."),d=b||goog.global,e;e=c.shift();)if(goog.isDefAndNotNull(d[e]))d=d[e];else return null;return d};goog.globalize=function(a,b){var c=b||goog.global,d;for(d in a)c[d]=a[d]};
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};
    [all...]

Completed in 65 milliseconds