Home
last modified time | relevance | path

Searched refs:kLeft (Results 1 - 25 of 55) sorted by relevance

123

/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/
H A Dint128_stream_test.cc92 constexpr std::ios::fmtflags kLeft = std::ios::left; member
253 {0, kLeft, /*width = */ 0, "0"}, in GetInt128FormatCases()
254 {0, kLeft, /*width = */ 6, "0_____"}, in GetInt128FormatCases()
255 {0, kLeft | kPos, /*width = */ 0, "+0"}, in GetInt128FormatCases()
256 {0, kLeft | kPos, /*width = */ 6, "+0____"}, in GetInt128FormatCases()
257 {0, kLeft | kBase, /*width = */ 0, "0"}, in GetInt128FormatCases()
258 {0, kLeft | kBase, /*width = */ 6, "0_____"}, in GetInt128FormatCases()
259 {0, kLeft | kBase | kPos, /*width = */ 0, "+0"}, in GetInt128FormatCases()
260 {0, kLeft | kBase | kPos, /*width = */ 6, "+0____"}, in GetInt128FormatCases()
261 {0, kLeft | kUppe in GetInt128FormatCases()
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-number-gen.cc19 auto lhs = Parameter<Object>(Descriptor::kLeft); \
51 auto lhs = Parameter<Object>(Descriptor::kLeft); \
79 auto lhs = Parameter<Object>(Descriptor::kLeft); \
149 auto lhs = Parameter<Object>(Descriptor::kLeft); \
171 auto lhs = Parameter<Object>(Descriptor::kLeft); \
191 auto lhs = Parameter<Object>(Descriptor::kLeft); in TF_BUILTIN()
206 auto lhs = Parameter<Object>(Descriptor::kLeft); in TF_BUILTIN()
219 auto lhs = Parameter<Object>(Descriptor::kLeft); in TF_BUILTIN()
234 auto lhs = Parameter<Object>(Descriptor::kLeft); in TF_BUILTIN()
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-graph-printer.cc51 kLeft = 1 << 1, enumerator
60 Connect(kLeft); in AddHorizontal()
75 case kLeft: in ToString()
81 case kTop | kLeft: in ToString()
85 case kBottom | kLeft: in ToString()
91 case kLeft | kRight: in ToString()
93 case kTop | kBottom | kLeft: in ToString()
97 case kLeft | kRight | kTop: in ToString()
99 case kLeft | kRight | kBottom: in ToString()
101 case kTop | kLeft | kRigh in ToString()
[all...]
/third_party/skia/modules/skparagraph/src/
H A DParagraphStyle.cpp41 return (fTextDirection == TextDirection::kLtr) ? TextAlign::kLeft : TextAlign::kRight; in effective_align()
43 return (fTextDirection == TextDirection::kLtr) ? TextAlign::kRight : TextAlign::kLeft; in effective_align()
H A DTextTabAlign.cpp48 if (fTabPosition < 1.0 || fTabAlignMode < TextAlign::kLeft || TextAlign::kCenter < fTabAlignMode || in init()
68 if (tabAlignMode == TextAlign::kLeft) { in init()
71 tabAlignMode = TextAlign::kLeft; in init()
/third_party/skia/modules/skplaintexteditor/app/
H A Deditor_application.cpp63 case skui::Key::kLeft: return Editor::Movement::kLeft; in convert()
321 case skui::Key::kLeft:
341 auto pos = fEditor.move(Editor::Movement::kLeft, fTextPos);
354 case skui::Key::kLeft:
/third_party/skia/gm/
H A Dlazytiling.cpp114 const int kLeft = contentRect.fLeft; in create_bitmap() local
129 char* dst = static_cast<char*>(bigBM.getAddr(kLeft, fullSize.height() - kTop - 1)); in create_bitmap()
136 char* dst = static_cast<char*>(bigBM.getAddr(kLeft, kTop)); in create_bitmap()
/third_party/skia/tools/skui/
H A DInputState.h11 kLeft, // only valid for fling member in skui::InputState
H A DKey.h32 kLeft, member in skui::Key
/third_party/skia/experimental/sktext/editor/
H A DDefaults.h14 const TextAlign DEFAULT_TEXT_ALIGN = TextAlign::kLeft;
H A DEditor.cpp75 if (key == skui::Key::kLeft) { in moveCursor()
216 case skui::Key::kLeft: in onKey()
/third_party/lzma/CPP/7zip/UI/Console/
H A DList.cpp168 kLeft, enumerator
197 { kpidMTime, " Date Time", kLeft, kLeft, 0, 19 },
201 { kpidPath, "Name", kLeft, kLeft, 2, 24 }
245 case kLeft: numLeftSpaces = 0; break; in PrintUString()
268 case kLeft: numLeftSpaces = 0; break; in PrintString()
291 case kLeft: numLeftSpaces = 0; break; in PrintStringToString()
/third_party/skia/experimental/sktext/src/
H A DPaint.cpp10 return drawText(std::move(text), canvas, TextDirection::kLtr, TextAlign::kLeft, foregroundPaint, backgroundPaint, SkString("Roboto"), 14, SkFontStyle::Normal(), x, y); in drawText()
17 TextDirection::kLtr, TextAlign::kLeft, foregroundPaint, backgroundPaint, SkString("Roboto"), 14, SkFontStyle::Normal(), in drawText()
/third_party/skia/experimental/sktext/samples/
H A DText.cpp99 drawLine(canvas, width, height, line, TextAlign::kLeft, TextDirection::kLtr);
108 drawLine(canvas, width, height, line, TextAlign::kLeft, TextDirection::kRtl);
/third_party/node/deps/v8/src/compiler/
H A Dpersistent-map.h43 enum Bit : int { kLeft = 0, kRight = 1 };
136 // Return the {FocusedTree} representing the left (bit==kLeft) or right
209 : kLeft;
493 if (const FocusedTree* left_child = GetChild(current, *level, kLeft)) { in FindLeftmost()
499 (*path)[*level] = GetChild(current, *level, kLeft); in FindLeftmost()
/third_party/skia/modules/androidkit/src/
H A DText.cpp35 skia::text::TextDirection::kLtr, skia::text::TextAlign::kLeft, in Text_RenderText()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
H A Dextension.cc28 s.append(FlagsContains(v, Flags::kLeft) ? "-" : ""); in FlagsToString()
H A Dparser.cc41 constexpr auto f_left = Flags::kLeft;
89 FlagsContains(conv.flags, Flags::kLeft) ? 1 : 0, in CheckFastPathSetting()
/third_party/skia/modules/canvaskit/
H A Dviewer_bindings.cpp64 .value("Left", skui::InputState::kLeft); in EMSCRIPTEN_BINDINGS()
H A Dparagraph_bindings_gen.cpp81 .value("Left", para::TextAlign::kLeft) in EMSCRIPTEN_BINDINGS()
/third_party/skia/modules/skplaintexteditor/include/
H A Deditor.h64 kLeft, member in SkPlainTextEditor::Editor::Movement
/third_party/skia/modules/skparagraph/include/
H A DDartTypes.h53 kLeft, member in skia::textlayout::TextAlign
/third_party/node/deps/v8/src/codegen/
H A Dinterface-descriptors.h1516 DEFINE_PARAMETERS(kLeft, kRight)
1525 DEFINE_PARAMETERS(kLeft, kRight)
1534 DEFINE_PARAMETERS_NO_CONTEXT(kLeft, kRight, kSlot)
1535 DEFINE_PARAMETER_TYPES(MachineType::AnyTagged(), // kLeft
1546 DEFINE_PARAMETERS_NO_CONTEXT(kLeft, kRight, kSlot)
1547 DEFINE_PARAMETER_TYPES(MachineType::AnyTagged(), // kLeft
1965 DEFINE_PARAMETERS(kLeft, kRight, kSlot, kFeedbackVector)
1966 DEFINE_PARAMETER_TYPES(MachineType::AnyTagged(), // kLeft
2022 DEFINE_PARAMETERS(kLeft, kRight, kSlot, kFeedbackVector)
2023 DEFINE_PARAMETER_TYPES(MachineType::AnyTagged(), // kLeft
[all...]
/third_party/skia/tests/
H A DGrQuadCropTest.cpp70 ASSERTF(quad.fEdgeFlags & GrQuadAAFlags::kLeft, "Expected left edge AA set"); in run_crop_axis_aligned_test()
72 ASSERTF(!(quad.fEdgeFlags & GrQuadAAFlags::kLeft), "Expected left edge AA unset"); in run_crop_axis_aligned_test()
/third_party/skia/src/pathops/
H A DSkPathOpsWinding.cpp32 kLeft, member in SkOpRayDir
40 "kLeft",
95 return fabs(fSlope.fX) < fabs(fSlope.fY) ? SkOpRayDir::kLeft : SkOpRayDir::kTop; in makeTestBase()

Completed in 17 milliseconds

123