HomeSort by relevance Sort by last modified time
    Searched full:isundefined (Results 1 - 25 of 175) sorted by null

1 2 3 4 5 6 7

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteEarlyExitException.js 4 if (org.antlr.lang.isUndefined(elementDescription)) {
  /external/webkit/Source/JavaScriptCore/runtime/
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...]
ErrorPrototype.cpp 60 if (!name.isUndefined()) {
61 if (!message.isUndefined())
65 if (!message.isUndefined())
ErrorInstance.cpp 51 if (message.isUndefined())
  /external/compiler-rt/make/
util.mk 46 # Function: IsUndefined variable
49 IsUndefined = $(call streq,undefined,$(flavor $(1)))
74 $(call AssertValue,$(call IsUndefined,$(2)),destination is already defined)\
75 $(if $(call IsUndefined,$(1)),,\
  /external/webkit/Source/WebCore/bindings/js/
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()) {
JSOptionConstructor.cpp 54 if ((exec->argumentCount() >= 1) && !exec->argument(0).isUndefined())
58 if ((exec->argumentCount() >= 2) && !exec->argument(1).isUndefined())
JSInspectorFrontendHostCustom.cpp 111 if (!enabled.isUndefined())
113 if (!checked.isUndefined())
CallbackFunction.cpp 36 if (value.isUndefined() && (acceptedValues & CallbackAllowUndefined))
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())
  /external/v8/src/
objects-debug.cc 321 ASSERT(normal_type_cache()->IsUndefined()
328 ASSERT(cache()->IsUndefined() || cache()->IsPolymorphicCodeCacheHashTable());
381 CHECK(value()->IsUndefined() || value()->IsSmi() || value()->IsHeapNumber());
382 CHECK(year()->IsUndefined() || year()->IsSmi() || year()->IsNaN());
383 CHECK(month()->IsUndefined() || month()->IsSmi() || month()->IsNaN());
384 CHECK(day()->IsUndefined() || day()->IsSmi() || day()->IsNaN());
385 CHECK(weekday()->IsUndefined() || weekday()->IsSmi() || weekday()->IsNaN());
386 CHECK(hour()->IsUndefined() || hour()->IsSmi() || hour()->IsNaN());
387 CHECK(min()->IsUndefined() || min()->IsSmi() || min()->IsNaN());
388 CHECK(sec()->IsUndefined() || sec()->IsSmi() || sec()->IsNaN())
    [all...]
contexts.cc 247 while (!element->IsUndefined()) {
252 CHECK(function->next_function_link()->IsUndefined());
257 while (!context->IsUndefined()) {
275 while (!element->IsUndefined()) {
277 ASSERT(element_function->next_function_link()->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/llvm/lib/MC/
MCObjectWriter.cpp 32 if (SA.AliasedSymbol().isUndefined() || SB.AliasedSymbol().isUndefined())
  /external/v8/test/mjsunit/
debug-compile-event-newfunction.js 42 assertFalse(evalFromScript.isUndefined(), 'evalFromScript.isUndefined()');
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WebKitPointConstructor.cpp 53 if (!args[0]->IsUndefined()) {
58 if (!args[1]->IsUndefined()) {
V8DirectoryEntryCustom.cpp 77 if (args.Length() > 2 && !args[2]->IsNull() && !args[2]->IsUndefined()) {
83 if (args.Length() > 3 && !args[3]->IsNull() && !args[3]->IsUndefined()) {
120 if (args.Length() > 2 && !args[2]->IsNull() && !args[2]->IsUndefined()) {
126 if (args.Length() > 3 && !args[3]->IsNull() && !args[3]->IsUndefined()) {
V8HTMLOptionElementConstructor.cpp 68 if (args.Length() > 0 && !args[0]->IsUndefined())
70 if (args.Length() > 1 && !args[1]->IsUndefined())
V8GeolocationCustom.cpp 68 if (!enableHighAccuracyValue->IsUndefined()) {
82 if (!timeoutValue->IsUndefined()) {
106 if (!maximumAgeValue->IsUndefined()) {
  /external/webkit/Source/WebCore/bindings/v8/
ScriptValue.h 118 bool isUndefined() const
120 return m_value->IsUndefined();
  /external/compiler-rt/make/test/
test-util.mk 57 copyvariable_t0 = $(call IsUndefined,copyvariable_t0_dst)
  /external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
tst_qscriptvalue.cpp 65 void isUndefined();
259 void tst_QScriptValue::isUndefined()
263 value.isUndefined();
  /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!");
348 if (IV.isOverdefined() || MergeWithV.isUndefined())
352 else if (IV.isUndefined())
529 if (!BCValue.isUndefined())
555 if (!SCValue.isUndefined())
599 return !BCValue.isUndefined();
617 return !SCValue.isUndefined();
674 if (IV.isUndefined()) continue; // Doesn't influence PHI node
    [all...]
  /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 1395 milliseconds

1 2 3 4 5 6 7