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

1 2

  /external/llvm/test/MC/ARM/
udf-arm-diagnostics.s 7 undefined: label
udf-arm.s 7 undefined: label
udf-thumb-2-diagnostics.s 7 undefined: label
udf-thumb-2.s 7 undefined: label
udf-thumb-diagnostics.s 7 undefined: label
udf-thumb.s 7 undefined: label
  /external/chromium_org/v8/test/webkit/
char-at.js 28 var undefined; variable
32 ["", undefined],
46 ["x", undefined],
60 ["xy", undefined],
  /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/chromium_org/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/chromium_org/v8/src/
objects-visiting.cc 210 Object* undefined = heap->undefined_value(); local
211 Object* head = undefined;
215 while (list != undefined) {
220 if (head == undefined) {
251 WeakListVisitor<T>::SetWeakNext(tail, undefined);
260 Object* undefined = heap->undefined_value(); local
261 while (list != undefined) {
264 WeakListVisitor<T>::SetWeakNext(candidate, undefined);
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.
hydrogen-escape-analysis.cc 75 HConstant* undefined = graph()->GetConstantUndefined(); local
78 state->SetOperandAt(index, undefined);
objects-visiting-inl.h 729 Object* undefined = heap->undefined_value(); local
730 return (info->script() != undefined) &&
731 (reinterpret_cast<Script*>(info->script())->source() != undefined);
    [all...]
code-stubs-hydrogen.cc 205 HValue* undefined = graph()->GetConstantUndefined(); local
207 builder.IfNot<HCompareObjectEqAndBranch, HValue*>(undefined, undefined);
210 return undefined;
330 HValue* undefined = graph()->GetConstantUndefined(); local
343 undefined);
399 HValue* undefined = graph()->GetConstantUndefined(); local
408 undefined);
    [all...]
ic.cc 442 Object* undefined = heap->undefined_value(); local
448 it.rinfo()->set_target_object(undefined, SKIP_WRITE_BARRIER);
584 // If the object is undefined or null it's illegal to try to get any
    [all...]
serialize.cc 766 // were encountered then it needs to be initialized to undefined.
1432 Object* undefined = isolate()->heap()->undefined_value(); local
    [all...]
  /external/ltrace/sysdeps/linux-gnu/ia64/
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, undefined}, /* 14 *
    [all...]
  /external/lldb/include/lldb/Symbol/
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/
LazyValueInfo.cpp 63 /// undefined - This Value has no known value yet.
64 undefined, enumerator in enum:__anon29456::LVILatticeVal::LatticeValueTy
86 LVILatticeVal() : Tag(undefined), Val(nullptr), Range(1, true) {}
106 bool isUndefined() const { return Tag == undefined; }
280 return OS << "undefined";
587 LVILatticeVal Result; // Start Undefined.
663 LVILatticeVal Result; // Start Undefined.
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 59 /// undefined - This LLVM Value has no known value yet.
60 undefined, enumerator in enum:__anon30088::LatticeVal::LatticeValueTy
85 LatticeVal() : Val(nullptr, undefined) {}
87 bool isUndefined() const { return getLatticeValue() == undefined; }
379 // Undef values remain undefined.
410 ; // Undef values remain undefined.
555 if (!CI) { // Overdefined or undefined condition?
671 // If there are no executable operands, the PHI remains undefined.
702 // this is the case, the PHI remains undefined.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptSource.js 209 "undefined": true,
223 // FIXME(33716): typeof document.all is always 'undefined'.
379 if (typeof result === "undefined") {
380 inspectedWindow.console.error("Web Inspector error: InjectedScript.%s returns undefined", methodName);
650 return undefined;
824 * @return {string|undefined} undefined if success or an error message
858 return undefined;
963 // document.all is reported as undefined, but we still want to process it.
964 return (typeof object === "undefined") && InjectedScriptHost.isHTMLAllCollection(object)
    [all...]
  /external/chromium_org/third_party/codesighs/
msmap2tsv.c 1616 const char* undefined = "UNDEF"; local
    [all...]
  /external/chromium_org/v8/src/arm/
code-stubs-arm.cc 778 // Normally here we fall through to return_equal, but undefined is
779 // special: (undefined == undefined) == true, but
780 // (undefined <= undefined) == false! See ECMAScript 11.8.5.
788 // undefined <= undefined should fail.
791 // undefined >= undefined should fail.
4334 Register undefined = r5; local
    [all...]

Completed in 745 milliseconds

1 2