/external/chromium_org/v8/test/webkit/ |
dfg-tear-off-arguments-not-activation-expected.txt | 29 PASS thingy.length is 1 30 PASS thingy[0] is false 31 PASS thingy.length is 1 32 PASS thingy[0] is false 33 PASS thingy.length is 1 34 PASS thingy[0] is false 35 PASS thingy.length is 1 36 PASS thingy[0] is false 37 PASS thingy.length is 1 38 PASS thingy[0] is fals [all...] |
dfg-tear-off-function-dot-arguments-expected.txt | 29 PASS thingy.length is 1 30 PASS thingy[0] is false 31 PASS thingy.length is 1 32 PASS thingy[0] is false 33 PASS thingy.length is 1 34 PASS thingy[0] is false 35 PASS thingy.length is 1 36 PASS thingy[0] is false 37 PASS thingy.length is 1 38 PASS thingy[0] is fals [all...] |
dfg-cfg-simplify-phantom-get-local-on-same-block-set-local-expected.txt | 29 PASS thingy(o) is 42 30 PASS thingy(o) is 42 31 PASS thingy(o) is 42 32 PASS thingy(o) is 42 33 PASS thingy(o) is 42 34 PASS thingy(o) is 42 35 PASS thingy(o) is 42 36 PASS thingy(o) is 42 37 PASS thingy(o) is 42 38 PASS thingy(o) is 4 [all...] |
dfg-dead-speculation-expected.txt | 29 PASS foo(thingy, i) is 10 31 PASS foo(thingy, i) is 10 33 PASS foo(thingy, i) is 10 35 PASS foo(thingy, i) is 10 37 PASS foo(thingy, i) is 10 39 PASS foo(thingy, i) is 10 41 PASS foo(thingy, i) is 10 43 PASS foo(thingy, i) is 10 45 PASS foo(thingy, i) is 10 47 PASS foo(thingy, i) is 1 [all...] |
dfg-proto-access-inline-osr-exit-expected.txt | 29 PASS foo({g:new Thingy()}) is 42 30 PASS foo({g:new Thingy()}) is 42 31 PASS foo({g:new Thingy()}) is 42 32 PASS foo({g:new Thingy()}) is 42 33 PASS foo({g:new Thingy()}) is 42 34 PASS foo({g:new Thingy()}) is 42 35 PASS foo({g:new Thingy()}) is 42 36 PASS foo({g:new Thingy()}) is 42 37 PASS foo({g:new Thingy()}) is 42 38 PASS foo({g:new Thingy()}) is 4 [all...] |
dfg-put-by-val-setter-then-get-by-val-expected.txt | 30 PASS thingy is 0 32 PASS thingy is 1 34 PASS thingy is 2 36 PASS thingy is 3 38 PASS thingy is 4 40 PASS thingy is 5 42 PASS thingy is 6 44 PASS thingy is 7 46 PASS thingy is 8 48 PASS thingy is [all...] |
throw-from-finally.js | 38 throw "2:thingy"; 47 throw "3:thingy"; 56 throw "4:thingy"; 61 throw "4:another thingy"; 80 shouldBe("\"\" + events", "\"1:try,1:finally,2:finally,2:thingy,3:thingy,3:finally,4:thingy,4:finally,4:another thingy,5:hi,5:wat\"");
|
dfg-constant-fold-logical-not-branch.js | 29 if (!!o.thingy) 30 return o.thingy(42); 36 if (!o.thingy) 39 return o.thingy(57); 46 thingy: function(x) { return x + 1; },
|
dfg-call-method-hit-watchpoint.js | 28 function Thingy() { 31 Thingy.prototype = { 41 var o = new Thingy(); 45 Thingy.prototype.foo = function() { return 56; }
|
throw-from-finally-expected.txt | 29 PASS "" + events is "1:try,1:finally,2:finally,2:thingy,3:thingy,3:finally,4:thingy,4:finally,4:another thingy,5:hi,5:wat"
|
indexed-setter-on-global-object.js | 28 var thingy; variable 31 thingy = value; 36 shouldBe("thingy", "\"foo\"");
|
dfg-dead-speculation.js | 33 var thingy = {f:42}; 39 thingy = {f:{valueOf:function(){ variable = 24; return 5; }}}; 42 shouldBe("foo(thingy, i)", "10");
|
dfg-proto-access-inline-osr-exit.js | 32 function Thingy() { 37 Thingy.prototype = myProto; 42 shouldBe("foo({g:new Thingy()})", "42");
|
dfg-put-by-val-setter-then-get-by-val.js | 34 var thingy; variable 36 "-1", function(x) { thingy = x; } 44 shouldBe("thingy", "" + i);
|
dfg-tear-off-arguments-not-activation.js | 41 var thingy = foo(false); 42 shouldBe("thingy.length", "1"); 43 shouldBe("thingy[0]", "false");
|
dfg-tear-off-function-dot-arguments.js | 41 var thingy = foo(false); 42 shouldBe("thingy.length", "1"); 43 shouldBe("thingy[0]", "false");
|
dfg-ensure-non-array-array-storage-on-window.js | 73 var thingy = false; variable 74 w.__defineSetter__(1, function(value) { thingy = value; }); 76 shouldBe("thingy", "false"); 81 // thingy, to detect that for index 1 we fall through the proxy to the real window object. 84 shouldBe("thingy", "42");
|
dfg-cfg-simplify-phantom-get-local-on-same-block-set-local.js | 47 function thingy(o) { function 62 shouldBe("thingy(o)", "42");
|
/external/compiler-rt/test/tsan/libcxx/ |
std_shared_ptr.cc | 13 auto thingy = std::make_shared<int>(42); local 14 t1 = std::thread([thingy, &v1] { v1 = *thingy; }); 15 t2 = std::thread([thingy, &v2] { v2 = *thingy; });
|
/external/llvm/test/MC/COFF/ |
rdata.ll | 5 @"\01?thingy@@3Ufoo@@B" = constant %struct.foo zeroinitializer, align 4
|
bss_section.ll | 5 @"\01?thingy@@3Ufoo@@B" = global %struct.foo zeroinitializer, align 4
|
/external/chromium_org/content/test/plugin/ |
plugin_npobject_identity_test.cc | 69 NPObject* thingy = HostFunctions()->createobject(id(), GetNPThingyClass()); local 71 OBJECT_TO_NPVARIANT(thingy, func_args[0]); 72 OBJECT_TO_NPVARIANT(thingy, func_args[1]); 82 HostFunctions()->releaseobject(thingy);
|
/external/clang/test/SemaObjC/ |
nowarn-superclass-method-mismatch.m | 8 @property (nonatomic) NSString *thingy;
|
/external/clang/test/SemaCXX/ |
warn-missing-noreturn.cpp | 115 template <typename T> void thingy(T thing) { function in namespace:PR10801 122 thingy(f); 123 thingy(b);
|
/external/chromium_org/v8/test/mjsunit/es7/ |
object-observe.js | 521 function Thingy(a, b, c) { 526 Thingy.MULTIPLY = 'multiply'; 527 Thingy.INCREMENT = 'increment'; 528 Thingy.INCREMENT_AND_MULTIPLY = 'incrementAndMultiply'; 530 Thingy.prototype = { 535 notifier.performChange(Thingy.INCREMENT, function() { 549 notifier.performChange(Thingy.MULTIPLY, function() { 563 notifier.performChange(Thingy.INCREMENT_AND_MULTIPLY, function() { 575 Thingy.observe = function(thingy, callback) [all...] |