Home
last modified time | relevance | path

Searched refs:spacing_ (Results 1 – 12 of 12) sorted by relevance

/external/cronet/third_party/quic_trace/src/tools/render/
Dtable.cc40 spacing_ = state_->ScaleForDpi(8); in Layout()
45 int row_width = 2 * spacing_; in Layout()
46 int row_height = spacing_; in Layout()
53 y_offset += spacing_ / 2; in Layout()
57 row_width += row.label->width() + spacing_ + row.value->width(); in Layout()
66 height_ = y_offset + spacing_; in Layout()
71 vec2 base_offset = position + vec2(spacing_, spacing_); in Draw()
76 base_offset + vec2(0, height_ - row.y_offset - row.height - spacing_); in Draw()
78 row_offset += vec2((width_ - spacing_ * 2 - row.header->width()) / 2, 0); in Draw()
83 row_offset.x + row.label->width() + spacing_, in Draw()
Dtable.h58 int spacing_; variable
/external/cronet/base/threading/
Dthread_local_storage_unittest.cc207 : n_slots_(n_slots), spacing_(spacing) {} in TlsDestructionOrderRunner()
212 for (int i = 0; i < spacing_; ++i) { in Run()
235 int spacing_; member in base::__anon740c7e280111::TlsDestructionOrderRunner
/external/ImageMagick/Magick++/lib/Magick++/
DOptions.h268 void textInterlineSpacing(const double spacing_);
272 void textInterwordSpacing(const double spacing_);
DDrawable.h2164 DrawableTextInterlineSpacing(double spacing_);
2170 void spacing(double spacing_);
2184 DrawableTextInterwordSpacing(double spacing_);
2190 void spacing(double spacing_);
DImage.h486 void textInterlineSpacing(double spacing_);
490 void textInterwordSpacing(double spacing_);
/external/tensorflow/tensorflow/compiler/xla/tests/
Dexhaustive_op_test_utils.h594 next_bit_chunk_ += bit_chunks_->spacing_;
626 : start_(start), end_(end), spacing_(spacing) {
636 return 1 + (end_ - start_ + spacing_ - 1) / spacing_;
640 return absl::StrFormat("(0x%08x, 0x%08x, 0x%08x)", start_, end_, spacing_);
645 uint64_t spacing_;
/external/ImageMagick/Magick++/lib/
DOptions.cpp747 void Magick::Options::textInterlineSpacing(const double spacing_) in textInterlineSpacing() argument
749 _drawInfo->interline_spacing=spacing_; in textInterlineSpacing()
750 setOption("interline-spacing",spacing_); in textInterlineSpacing()
758 void Magick::Options::textInterwordSpacing(const double spacing_) in textInterwordSpacing() argument
760 _drawInfo->interword_spacing=spacing_; in textInterwordSpacing()
761 setOption("interword-spacing",spacing_); in textInterwordSpacing()
DDrawable.cpp1600 double spacing_) in DrawableTextInterlineSpacing() argument
1601 : _spacing(spacing_) in DrawableTextInterlineSpacing()
1615 void Magick::DrawableTextInterlineSpacing::spacing(double spacing_) in spacing() argument
1617 _spacing=spacing_; in spacing()
1632 double spacing_) in DrawableTextInterwordSpacing() argument
1633 : _spacing(spacing_) in DrawableTextInterwordSpacing()
1647 void Magick::DrawableTextInterwordSpacing::spacing(double spacing_) in spacing() argument
1649 _spacing=spacing_; in spacing()
DImage.cpp1576 void Magick::Image::textInterlineSpacing(double spacing_) in textInterlineSpacing() argument
1579 options()->textInterlineSpacing(spacing_); in textInterlineSpacing()
1587 void Magick::Image::textInterwordSpacing(double spacing_) in textInterwordSpacing() argument
1590 options()->textInterwordSpacing(spacing_); in textInterwordSpacing()
/external/vixl/src/aarch32/
Dinstructions-aarch32.h697 SpacingType spacing_; variable
705 spacing_(kSingle), in NeonRegisterList()
713 spacing_(kSingle), in NeonRegisterList()
723 : first_(first.GetCode()), spacing_(spacing), type_(type), lane_(-1) { in NeonRegisterList()
738 spacing_(spacing), in NeonRegisterList()
760 bool IsSingleSpaced() const { return spacing_ == kSingle; } in IsSingleSpaced()
761 bool IsDoubleSpaced() const { return spacing_ == kDouble; } in IsDoubleSpaced()
Ddisasm-aarch32.cc72 SpacingType spacing_; member in vixl::aarch32::DecodeNeon
77 : lane_(lane), spacing_(spacing), valid_(true) {} in DecodeNeon()
78 DecodeNeon() : lane_(0), spacing_(kSingle), valid_(false) {} in DecodeNeon()
80 SpacingType GetSpacing() const { return spacing_; } in GetSpacing()