/third_party/typescript/tests/baselines/reference/ |
H A D | partiallyDiscriminantedUnions.js | 31 class Square { kind: "square"; } 34 type Shape = Circle | Square; 58 var Square = /** @class */ (function () {
59 function Square() {
61 return Square;
|
H A D | discriminatedUnionErrorMessage.js | 2 type Square = { kind: "sq", size: number } 6 | Square
|
H A D | exhaustiveSwitchStatements1.js | 56 interface Square { kind: "square"; size: number; } 64 type Shape = Square | Rectangle | Circle | Triangle; 487 interface Square {
504 type Shape = Square | Rectangle | Circle | Triangle;
|
H A D | typeGuardNarrowsIndexedAccessOfKnownProperty1.js | 2 interface Square { 15 type Shape = Square | Rectangle | Circle;
|
H A D | discriminatedUnionTypes1.js | 2 interface Square { 18 type Shape = Square | Rectangle | Circle;
|
/third_party/skia/src/sfnt/ |
H A D | SkPanose.h | 35 Square = 6, member in SkPanose::Data::TextAndDisplay::SerifStyle 370 Square = 6, member in SkPanose::Data::Decorative::SerifVariant 410 Square = 3, member in SkPanose::Data::Decorative::Topology
|
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A D | bignum.h | 58 void Square();
|
H A D | bignum.cc | 355 void Bignum::Square() { 489 Square();
|
/third_party/icu/icu4c/source/i18n/ |
H A D | double-conversion-bignum.h | 72 void Square();
|
H A D | double-conversion-bignum.cpp | 369 void Bignum::Square() { 503 Square();
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | double-conversion-bignum.h | 72 void Square();
|
H A D | double-conversion-bignum.cpp | 369 void Bignum::Square() { 503 Square();
|
/third_party/node/deps/v8/src/base/numbers/ |
H A D | bignum.h | 38 void Square();
|
H A D | bignum.cc | 304 void Bignum::Square() { in MultiplyByPowerOfTen() function in v8::base::Bignum 436 Square(); in AssignPowerUInt16()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | double-conversion-bignum.h | 72 void Square();
|
H A D | double-conversion-bignum.cpp | 368 void Bignum::Square() { 502 Square();
|
/third_party/icu/vendor/double-conversion/upstream/test/cctest/ |
H A D | test-bignum.cc | 1366 TEST(Square) { in TEST() 1371 bignum.Square(); in TEST() 1376 bignum.Square(); in TEST() 1381 bignum.Square(); in TEST() 1386 bignum.Square(); in TEST() 1391 bignum.Square(); in TEST()
|
/third_party/skia/modules/canvaskit/htmlcanvas/ |
H A D | canvas2dcontext.js | 319 case CanvasKit.StrokeCap.Square: 332 this._paint.setStrokeCap(CanvasKit.StrokeCap.Square);
|
/third_party/skia/modules/canvaskit/ |
H A D | externs.js | 943 Square: {},
|
/third_party/skia/src/ports/ |
H A D | SkTypeface_win_dw.cpp | 574 SerifStyle::Square == serifStyle ||
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 6977 static void Square(ImGuiSizeCallbackData* data) { data->DesiredSize.x = data->DesiredSize.y = IM_MAX(data->DesiredSize.x, data->DesiredSize.y); } function 6988 "Custom: Always Square", 7000 if (type == 5) ImGui::SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, FLT_MAX), CustomConstraints::Square); // Always Square member in CustomConstraints 7222 draw_list->AddRect(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 0.0f, ImDrawFlags_None, th); x += sz + spacing; // Square 7223 draw_list->AddRect(ImVec2(x, y), ImVec2(x + sz, y + sz), col, rounding, ImDrawFlags_None, th); x += sz + spacing; // Square with all rounded corners 7224 draw_list->AddRect(ImVec2(x, y), ImVec2(x + sz, y + sz), col, rounding, corners_tl_br, th); x += sz + spacing; // Square with two rounded corners 7244 draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + sz, y + sz), col); x += sz + spacing; // Square 7245 draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 10.0f); x += sz + spacing; // Square with all rounded corners 7246 draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 10.0f, corners_tl_br); x += sz + spacing; // Square wit [all...] |