/third_party/typescript/tests/baselines/reference/ |
H A D | partiallyDiscriminantedUnions.js | 32 class Circle { kind: "circle"; } 34 type Shape = Circle | Square; 44 let c: Circle = s; 63 var Circle = /** @class */ (function () {
64 function Circle() {
66 return Circle;
|
H A D | discriminatedUnionErrorMessage.js | 4 type Circle = { kind: "cr", radius: number } 8 | Circle;
|
H A D | exhaustiveSwitchStatements1.js | 60 interface Circle { kind: "circle"; radius: number; } 64 type Shape = Square | Rectangle | Circle | Triangle; 496 interface Circle {
504 type Shape = Square | Rectangle | Circle | Triangle;
|
H A D | typeGuardNarrowsIndexedAccessOfKnownProperty1.js | 11 interface Circle { 15 type Shape = Square | Rectangle | Circle;
|
H A D | discriminatedUnionTypes1.js | 13 interface Circle { 18 type Shape = Square | Rectangle | Circle;
|
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | object-prototype-proto.js | 34 var Circle = function () {}; function 36 var circle = new Circle();
|
/third_party/skia/gm/ |
H A D | circularclips.cpp | 30 fCircle1 = SkPath::Circle(fX1, fY, fR, SkPathDirection::kCW); 31 fCircle2 = SkPath::Circle(fX2, fY, fR, SkPathDirection::kCW);
|
H A D | bug530095.cpp | 19 SkPath path1 = SkPath::Circle(200, 200, 124), in DEF_SIMPLE_GM() 20 path2 = SkPath::Circle(2, 2, 1.24f); in DEF_SIMPLE_GM()
|
H A D | convexpaths.cpp | 69 fPaths.push_back(SkPath::Circle(50, 50, 50, SkPathDirection::kCW)); in makePaths() 227 fPaths.push_back(SkPath::Circle(0, 0, 1.2f)); in makePaths()
|
H A D | complexclip3.cpp | 47 SkPath clipSimple = SkPath::Circle(70, 50, 20);
|
H A D | aaa.cpp | 142 SkPath path = SkPath::Circle(100, 100, 30); in DEF_SIMPLE_GM()
|
H A D | inversepaths.cpp | 30 return SkPath::Circle(cx, cy, d/2, SkPathDirection::kCW); in generate_circle()
|
H A D | patheffects.cpp | 105 return SkPath2DPathEffect::Make(m, SkPath::Circle(0,0,5)); in MakeTileEffect() 194 SkPath path0 = SkPath::Circle(100, 100, 60),
|
H A D | dashcircle.cpp | 57 SkPath circle = SkPath::Circle(0, 0, radius);
|
H A D | shadowutils.cpp | 55 paths.push_back(SkPath::Circle(25, 25, 25)); in draw_paths()
|
/third_party/skia/src/gpu/effects/ |
H A D | GrOvalEffect.cpp | 22 return GrFragmentProcessor::Circle(std::move(inputFP), edgeType, in Make()
|
/third_party/skia/tools/fonts/ |
H A D | ToolUtilsFont.cpp | 98 builder.setGlyph(index, width/upem, SkPath::Circle(50, -50, 75).makeTransform(scale)); in sample_user_typeface()
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGCircle.cpp | 45 SkPath path = SkPath::Circle(pos.x(), pos.y(), r); in onAsPath()
|
/third_party/skia/src/gpu/ops/ |
H A D | GrOvalOpFactory.cpp | 1169 fCircles.emplace_back(Circle{ 1182 fCircles.emplace_back(Circle{ 1207 Circle{color, 1222 Circle{color, 1490 struct Circle { 1504 SkSTArray<1, Circle, true> fCircles; 1598 fCircles.push_back(Circle{ 1815 struct Circle { 1828 SkSTArray<1, Circle, true> fCircles;
|
/third_party/skia/src/gpu/ |
H A D | GrFragmentProcessor.h | 164 static GrFPResult Circle(std::unique_ptr<GrFragmentProcessor>,
|
H A D | GrFragmentProcessor.cpp | 673 GrFPResult GrFragmentProcessor::Circle(std::unique_ptr<GrFragmentProcessor> inputFP, 717 return GrFPSuccess(GrSkSLFP::Make(effect, "Circle", std::move(inputFP),
|
/third_party/skia/include/core/ |
H A D | SkPath.h | 74 static SkPath Circle(SkScalar center_x, SkScalar center_y, SkScalar radius, 1114 four kConic_Verb, and kClose_Verb. Circle begins at: (x + radius, y), continuing
|
/third_party/skia/src/core/ |
H A D | SkPath.cpp | 3475 SkPath SkPath::Circle(SkScalar x, SkScalar y, SkScalar r, SkPathDirection dir) { in Circle() function in SkPath
|
/third_party/rust/crates/libc/src/ |
H A D | psp.rs | 1004 Circle,
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |