Home
last modified time | relevance | path

Searched refs:kRight (Results 1 - 25 of 49) sorted by relevance

12

/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/
H A Dint128_stream_test.cc94 constexpr std::ios::fmtflags kRight = std::ios::right; member
285 {0, kRight, /*width = */ 0, "0"}, in GetInt128FormatCases()
286 {0, kRight, /*width = */ 6, "_____0"}, in GetInt128FormatCases()
287 {0, kRight | kPos, /*width = */ 0, "+0"}, in GetInt128FormatCases()
288 {0, kRight | kPos, /*width = */ 6, "____+0"}, in GetInt128FormatCases()
289 {0, kRight | kBase, /*width = */ 0, "0"}, in GetInt128FormatCases()
290 {0, kRight | kBase, /*width = */ 6, "_____0"}, in GetInt128FormatCases()
291 {0, kRight | kBase | kPos, /*width = */ 0, "+0"}, in GetInt128FormatCases()
292 {0, kRight | kBase | kPos, /*width = */ 6, "____+0"}, in GetInt128FormatCases()
293 {0, kRight | kUppe in GetInt128FormatCases()
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-number-gen.cc20 auto rhs = Parameter<Object>(Descriptor::kRight); \
52 auto rhs = Parameter<Object>(Descriptor::kRight); \
80 auto rhs = Parameter<Object>(Descriptor::kRight); \
150 auto rhs = Parameter<Object>(Descriptor::kRight); \
172 auto rhs = Parameter<Object>(Descriptor::kRight); \
192 auto rhs = Parameter<Object>(Descriptor::kRight); in TF_BUILTIN()
207 auto rhs = Parameter<Object>(Descriptor::kRight); in TF_BUILTIN()
220 auto rhs = Parameter<Object>(Descriptor::kRight); in TF_BUILTIN()
235 auto rhs = Parameter<Object>(Descriptor::kRight); in TF_BUILTIN()
H A Dbuiltins-string-gen.cc540 auto right = Parameter<String>(Descriptor::kRight); in TF_BUILTIN()
725 auto right = Parameter<String>(Descriptor::kRight); in TF_BUILTIN()
731 auto right = Parameter<String>(Descriptor::kRight); in TF_BUILTIN()
737 auto right = Parameter<String>(Descriptor::kRight); in TF_BUILTIN()
743 auto right = Parameter<String>(Descriptor::kRight); in TF_BUILTIN()
749 auto right = Parameter<String>(Descriptor::kRight); in TF_BUILTIN()
H A Dbuiltins-object-gen.cc1156 const auto right = Parameter<Object>(Descriptor::kRight); in TF_BUILTIN()
1195 auto callable = Parameter<Object>(Descriptor::kRight); in TF_BUILTIN()
1203 auto callable = Parameter<Object>(Descriptor::kRight); in TF_BUILTIN()
1214 auto callable = Parameter<Object>(Descriptor::kRight); in TF_BUILTIN()
1226 auto object = Parameter<Object>(Descriptor::kRight); in TF_BUILTIN()
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-graph-printer.cc52 kRight = 1 << 2, enumerator
61 Connect(kRight); in AddHorizontal()
77 case kRight: in ToString()
83 case kTop | kRight: in ToString()
87 case kBottom | kRight: in ToString()
91 case kLeft | kRight: in ToString()
95 case kTop | kBottom | kRight: in ToString()
97 case kLeft | kRight | kTop: in ToString()
99 case kLeft | kRight | kBottom: in ToString()
101 case kTop | kLeft | kRight | kBotto 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.cpp69 tabAlignMode = TextAlign::kRight; in init()
70 } else if (tabAlignMode == TextAlign::kRight) { in init()
/third_party/skia/modules/skplaintexteditor/app/
H A Deditor_application.cpp64 case skui::Key::kRight: return Editor::Movement::kRight; in convert()
203 return this->moveCursor(Editor::Movement::kRight);
322 case skui::Key::kRight:
332 auto pos = fEditor.move(Editor::Movement::kRight, fTextPos);
356 case skui::Key::kRight:
/third_party/skia/experimental/sktext/samples/
H A DText.cpp101 drawLine(canvas, width, height, line, TextAlign::kRight, TextDirection::kLtr);
110 drawLine(canvas, width, height, line, TextAlign::kRight, TextDirection::kRtl);
177 TextDirection::kRtl, TextAlign::kRight,
/third_party/lzma/CPP/7zip/UI/Console/
H A DList.cpp170 kRight enumerator
198 { kpidAttrib, "Attr", kRight, kCenter, 1, 5 },
199 { kpidSize, "Size", kRight, kRight, 1, 12 },
200 { kpidPackSize, "Compressed", kRight, kRight, 1, 12 },
247 case kRight: numLeftSpaces = numSpaces; break; in PrintUString()
270 case kRight: numLeftSpaces = numSpaces; break; in PrintString()
293 case kRight: numLeftSpaces = numSpaces; break; in PrintStringToString()
/third_party/skia/tools/skui/
H A DInputState.h10 kRight, // only valid for fling member in skui::InputState
H A DKey.h33 kRight, member in skui::Key
/third_party/node/deps/v8/src/compiler/
H A Dpersistent-map.h43 enum Bit : int { kLeft = 0, kRight = 1 };
137 // (bit==kRight) child of the node on the path of {tree} at tree level
208 ? kRight
251 while (current_->key_hash[level_] == kRight || path_[level_] == nullptr) {
494 (*path)[*level] = GetChild(current, *level, kRight); in FindLeftmost()
498 GetChild(current, *level, kRight)) { in FindLeftmost()
/third_party/node/deps/v8/src/ast/
H A Dast-source-ranges.h68 kRight, member in v8::internal::SourceRangeKind
91 return kind == SourceRangeKind::kRight;
296 return kind == SourceRangeKind::kRight;
/third_party/skia/modules/canvaskit/
H A Dviewer_bindings.cpp63 .value("Right", skui::InputState::kRight) in EMSCRIPTEN_BINDINGS()
H A Dparagraph_bindings_gen.cpp82 .value("Right", para::TextAlign::kRight) in EMSCRIPTEN_BINDINGS()
/third_party/skia/experimental/sktext/editor/
H A DEditor.cpp77 } else if (key == skui::Key::kRight) { in moveCursor()
217 case skui::Key::kRight: in onKey()
/third_party/skia/modules/skplaintexteditor/include/
H A Deditor.h66 kRight, member in SkPlainTextEditor::Editor::Movement
/third_party/skia/modules/skparagraph/include/
H A DDartTypes.h54 kRight, 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)
1536 MachineType::AnyTagged(), // kRight
1546 DEFINE_PARAMETERS_NO_CONTEXT(kLeft, kRight, kSlot)
1548 MachineType::TaggedSigned(), // kRight
1965 DEFINE_PARAMETERS(kLeft, kRight, kSlot, kFeedbackVector)
1967 MachineType::AnyTagged(), // kRight
2022 DEFINE_PARAMETERS(kLeft, kRight, kSlot, kFeedbackVector)
2024 MachineType::AnyTagged(), // kRight
[all...]
/third_party/skia/tests/
H A DGrQuadCropTest.cpp77 ASSERTF(quad.fEdgeFlags & GrQuadAAFlags::kRight, "Expected right edge AA set"); in run_crop_axis_aligned_test()
79 ASSERTF(!(quad.fEdgeFlags & GrQuadAAFlags::kRight), "Expected right edge AA unset"); in run_crop_axis_aligned_test()
/third_party/skia/modules/skplaintexteditor/src/
H A Deditor.cpp313 case Editor::Movement::kRight: in move()
413 pos = this->move(Editor::Movement::kRight, pos); in move()
441 pos = this->move(Editor::Movement::kRight, pos)) in paint()
/third_party/skia/experimental/sktext/include/
H A DTypes.h17 kRight, member in skia::text::TextAlign
/third_party/skia/src/gpu/ops/
H A DFillRectOp.cpp48 (uint32_t) (aaFlags & GrQuadAAFlags::kRight), in dump_quad_info()
579 aaFlags |= random->nextBool() ? GrQuadAAFlags::kRight : GrQuadAAFlags::kNone; in GR_DRAW_OP_TEST_DEFINE()
/third_party/node/deps/v8/src/wasm/baseline/arm/
H A Dliftoff-assembler-arm.h391 enum ShiftDirection { kLeft, kRight }; enumerator
402 if (dir == kRight) { in EmitSimdShift()
2885 liftoff::EmitSimdShift<liftoff::kRight, NeonS64, Neon32>(this, dst, lhs, rhs); in emit_i64x2_shr_s()
2890 liftoff::EmitSimdShiftImmediate<liftoff::kRight, NeonS64>(this, dst, lhs, in emit_i64x2_shri_s()
2897 liftoff::EmitSimdShift<liftoff::kRight, NeonU64, Neon32>(this, dst, lhs, rhs); in emit_i64x2_shr_u()
2902 liftoff::EmitSimdShiftImmediate<liftoff::kRight, NeonU64>(this, dst, lhs, in emit_i64x2_shri_u()
3093 liftoff::EmitSimdShift<liftoff::kRight, NeonS32, Neon32>(this, dst, lhs, rhs);
3098 liftoff::EmitSimdShiftImmediate<liftoff::kRight, NeonS32>(this, dst, lhs,
3105 liftoff::EmitSimdShift<liftoff::kRight, NeonU32, Neon32>(this, dst, lhs, rhs);
3110 liftoff::EmitSimdShiftImmediate<liftoff::kRight, NeonU3
[all...]

Completed in 27 milliseconds

12