Searched refs:newx (Results 1 – 2 of 2) sorted by relevance
/external/skia/src/core/ |
D | SkEdge.cpp | 256 SkFixed newx, newy; in updateQuadratic() local 264 newx = oldx + (dx >> shift); in updateQuadratic() 271 newx = fQLastX; in updateQuadratic() 274 success = this->updateLine(oldx, oldy, newx, newy); in updateQuadratic() 275 oldx = newx; in updateQuadratic() 279 fQx = newx; in updateQuadratic() 431 SkFixed newx, newy; in updateCubic() local 440 newx = oldx + (fCDx >> dshift); in updateCubic() 451 newx = fCLastX; in updateCubic() 454 success = this->updateLine(oldx, oldy, newx, newy); in updateCubic() [all …]
|
/external/v8/test/mjsunit/ |
D | json.js | 291 function newx(k, v) { return (k == "x") ? new v(42) : v; } function 292 assertEquals('{"x":"42"}', JSON.stringify({x: String}, newx)); 293 assertEquals('{"x":42}', JSON.stringify({x: Number}, newx)); 294 assertEquals('{"x":true}', JSON.stringify({x: Boolean}, newx));
|