HomeSort by relevance Sort by last modified time
    Searched refs:isUndefined (Results 26 - 50 of 91) sorted by null

12 3 4

  /external/webkit/Source/JavaScriptCore/runtime/
JSValueInlineMethods.h 264 inline bool JSValue::isUndefined() const
276 return isUndefined() || isNull();
415 inline bool JSValue::isUndefined() const
Operations.cpp 63 if (v.isUndefined())
JSArray.cpp     [all...]
RegExpConstructor.cpp 302 if (!arg1.isUndefined())
307 UString pattern = arg0.isUndefined() ? UString("") : arg0.toString(exec);
312 if (!arg1.isUndefined()) {
JSValue.cpp 129 else if (isUndefined())
JSCell.h 281 ASSERT(isUndefined());
308 return isUndefined() ? nonInlineNaN() : 0; // null and false both convert to 0.
ObjectConstructor.cpp 237 if (!get.isUndefined()) {
253 if (!set.isUndefined()) {
346 if (exec->argument(1).isUndefined())
StringPrototype.cpp 550 if (a1.isUndefined())
688 double end = a1.isUndefined() ? len : a1.toInteger(exec);
715 unsigned limit = a1.isUndefined() ? 0xFFFFFFFFU : a1.toUInt32(exec);
787 double length = a1.isUndefined() ? len : a1.toInteger(exec);
    [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 105 bool isUndefined() const { return Tag == undefined; }
145 assert(isUndefined());
163 assert(isUndefined() || isConstant());
180 assert(isUndefined());
192 if (RHS.isUndefined() || isOverdefined()) return false;
195 if (isUndefined()) {
278 if (Val.isUndefined())
499 if (!BBLV.isUndefined()) {
    [all...]
  /external/llvm/lib/MC/
MachObjectWriter.cpp 33 if (SD->Symbol->isUndefined())
76 if (Target.getSymA() && Target.getSymA()->getSymbol().isUndefined())
79 if (Target.getSymB() && Target.getSymB()->getSymbol().isUndefined())
299 if (Symbol.isUndefined())
312 if (Data.isExternal() || Symbol.isUndefined())
451 if (!it->isExternal() && !Symbol.isUndefined())
465 if (Symbol.isUndefined()) {
487 if (it->isExternal() || Symbol.isUndefined())
ELFObjectWriter.cpp 522 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
526 if (Symbol.isUndefined() && Rest.startswith("@@") &&
638 if (ASymbol.isUndefined()) {
792 if (Symbol.isVariable() && !A.isVariable() && A.isUndefined())
796 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
799 if (!Asm.isSymbolLinkerVisible(Symbol) && !Symbol.isUndefined())
816 if (RefSymbol.isUndefined() && !RefSymbol.isVariable()) {
902 if (RefSymbol.isUndefined() && !Used && WeakrefUsed)
910 } else if (RefSymbol.isUndefined()) {
    [all...]
MCPureStreamer.cpp 115 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalue.cpp 299 bool QScriptValue::isUndefined() const
301 return d_ptr->isUndefined();
qscriptvalue.h 112 bool isUndefined() const;
  /external/webkit/Source/WebCore/bindings/js/
JSXMLHttpRequestCustom.cpp 91 if (exec->argumentCount() >= 4 && !exec->argument(3).isUndefined()) {
94 if (exec->argumentCount() >= 5 && !exec->argument(4).isUndefined()) {
  /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);
tst_qscriptvalue.cpp 44 QCOMPARE(v.isUndefined(), true);
152 QCOMPARE(v.isUndefined(), true);
242 QVERIFY(QScriptValue(0, QScriptValue::UndefinedValue).isUndefined());
455 QVERIFY(eng.evaluate("a[0]").isUndefined());
459 QVERIFY(eng.evaluate("a[0]").isUndefined());
466 QVERIFY(eng.evaluate("a[0]").isUndefined());
    [all...]
  /external/webkit/Source/WebCore/platform/
Length.h 162 bool isUndefined() const { return value() == undefinedLength; }
  /external/v8/test/mjsunit/
mirror-undefined.js 41 assertTrue(mirror.isUndefined());
  /external/webkit/Source/WebCore/bridge/
runtime_object.cpp 147 if (!aClass->fallbackObject(exec, instance.get(), propertyName).isUndefined()) {
194 if (!aClass->fallbackObject(exec, instance.get(), propertyName).isUndefined()) {
  /external/llvm/lib/Target/PTX/
PTXAsmPrinter.cpp 275 assert(gvsym->isUndefined() && "Cannot define a symbol twice!");
360 if (!CurrentFnSym->isUndefined())
  /external/webkit/Source/JavaScriptCore/API/
JSValueRef.cpp 56 if (jsValue.isUndefined())
76 return jsValue.isUndefined();
  /external/webkit/Source/WebCore/rendering/
RenderReplaced.cpp 218 int maxLogicalWidth = !includeMaxWidth || style()->logicalMaxWidth().isUndefined() ? logicalWidth : computeReplacedLogicalWidthUsing(style()->logicalMaxWidth());
234 int maxLogicalHeight = style()->logicalMaxHeight().isUndefined() ? logicalHeight : computeReplacedLogicalHeightUsing(style()->logicalMaxHeight());
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/
antlr.js 334 isUndefined: function(o) {
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPRuntimeObjectMap.cpp 154 if (value.isUndefined()) {

Completed in 1217 milliseconds

12 3 4