| /external/webkit/Source/WebCore/bindings/v8/ |
| ScriptValue.h | 118 bool isUndefined() const 120 return m_value->IsUndefined();
|
| /external/llvm/include/llvm/MC/ |
| MCSymbol.h | 98 /// isUndefined - Check if this symbol undefined (i.e., implicitly defined). 99 bool isUndefined() const {
|
| /external/webkit/Source/JavaScriptCore/runtime/ |
| NumberPrototype.cpp | 76 static ALWAYS_INLINE bool getIntegerArgumentInRange(ExecState* exec, int low, int high, int& result, bool& isUndefined) 79 isUndefined = false; 82 if (argument0.isUndefined()) { 83 isUndefined = true; 108 bool isUndefined; 109 if (!getIntegerArgumentInRange(exec, 0, 20, decimalPlacesInExponent, isUndefined)) 118 unsigned length = isUndefined 140 bool isUndefined; // This is ignored; undefined treated as 0. 141 if (!getIntegerArgumentInRange(exec, 0, 20, decimalPlaces, isUndefined)) 178 bool isUndefined; [all...] |
| JSValueInlineMethods.h | 264 inline bool JSValue::isUndefined() const 276 return isUndefined() || isNull(); 415 inline bool JSValue::isUndefined() const
|
| /external/webkit/Source/WebCore/bindings/js/ |
| ScriptValue.cpp | 83 bool ScriptValue::isUndefined() const 87 return m_value.get().isUndefined(); 120 if (value.isNull() || value.isUndefined())
|
| /external/webkit/Source/JavaScriptCore/qt/api/ |
| qscriptvalue.cpp | 299 bool QScriptValue::isUndefined() const 301 return d_ptr->isUndefined();
|
| qscriptvalue_p.h | 101 inline bool isUndefined(); 397 bool QScriptValuePrivate::isUndefined() 741 return other->isUndefined() || other->isNull(); [all...] |
| /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/ |
| tst_qscriptvalue_generated_istype.cpp | 497 void tst_QScriptValue::isUndefined() 501 QCOMPARE(value.isUndefined(), expected); 502 QCOMPARE(value.isUndefined(), expected);
|
| /external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/ |
| tst_qscriptvalue.cpp | 65 void isUndefined(); 259 void tst_QScriptValue::isUndefined() 263 value.isUndefined();
|
| /external/webkit/Source/WebCore/platform/ |
| Length.h | 162 bool isUndefined() const { return value() == undefinedLength; }
|
| /external/clang/lib/StaticAnalyzer/Checkers/ |
| IteratorsChecker.cpp | 48 bool isUndefined() const { return K == Undefined; } 418 else if (RS->isUndefined()) {
|
| /external/llvm/lib/Analysis/ |
| LazyValueInfo.cpp | 100 bool isUndefined() const { return Tag == undefined; } 140 assert(isUndefined()); 158 assert(isUndefined() || isConstant()); 175 assert(isUndefined()); 187 if (RHS.isUndefined() || isOverdefined()) return false; 190 if (isUndefined()) { 273 if (Val.isUndefined()) 525 if (!BBLV.isUndefined()) { [all...] |
| /external/llvm/lib/Transforms/Scalar/ |
| SCCP.cpp | 88 bool isUndefined() const { return getLatticeValue() == undefined; } 115 if (isUndefined()) { 142 assert(isUndefined() && "Can't force a defined value!"); 359 if (IV.isOverdefined() || MergeWithV.isUndefined()) 363 else if (IV.isUndefined()) 563 if (!BCValue.isUndefined()) 585 if (!SCValue.isUndefined()) 629 return !BCValue.isUndefined(); 644 return !SCValue.isUndefined(); 722 if (IV.isUndefined()) continue; // Doesn't influence PHI node [all...] |
| /external/v8/src/ |
| d8.js | [all...] |
| mirror-debugger.js | 247 Mirror.prototype.isUndefined = function() { [all...] |