HomeSort by relevance Sort by last modified time
    Searched defs:undefined (Results 1 - 20 of 20) sorted by null

  /external/valgrind/main/gdbserver_tests/
watchpoints.c 10 static char undefined[10] = "undefined"; variable
23 if (undefined[0] == 'u')
28 if (undefined[4] == 'f')
33 if (undefined[8] == 'd')
41 undefined[0] = 'U';
44 undefined[4] = 'F';
47 undefined[8] = 'D';
53 fprintf(stderr, "value %s\n", undefined);
56 undefined[0] = '0'
    [all...]
t.c 12 static char undefined[10] = "undefined"; variable
111 int len = strlen(undefined);
114 undefined[i] = undef;
  /external/v8/test/mjsunit/
const-redecl.js 132 TestConflict("const x = undefined", "var x");
133 TestConflict("const x", "var x = undefined");
134 TestConflict("const x = undefined", "var x = undefined");
136 TestConflict("var x = undefined", "const x");
137 TestConflict("var x", "const x = undefined");
138 TestConflict("var x = undefined", "const x = undefined");
140 TestConflict("const x = undefined", "var x = 0");
141 TestConflict("const x = 0", "var x = undefined");
233 var undefined = 1; \/\/ Should be silently ignored. variable
    [all...]
debug-evaluate-with-context.js 60 var context_with_undefined = { undefined: 'kitten' };
61 var global_expression2 = "'cat' + '/' + undefined";
67 assertEquals('cat/undefined', result);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptValue.h 136 static ScriptValue undefined() { return ScriptValue(v8::Undefined()); } function in class:WebCore::ScriptValue
  /external/v8/src/
compilation-cache.cc 101 Object* undefined = isolate()->heap()->raw_unchecked_undefined_value(); local
103 if (tables_[i] != undefined) {
150 // an undefined name to have the same origin.
mark-compact.cc 1205 Object* undefined = heap->undefined_value(); local
    [all...]
heap.cc 695 // is not fully initialized, so the caches can be undefined.
722 // so the cache can be undefined.
1318 Object* undefined = heap->undefined_value(); local
1358 Object* undefined = undefined_value(); local
    [all...]
hydrogen.cc 5357 HConstant* undefined = graph()->GetConstantUndefined(); local
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
tst_qscriptengine.cpp 189 // whether the return value is undefined when returning a value with wrong engine
198 QTest::ignoreMessage(QtWarningMsg, "Value from different engine returned from native function, returning undefined value instead.");
530 QScriptValue undefined = engine1.undefinedValue(); local
532 QVERIFY(!engine2.toObject(undefined).isValid());
533 QVERIFY(undefined.isValid());
535 QVERIFY(engine2.toObject(undefined).engine() != &engine2);
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.cpp 267 << QString::fromAscii("") // Undefined is an invalid property.
287 << QString::fromAscii("") // Undefined is an invalid property.
292 << QString::fromAscii("") // Undefined is an invalid property.
648 QTest::newRow("undefined") << QString::fromAscii("undefined") << QString::fromAscii("undefined");
670 QScriptValue undefined(engine.evaluate("undefined"));
681 QTest::newRow("undefined") << undefined << QString::fromAscii("undefined")
839 QScriptValue undefined = eng.undefinedValue(); local
888 QScriptValue undefined = QScriptValue(QScriptValue::UndefinedValue); local
    [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 62 /// undefined - This Value has no known value yet.
63 undefined, enumerator in enum:__anon11357::LVILatticeVal::LatticeValueTy
85 LVILatticeVal() : Tag(undefined), Val(0), Range(1, true) {}
105 bool isUndefined() const { return Tag == undefined; }
279 return OS << "undefined";
586 LVILatticeVal Result; // Start Undefined.
662 LVILatticeVal Result; // Start Undefined.
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 58 /// undefined - This LLVM Value has no known value yet.
59 undefined, enumerator in enum:__anon11914::LatticeVal::LatticeValueTy
84 LatticeVal() : Val(0, undefined) {}
86 bool isUndefined() const { return getLatticeValue() == undefined; }
378 // Undef values remain undefined.
409 ; // Undef values remain undefined.
553 if (CI == 0) { // Overdefined or undefined condition?
669 // If there are no executable operands, the PHI remains undefined.
700 // this is the case, the PHI remains undefined.
    [all...]
  /external/v8/src/arm/
lithium-arm.cc 219 stream->Add(nil() == kNullValue ? "null" : "undefined");
2267 HConstant* undefined = graph()->GetConstantUndefined(); local
    [all...]
code-stubs-arm.cc 172 // Initialize the rest of the slots to undefined.
5693 Register undefined = scratch4; local
7009 Register undefined = r5; local
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 216 stream->Add(nil() == kNullValue ? "null" : "undefined");
2376 HConstant* undefined = graph()->GetConstantUndefined(); local
    [all...]
  /external/v8/src/mips/
lithium-mips.cc 219 stream->Add(nil() == kNullValue ? "null" : "undefined");
2272 HConstant* undefined = graph()->GetConstantUndefined(); local
    [all...]
code-stubs-mips.cc 174 // Initialize the rest of the slots to undefined.
5908 Register undefined = scratch4; local
7274 Register undefined = t1; local
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 221 stream->Add(nil() == kNullValue ? "null" : "undefined");
2266 HConstant* undefined = graph()->GetConstantUndefined(); local
    [all...]
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 

Completed in 1171 milliseconds