Searched defs:isUndefined (Results 1 - 15 of 15) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCSymbol.h98 /// isUndefined - Check if this symbol undefined (i.e., implicitly defined).
99 bool isUndefined() const { function in class:llvm::MCSymbol
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptValue.h118 bool isUndefined() const function in class:WebCore::ScriptValue
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue_generated_istype.cpp497 void tst_QScriptValue::isUndefined() function in class:tst_QScriptValue
501 QCOMPARE(value.isUndefined(), expected);
502 QCOMPARE(value.isUndefined(), expected);
/external/webkit/Source/JavaScriptCore/runtime/
H A DNumberPrototype.cpp76 static ALWAYS_INLINE bool getIntegerArgumentInRange(ExecState* exec, int low, int high, int& result, bool& isUndefined) argument
79 isUndefined = false;
82 if (argument0.isUndefined()) {
83 isUndefined = true;
108 bool isUndefined; local
109 if (!getIntegerArgumentInRange(exec, 0, 20, decimalPlacesInExponent, isUndefined))
118 unsigned length = isUndefined
140 bool isUndefined; // This is ignored; undefined treated as 0. local
141 if (!getIntegerArgumentInRange(exec, 0, 20, decimalPlaces, isUndefined))
178 bool isUndefined; local
[all...]
H A DJSValueInlineMethods.h264 inline bool JSValue::isUndefined() const function in class:JSC::JSValue
276 return isUndefined() || isNull();
415 inline bool JSValue::isUndefined() const function in class:JSC::JSValue
/external/webkit/Source/WebCore/bindings/js/
H A DScriptValue.cpp83 bool ScriptValue::isUndefined() const function in class:WebCore::ScriptValue
87 return m_value.get().isUndefined();
120 if (value.isNull() || value.isUndefined())
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue.cpp299 bool QScriptValue::isUndefined() const function in class:QScriptValue
301 return d_ptr->isUndefined();
H A Dqscriptvalue_p.h101 inline bool isUndefined();
397 bool QScriptValuePrivate::isUndefined() function in class:QScriptValuePrivate
741 return other->isUndefined() || other->isNull();
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
H A Dtst_qscriptvalue.cpp65 void isUndefined();
259 void tst_QScriptValue::isUndefined() function in class:tst_QScriptValue
263 value.isUndefined();
/external/webkit/Source/WebCore/platform/
H A DLength.h162 bool isUndefined() const { return value() == undefinedLength; } function in struct:WebCore::Length
/external/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorsChecker.cpp48 bool isUndefined() const { return K == Undefined; } function in class:__anon3049::RefState
430 else if (RS->isUndefined()) {
/external/llvm/lib/Analysis/
H A DLazyValueInfo.cpp100 bool isUndefined() const { return Tag == undefined; } function in class:__anon6568::LVILatticeVal
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()) {
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp88 bool isUndefined() const { return getLatticeValue() == undefined; } function in class:__anon7068::LatticeVal
115 if (isUndefined()) {
142 assert(isUndefined() && "Can't force a defined value!");
359 if (IV.isOverdefined() || MergeWithV.isUndefined())
363 else if (IV.isUndefined())
568 if (!BCValue.isUndefined())
594 if (!SCValue.isUndefined())
638 return !BCValue.isUndefined();
656 return !SCValue.isUndefined();
735 if (IV.isUndefined()) continu
[all...]
/external/v8/src/
H A Dd8.js2117 if (!value.isUndefined() && !value.isNull()) {
2436 return this.isUndefined() || this.isNull() || this.isBoolean() ||
2454 ProtocolValue.prototype.isUndefined = function() {
H A Dmirror-debugger.js247 Mirror.prototype.isUndefined = function() {
1564 if (!receiver.isUndefined()) {
1565 for (var r = receiver; !r.isNull() && property.isUndefined(); r = r.protoObject()) {
1569 if (!property.isUndefined()) {
1842 if (!eval_from_script.isUndefined()) {

Completed in 2530 milliseconds