Searched refs:isUndefined (Results 51 - 75 of 87) sorted by relevance

1234

/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNPRuntimeObjectMap.cpp154 if (value.isUndefined()) {
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue.cpp44 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());
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Dprototype-1.6.0.3.js115 if (Object.isUndefined(object)) return 'undefined';
140 if (!Object.isUndefined(value))
198 isUndefined: function(object) {
211 if (arguments.length < 2 && Object.isUndefined(arguments[0])) return this;
361 count = Object.isUndefined(count) ? 1 : count;
376 truncation = Object.isUndefined(truncation) ? '...' : truncation;
696 fillWith = Object.isUndefined(fillWith) ? null : fillWith;
918 if (!Object.isUndefined(value)) results.push(value);
1000 if (Object.isUndefined(value)) return key;
1378 this.responseXML = Object.isUndefined(xm
[all...]
H A Dconcat-jquery-mootools-prototype.js8494 if (Object.isUndefined(object)) return 'undefined';
8519 if (!Object.isUndefined(value))
8577 isUndefined: function(object) {
8590 if (arguments.length < 2 && Object.isUndefined(arguments[0])) return this;
8740 count = Object.isUndefined(count) ? 1 : count;
8755 truncation = Object.isUndefined(truncation) ? '...' : truncation;
9075 fillWith = Object.isUndefined(fillWith) ? null : fillWith;
9297 if (!Object.isUndefined(value)) results.push(value);
9379 if (Object.isUndefined(value)) return key;
9757 this.responseXML = Object.isUndefined(xm
[all...]
/external/llvm/lib/MC/
H A DMCExpr.cpp330 if (SA.isUndefined() || SB.isUndefined())
H A DMCAssembler.cpp116 if (Target.getSymA() && Target.getSymA()->getSymbol().isUndefined())
119 if (Target.getSymB() && Target.getSymB()->getSymbol().isUndefined())
268 SA.AliasedSymbol().isUndefined()) {
H A DMCELFStreamer.cpp165 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
H A DWinCOFFStreamer.cpp180 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp606 if (!Sym->isUndefined())
691 if (!Sym->isUndefined())
H A DAsmParser.cpp742 if (IDVal == "b" && Sym->isUndefined())
1133 if (!Sym->isUndefined() || Sym->isVariable())
1734 else if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
1738 else if (!Sym->isUndefined() && (!Sym->isVariable() || !allow_redef))
2314 if (!Sym->isUndefined())
2494 TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined());
2496 TheCondState.CondMet = (Sym == NULL || Sym->isUndefined());
/external/webkit/Source/WebCore/rendering/
H A DRenderImage.cpp501 int maxLogicalWidth = !includeMaxWidth || style()->logicalMaxWidth().isUndefined() ? logicalWidth : computeReplacedLogicalWidthUsing(style()->logicalMaxWidth());
531 int maxLogicalHeight = style()->logicalMaxHeight().isUndefined() ? logicalHeight : computeReplacedLogicalHeightUsing(style()->logicalMaxHeight());
H A DRenderFlexibleBox.cpp972 if (!child->style()->maxWidth().isUndefined() && child->style()->maxWidth().isFixed())
985 if (!child->style()->maxHeight().isUndefined() && child->style()->maxHeight().isFixed())
/external/v8/src/
H A Dmirror-debugger.js249 Mirror.prototype.isUndefined = function() {
1614 !r.isNull() && property.isUndefined();
1619 if (!property.isUndefined()) {
1898 if (!eval_from_script.isUndefined()) {
H A Dd8.js2132 if (!value.isUndefined() && !value.isNull()) {
2451 return this.isUndefined() || this.isNull() || this.isBoolean() ||
2469 ProtocolValue.prototype.isUndefined = function() {
/external/webkit/Source/JavaScriptCore/runtime/
H A DDatePrototype.cpp157 if (arg0String == "custom" && !exec->argument(1).isUndefined()) {
160 } else if (format == LocaleDateAndTime && !exec->argument(1).isUndefined()) {
163 } else if (format != LocaleTime && !exec->argument(0).isUndefined())
165 else if (format != LocaleDate && !exec->argument(0).isUndefined())
H A DJSValue.h154 bool isUndefined() const;
H A DJSONObject.cpp360 if (value.isUndefined() && !holder->inherits(&JSArray::s_info))
703 if (filteredValue.isUndefined())
770 if (filteredValue.isUndefined())
H A DArrayPrototype.cpp154 if (value.isUndefined())
282 if (!exec->argument(0).isUndefined())
526 if (jObj.isUndefined())
528 else if (minObj.isUndefined())
1115 if (!fromValue.isUndefined()) {
H A DJSString.h622 if (isUndefined())
641 if (isUndefined())
/external/webkit/Source/WebCore/bridge/jni/jsc/
H A DJNIUtilityPrivate.cpp240 } else if (value.isUndefined()) {
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue_p.h101 inline bool isUndefined();
397 bool QScriptValuePrivate::isUndefined() function in class:QScriptValuePrivate
741 return other->isUndefined() || other->isNull();
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp383 if (!SD->Symbol->isUndefined())
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
H A Dtst_qscriptengine.cpp201 QCOMPARE(result.isUndefined(), true);
270 QVERIFY(value.isUndefined());
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MachObjectWriter.cpp520 if (!SD->Symbol->isUndefined())
/external/webkit/Source/WebCore/bridge/
H A DNP_jsobject.cpp442 return !func.isUndefined();

Completed in 1054 milliseconds

1234