Searched refs:newx (Results 1 – 3 of 3) sorted by relevance
/external/skia/src/core/ |
D | SkEdge.cpp | 265 SkFixed newx, newy; in updateQuadratic() local 273 newx = oldx + (dx >> shift); in updateQuadratic() 280 newx = fQLastX; in updateQuadratic() 283 success = this->updateLine(oldx, oldy, newx, newy); in updateQuadratic() 284 oldx = newx; in updateQuadratic() 288 fQx = newx; in updateQuadratic() 428 SkFixed newx, newy; in updateCubic() local 437 newx = oldx + (fCDx >> dshift); in updateCubic() 448 newx = fCLastX; in updateCubic() 458 success = this->updateLine(oldx, oldy, newx, newy); in updateCubic() [all …]
|
/external/chromium_org/third_party/skia/src/core/ |
D | SkEdge.cpp | 281 SkFixed newx, newy; in updateQuadratic() local 289 newx = oldx + (dx >> shift); in updateQuadratic() 296 newx = fQLastX; in updateQuadratic() 299 success = this->updateLine(oldx, oldy, newx, newy); in updateQuadratic() 300 oldx = newx; in updateQuadratic() 304 fQx = newx; in updateQuadratic() 455 SkFixed newx, newy; in updateCubic() local 464 newx = oldx + (fCDx >> dshift); in updateCubic() 475 newx = fCLastX; in updateCubic() 485 success = this->updateLine(oldx, oldy, newx, newy); in updateCubic() [all …]
|
/external/chromium_org/v8/test/mjsunit/ |
D | json.js | 338 function newx(k, v) { return (k == "x") ? new v(42) : v; } function 339 assertEquals('{"x":"42"}', JSON.stringify({x: String}, newx)); 340 assertEquals('{"x":42}', JSON.stringify({x: Number}, newx)); 341 assertEquals('{"x":true}', JSON.stringify({x: Boolean}, newx));
|