/external/llvm/test/MC/ARM/ |
H A D | udf-arm-diagnostics.s | 7 undefined: label
|
H A D | udf-arm.s | 7 undefined: label
|
H A D | udf-thumb-2-diagnostics.s | 7 undefined: label
|
H A D | udf-thumb-2.s | 7 undefined: label
|
H A D | udf-thumb-diagnostics.s | 7 undefined: label
|
H A D | udf-thumb.s | 7 undefined: label
|
/external/v8/test/webkit/ |
H A D | char-at.js | 28 var undefined; variable 32 ["", undefined], 46 ["x", undefined], 60 ["xy", undefined],
|
/external/valgrind/gdbserver_tests/ |
H A D | 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[ [all...] |
H A D | t.c | 12 static char undefined[10] = "undefined"; variable 111 int len = strlen(undefined); 114 undefined[i] = undef;
|
/external/v8/test/mjsunit/ |
H A D | const-redecl.js | 99 TestConflict("const x = undefined", "var x"); 100 TestConflict("const x", "var x = undefined"); 101 TestConflict("const x = undefined", "var x = undefined"); 103 TestConflict("var x = undefined", "const x"); 104 TestConflict("var x", "const x = undefined"); 105 TestConflict("var x = undefined", "const x = undefined"); 107 TestConflict("const x = undefined", "var x = 0"); 108 TestConflict("const x = 0", "var x = undefined"); 200 var undefined = 1; // Should be silently ignored. variable [all...] |
H A D | debug-evaluate-with-context.js | 60 var context_with_undefined = { undefined: 'kitten' }; 61 var global_expression2 = "'cat' + '/' + undefined"; 67 assertEquals('cat/undefined', result);
|
/external/clang/test/Modules/Inputs/ |
H A D | templates-top.h | 58 static T undefined; member in struct:WithUndefinedStaticDataMember
|
/external/ltrace/sysdeps/linux-gnu/ia64/ |
H A D | breakpoint.c | 131 undefined /* undefined or reserved */ enumerator in enum:instruction_type 141 {undefined, undefined, undefined}, /* 06 */ 142 {undefined, undefined, undefined}, /* 07 */ 155 {undefined, undefined, undefine [all...] |
/external/v8/src/heap/ |
H A D | objects-visiting.cc | 192 Object* undefined = heap->undefined_value(); local 193 Object* head = undefined; 197 while (list != undefined) { 202 if (head == undefined) { 233 WeakListVisitor<T>::SetWeakNext(tail, undefined); 241 Object* undefined = heap->undefined_value(); local 242 while (list != undefined) { 245 WeakListVisitor<T>::SetWeakNext(candidate, undefined);
|
H A D | objects-visiting-inl.h | 704 Object* undefined = heap->undefined_value(); local 705 return (info->script() != undefined) && 706 (reinterpret_cast<Script*>(info->script())->source() != undefined);
|
H A D | mark-compact.h | 447 static void ClearNextCandidate(JSFunction* candidate, Object* undefined) { argument 448 DCHECK(undefined->IsUndefined()); 449 candidate->set_next_function_link(undefined, SKIP_WRITE_BARRIER);
|
/external/v8/test/cctest/compiler/ |
H A D | function-tester.h | 88 return Execution::Call(isolate, function, undefined(), 2, args, false); 121 CheckCall(expected, a, undefined()); 125 CheckCall(expected, undefined(), undefined()); 136 void CheckTrue(Handle<Object> a) { CheckCall(true_value(), a, undefined()); } 147 CheckCall(false_value(), a, undefined()); 178 Handle<Object> undefined() { return isolate->factory()->undefined_value(); } function in class:v8::internal::compiler::FunctionTester
|
/external/v8/src/ |
H A D | compilation-cache.cc | 72 Object* undefined = isolate()->heap()->undefined_value(); local 74 if (tables_[i] != undefined) { 122 // an undefined name to have the same origin.
|
H A D | hydrogen-escape-analysis.cc | 75 HConstant* undefined = graph()->GetConstantUndefined(); local 78 state->SetOperandAt(index, undefined);
|
H A D | code-stubs-hydrogen.cc | 210 HValue* undefined = graph()->GetConstantUndefined(); local 212 builder.IfNot<HCompareObjectEqAndBranch, HValue*>(undefined, undefined); 215 return undefined; 332 HValue* undefined = graph()->GetConstantUndefined(); local 345 undefined); 401 HValue* undefined = graph()->GetConstantUndefined(); local 410 undefined); 1546 // Initialize the rest of the slots to undefined.
|
/external/lldb/include/lldb/Symbol/ |
H A D | UnwindPlan.h | 53 undefined, // reg is not available, e.g. volatile reg enumerator in enum:lldb_private::UnwindPlan::Row::RegisterLocation::RestoreType 86 m_type = undefined;
|
/external/llvm/lib/Analysis/ |
H A D | LazyValueInfo.cpp | 66 undefined, enumerator in enum:__anon10350::LVILatticeVal::LatticeValueTy 88 LVILatticeVal() : Tag(undefined), Val(nullptr), Range(1, true) {} 108 bool isUndefined() const { return Tag == undefined; } 278 return OS << "undefined";
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | SCCP.cpp | 59 /// undefined - This LLVM Value has no known value yet. 60 undefined, enumerator in enum:__anon11074::LatticeVal::LatticeValueTy 85 LatticeVal() : Val(nullptr, undefined) {} 87 bool isUndefined() const { return getLatticeValue() == undefined; } 380 // Undef values remain undefined. 411 ; // Undef values remain undefined. 556 if (!CI) { // Overdefined or undefined condition? 672 // If there are no executable operands, the PHI remains undefined. 703 // this is the case, the PHI remains undefined. 917 // If operands are still undefined, wai [all...] |
/external/v8/src/compiler/ |
H A D | ast-graph-builder.cc | 104 // Return 'undefined' in case we can fall off the end. 182 // Bind all local variables to undefined. 625 // Check for undefined or null before entering loop. 1779 Node* undefined = jsgraph()->UndefinedConstant(); local 1780 value = BuildHoleCheckSilent(value, undefined, value); 1804 Node* undefined = jsgraph()->UndefinedConstant(); local 1805 value = BuildHoleCheckSilent(value, undefined, value);
|
H A D | typer.cc | 23 Type* undefined = Type::Undefined(zone); local 51 Type* arg2 = Type::Union(unsigned32, undefined, zone); 486 // TODO(rossberg): Use range types and sized array types to filter undefined.
|