Searched defs:o7 (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/v8/test/webkit/
H A Dproperty-getters-and-setters.js78 o7 = { 'a':7, set x(b) { this.a = b; }} class
79 o7.prototype = { get x() { return 42; }}
80 shouldBeUndefined("o7.x")
H A Ddelete-getters-setters.js112 var o7 = { b: 1 };
113 o7.__defineGetter__("a", function() {});
114 o7.__defineGetter__("b", function() {});
115 delete o7.a;
116 shouldThrow("o7.b.property");
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dsimple-inlining.js155 var o7 = {x:[42,43,44]};
156 o7.foo = function() { return this.x[0]; };
157 for (var i = 0; i < 5; i++) TestInlineThisX0(o7);
159 TestInlineThisX0(o7);
160 TestInlineThisX0({foo: o7.foo, x:[42,0,0]});
/external/chromium_org/skia/ext/
H A Dskia_utils_win.cc22 SK_COMPILE_ASSERT(sizeof(RECT().right) == sizeof(SkIRect().fRight), o7); member in namespace:__anon10683

Completed in 548 milliseconds