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

  /external/chromium_org/v8/test/webkit/
indexed-setter-on-global-object.js 28 var thingy; variable
31 thingy = value;
36 shouldBe("thingy", "\"foo\"");
dfg-constant-fold-uncaptured-variable-that-is-later-captured.js 28 var thingy = 456; variable
31 return thingy;
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-put-by-val-setter-then-get-by-val.js 34 var thingy; variable
36 "-1", function(x) { thingy = x; }
44 shouldBe("thingy", "" + i);
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-cfg-simplify-phantom-get-local-on-same-block-set-local.js 47 function thingy(o) { function
62 shouldBe("thingy(o)", "42");
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; },
  /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/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/SemaCXX/
warn-missing-noreturn.cpp 115 template <typename T> void thingy(T thing) { function in namespace:PR10801
122 thingy(f);
123 thingy(b);

Completed in 224 milliseconds