Searched refs:isUndefined (Results 1 - 25 of 87) sorted by relevance

1234

/external/webkit/Source/WebCore/bindings/js/
H A DCallbackFunction.cpp36 if (value.isUndefined() && (acceptedValues & CallbackAllowUndefined))
H A DJSDirectoryEntryCustom.cpp62 if (!exec->argument(1).isNull() && !exec->argument(1).isUndefined() && exec->argument(1).isObject() && !exec->argument(1).inherits(&JSWebKitFlags::s_info)) {
74 if (exec->argumentCount() > 2 && !exec->argument(2).isNull() && !exec->argument(2).isUndefined()) {
82 if (exec->argumentCount() > 3 && !exec->argument(3).isNull() && !exec->argument(3).isUndefined()) {
108 if (!exec->argument(1).isNull() && !exec->argument(1).isUndefined() && exec->argument(1).isObject() && !exec->argument(1).inherits(&JSWebKitFlags::s_info)) {
120 if (exec->argumentCount() > 2 && !exec->argument(2).isNull() && !exec->argument(2).isUndefined()) {
128 if (exec->argumentCount() > 3 && !exec->argument(3).isNull() && !exec->argument(3).isUndefined()) {
H A DJSGeolocationCustom.cpp69 if (!enableHighAccuracyValue.isUndefined()) {
78 if (!timeoutValue.isUndefined()) {
94 if (!maximumAgeValue.isUndefined()) {
H A DJSOptionConstructor.cpp54 if ((exec->argumentCount() >= 1) && !exec->argument(0).isUndefined())
58 if ((exec->argumentCount() >= 2) && !exec->argument(1).isUndefined())
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())
H A DJSInspectorFrontendHostCustom.cpp111 if (!enabled.isUndefined())
113 if (!checked.isUndefined())
H A DScriptValue.h58 bool isUndefined() const;
H A DJSDirectoryEntrySyncCustom.cpp50 if (argument.isNull() || argument.isUndefined() || !argument.isObject())
/external/llvm/lib/MC/
H A DMCObjectWriter.cpp32 if (SA.AliasedSymbol().isUndefined() || SB.AliasedSymbol().isUndefined())
H A DMCNullStreamer.cpp35 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DRewriteEarlyExitException.js4 if (org.antlr.lang.isUndefined(elementDescription)) {
/external/v8/test/mjsunit/
H A Dmirror-undefined.js41 assertTrue(mirror.isUndefined());
H A Ddebug-compile-event-newfunction.js42 assertFalse(evalFromScript.isUndefined(), 'evalFromScript.isUndefined()');
/external/webkit/Source/JavaScriptCore/runtime/
H A DErrorPrototype.cpp60 if (!name.isUndefined()) {
61 if (!message.isUndefined())
65 if (!message.isUndefined())
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 DErrorInstance.cpp51 if (message.isUndefined())
H A DRegExpPrototype.cpp88 if (!arg1.isUndefined())
97 if (!arg1.isUndefined()) {
/external/v8/test/mjsunit/bugs/harmony/
H A Ddebug-blockscopes.js129 if (property_mirror.isUndefined()) {
132 assertFalse(property_mirror.isUndefined(), 'property ' + p + ' not found in scope');
144 if (!scope.scopeObject().property('arguments').isUndefined()) {
148 if (!scope.scopeObject().property('.catch-var').isUndefined()) {
152 if (!scope.scopeObject().property('').isUndefined()) {
156 if (!scope.scopeObject().property('.block').isUndefined()) {
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp86 bool isUndefined() const { return getLatticeValue() == undefined; } function in class:__anon9137::LatticeVal
113 if (isUndefined()) {
140 assert(isUndefined() && "Can't force a defined value!");
355 if (IV.isOverdefined() || MergeWithV.isUndefined())
359 else if (IV.isUndefined())
536 if (!BCValue.isUndefined())
562 if (!SCValue.isUndefined())
606 return !BCValue.isUndefined();
624 return !SCValue.isUndefined();
681 if (IV.isUndefined()) continu
[all...]
/external/v8/test/mjsunit/harmony/
H A Ddebug-blockscopes.js132 if (property_mirror.isUndefined()) {
135 assertFalse(property_mirror.isUndefined(), 'property ' + p + ' not found in scope');
147 if (!scope.scopeObject().property('arguments').isUndefined()) {
151 if (!scope.scopeObject().property('.catch-var').isUndefined()) {
155 if (!scope.scopeObject().property('').isUndefined()) {
159 if (!scope.scopeObject().property('.block').isUndefined()) {
/external/llvm/include/llvm/MC/
H A DMCSymbol.h99 /// isUndefined - Check if this symbol undefined (i.e., implicitly defined).
100 bool isUndefined() const { function in class:llvm::MCSymbol
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue.h98 void isUndefined();
/external/webkit/Source/WebCore/inspector/
H A DScriptArguments.cpp70 if (checkForNullOrUndefined && (value.isNull() || value.isUndefined()))
/external/webkit/Source/WebCore/rendering/
H A DRenderScrollbarPart.cpp96 int maxWidth = style()->maxWidth().isUndefined() ? w : calcScrollbarThicknessUsing(style()->maxWidth(), visibleSize);
111 int maxHeight = style()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(style()->maxHeight(), visibleSize);
/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();

Completed in 383 milliseconds

1234