Searched defs:undefined (Results 1 - 25 of 41) sorted by relevance

12

/external/chromium_org/v8/test/webkit/
H A Dchar-at.js28 var undefined; variable
32 ["", undefined],
46 ["x", undefined],
60 ["xy", undefined],
/external/valgrind/main/gdbserver_tests/
H A Dwatchpoints.c10 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 Dt.c12 static char undefined[10] = "undefined"; variable
111 int len = strlen(undefined);
114 undefined[i] = undef;
/external/chromium_org/v8/test/mjsunit/
H A Dconst-redecl.js132 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...]
H A Ddebug-evaluate-with-context.js60 var context_with_undefined = { undefined: 'kitten' };
61 var global_expression2 = "'cat' + '/' + undefined";
67 assertEquals('cat/undefined', result);
/external/v8/test/mjsunit/
H A Dconst-redecl.js132 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...]
H A Ddebug-evaluate-with-context.js60 var context_with_undefined = { undefined: 'kitten' };
61 var global_expression2 = "'cat' + '/' + undefined";
67 assertEquals('cat/undefined', result);
/external/chromium_org/v8/src/
H A Dhydrogen-escape-analysis.cc77 HConstant* undefined = graph()->GetConstantUndefined(); local
80 state->SetOperandAt(index, undefined);
H A Dcompilation-cache.cc102 Object* undefined = isolate()->heap()->undefined_value(); local
104 if (tables_[i] != undefined) {
152 // an undefined name to have the same origin.
H A Dobjects-visiting-inl.h659 Object* undefined = heap->undefined_value(); local
660 return (info->script() != undefined) &&
661 (reinterpret_cast<Script*>(info->script())->source() != undefined);
H A Ddeoptimizer.cc340 Object* undefined) {
343 Object* remainder_head = undefined;
344 Object* remainder_tail = undefined;
347 while (current != undefined) {
366 function->set_next_function_link(undefined);
375 if (remainder_head == undefined) {
383 if (remainder_tail != undefined) {
384 JSFunction::cast(remainder_tail)->set_next_function_link(undefined);
457 Object* undefined = isolate->heap()->undefined_value(); local
460 SelectCodeToDeoptimize(context, filter, &codes, &zone, undefined);
336 SelectCodeToDeoptimize(Context* context, OptimizedFunctionFilter* filter, ZoneList<Code*>* codes, Zone* zone, Object* undefined) argument
491 Object* undefined = isolate->heap()->undefined_value(); local
[all...]
H A Dcode-stubs-hydrogen.cc232 HValue* undefined = graph()->GetConstantUndefined(); local
234 builder.IfNot<HCompareObjectEqAndBranch, HValue*>(undefined, undefined);
237 return undefined;
338 HValue* undefined = graph()->GetConstantUndefined(); local
349 undefined);
405 HValue* undefined = graph()->GetConstantUndefined(); local
414 undefined);
H A Dmark-compact.h487 static void ClearNextCandidate(JSFunction* candidate, Object* undefined) { argument
488 ASSERT(undefined->IsUndefined());
489 candidate->set_next_function_link(undefined, SKIP_WRITE_BARRIER);
H A Dserialize.cc833 // were encountered then it needs to be initialized to undefined.
1364 // Sentinel is the undefined object, which is a root so it will not normally
1485 // add one entry with 'undefined' which is the sentinel that the deserializer
1488 Object* undefined = isolate->heap()->undefined_value(); local
1489 VisitPointer(&undefined);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DSourceJavaScriptTokenizer.js82 "undefined": "javascript-undef",
/external/v8/src/
H A Dcompilation-cache.cc101 Object* undefined = isolate()->heap()->raw_unchecked_undefined_value(); local
103 if (tables_[i] != undefined) {
150 // an undefined name to have the same origin.
/external/llvm/lib/Analysis/
H A DLazyValueInfo.cpp62 /// undefined - This Value has no known value yet.
63 undefined, enumerator in enum:__anon21066::LVILatticeVal::LatticeValueTy
85 LVILatticeVal() : Tag(undefined), Val(0), Range(1, true) {}
105 bool isUndefined() const { return Tag == undefined; }
279 return OS << "undefined";
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp58 /// undefined - This LLVM Value has no known value yet.
59 undefined, enumerator in enum:__anon21665::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.
914 // If operands are still undefined, wai
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptSource.js101 undefined: true,
114 // FIXME(33716): typeof document.all is always 'undefined'.
281 if (typeof result === "undefined") {
282 inspectedWindow.console.error("Web Inspector error: InjectedScript.%s returns undefined", methodName);
522 return undefined;
666 * @return {string|undefined} undefined if success or an error message
700 return undefined;
791 // document.all is reported as undefined, but we still want to process it.
792 return (typeof object === "undefined")
[all...]
/external/chromium_org/third_party/codesighs/
H A Dmsmap2tsv.c1616 const char* undefined = "UNDEF"; local
1623 sprintf(objectBuf, "%s:%s:%s", undefined, inModule, inSegment);
1657 symScope = undefined;
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.cc2538 HConstant* undefined = graph()->GetConstantUndefined(); local
2542 undefined,
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.cc2669 HConstant* undefined = graph()->GetConstantUndefined(); local
2673 undefined,
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.cc2458 HConstant* undefined = graph()->GetConstantUndefined(); local
2462 undefined,
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.cc2475 HConstant* undefined = graph()->GetConstantUndefined(); local
2479 undefined,
/external/v8/src/arm/
H A Dlithium-arm.cc219 stream->Add(nil() == kNullValue ? "null" : "undefined");
2267 HConstant* undefined = graph()->GetConstantUndefined(); local
2271 undefined,

Completed in 1818 milliseconds

12