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

1 2 3 4

  /external/webkit/Source/WebCore/bindings/js/
CallbackFunction.cpp 36 if (value.isUndefined() && (acceptedValues & CallbackAllowUndefined))
JSDirectoryEntryCustom.cpp 62 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()) {
ScriptValue.h 58 bool isUndefined() const;
JSOptionConstructor.cpp 54 if ((exec->argumentCount() >= 1) && !exec->argument(0).isUndefined())
58 if ((exec->argumentCount() >= 2) && !exec->argument(1).isUndefined())
JSGeolocationCustom.cpp 69 if (!enableHighAccuracyValue.isUndefined()) {
78 if (!timeoutValue.isUndefined()) {
94 if (!maximumAgeValue.isUndefined()) {
ScriptValue.cpp 83 bool ScriptValue::isUndefined() const
87 return m_value.get().isUndefined();
120 if (value.isNull() || value.isUndefined())
JSInspectorFrontendHostCustom.cpp 111 if (!enabled.isUndefined())
113 if (!checked.isUndefined())
JSDirectoryEntrySyncCustom.cpp 50 if (argument.isNull() || argument.isUndefined() || !argument.isObject())
  /external/webkit/Source/JavaScriptCore/runtime/
ErrorPrototype.cpp 60 if (!name.isUndefined()) {
61 if (!message.isUndefined())
65 if (!message.isUndefined())
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...]
ErrorInstance.cpp 51 if (message.isUndefined())
RegExpPrototype.cpp 88 if (!arg1.isUndefined())
97 if (!arg1.isUndefined()) {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteEarlyExitException.js 4 if (org.antlr.lang.isUndefined(elementDescription)) {
  /external/llvm/lib/MC/
MCObjectWriter.cpp 66 if (SA.AliasedSymbol().isUndefined() || SB.AliasedSymbol().isUndefined())
MCMachOStreamer.cpp 119 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
230 if (Symbol->isUndefined())
252 if (Symbol->isUndefined())
279 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
296 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
MCNullStreamer.cpp 35 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 86 bool isUndefined() const { return getLatticeValue() == undefined; }
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()) continue; // Doesn't influence PHI node
    [all...]
  /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/qt/tests/qscriptvalue/
tst_qscriptvalue.h 98 void isUndefined();
  /external/webkit/Source/WebCore/inspector/
ScriptArguments.cpp 70 if (checkForNullOrUndefined && (value.isNull() || value.isUndefined()))
  /external/webkit/Source/WebCore/rendering/
RenderScrollbarPart.cpp 96 int maxWidth = style()->maxWidth().isUndefined() ? w : calcScrollbarThicknessUsing(style()->maxWidth(), visibleSize);
111 int maxHeight = style()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(style()->maxHeight(), visibleSize);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptValue.h 118 bool isUndefined() const
120 return m_value->IsUndefined();
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 129 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/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
tst_qscriptvalue.cpp 65 void isUndefined();
259 void tst_QScriptValue::isUndefined()
263 value.isUndefined();
  /external/v8/test/mjsunit/harmony/
debug-blockscopes.js 132 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()) {

Completed in 451 milliseconds

1 2 3 4