HomeSort by relevance Sort by last modified time
    Searched refs:left_ (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/ui/gfx/geometry/
insets_base.h 18 Type left() const { return left_; }
24 Type width() const { return left_ + right_; }
35 left_ = left;
41 return top_ == insets.top_ && left_ == insets.left_ &&
51 left_ += insets.left_;
57 return Class(-top_, -left_, -bottom_, -right_);
63 left_(left),
73 Type left_; member in class:gfx::InsetsBase
    [all...]
  /external/chromium_org/cc/resources/
layer_quad.cc 24 left_ = Edge(quad.p4(), quad.p1());
30 left_.scale(sign);
40 : left_(left),
46 return gfx::QuadF(left_.Intersect(top_),
49 bottom_.Intersect(left_));
53 flattened[0] = left_.x();
54 flattened[1] = left_.y();
55 flattened[2] = left_.z();
layer_quad.h 78 Edge left() const { return left_; }
84 left_.move_z(dx);
104 Edge left_; member in class:cc::LayerQuad
picture_layer_tiling.cc 221 left_(0),
237 left_(0),
257 left_ = tiling_->tiling_data_.TileXIndexFromSrcCoord(content_rect.x());
264 tile_i_ = left_ - 1;
277 bool first_time = tile_i_ < left_;
281 tile_i_ = left_;
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_geometry.cc 28 left_ = std::max(left(), rect.left());
33 left_ = 0;
41 left_ += dx;
desktop_geometry.h 99 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {}
101 int32_t left() const { return left_; }
105 int32_t width() const { return right_ - left_; }
108 DesktopVector top_left() const { return DesktopVector(left_, top_); }
111 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; }
114 return left_ == other.left_ && top_ == other.top_ &&
133 : left_(left), top_(top), right_(right), bottom_(bottom) {
136 int32_t left_; member in class:webrtc::DesktopRect
  /external/chromium_org/v8/src/
splay-tree-inl.h 49 node->left_ = root_;
54 node->left_ = root_->left_;
55 root_->left_ = NULL;
103 root_ = root_->left_;
152 while (current->left_ != NULL)
153 current = current->left_;
192 if (root_->left_ == NULL) {
199 root_ = root_->left_;
226 if (current->left_ == NULL
    [all...]
splay-tree.h 105 left_(NULL),
122 Node* left() { return left_; }
130 Node* left_; member in class:v8::internal::SplayTree::Node
ast.cc 493 return MatchLiteralCompareTypeof(left_, op_, right_, expr, check) ||
494 MatchLiteralCompareTypeof(right_, op_, left_, expr, check);
527 return MatchLiteralCompareUndefined(left_, op_, right_, expr, isolate) ||
528 MatchLiteralCompareUndefined(right_, op_, left_, expr, isolate);
546 return MatchLiteralCompareNull(left_, op_, right_, expr) ||
547 MatchLiteralCompareNull(right_, op_, left_, expr);
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/first_run/
first_run_actor.cc 21 left_(kNoneValue) {
41 left_ = left;
53 if (left_ != kNoneValue)
54 result->SetInteger("left", left_);
first_run_actor.h 64 int left_; member in class:chromeos::FirstRunActor::StepPosition
  /external/chromium_org/third_party/tcmalloc/chromium/src/
internal_logging.cc 178 if (left_ > 0) {
181 const int r = perftools_vsnprintf(buf_, left_, format, ap);
185 left_ = 0;
186 } else if (r > left_) {
188 left_ = 0;
190 left_ -= r;
internal_logging.h 137 int left_; // Space left in buffer (including space for \0) member in class:TCMalloc_Printer
141 TCMalloc_Printer(char* buf, int length) : buf_(buf), left_(length) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/
internal_logging.cc 177 if (left_ > 0) {
180 const int r = perftools_vsnprintf(buf_, left_, format, ap);
184 left_ = 0;
185 } else if (r > left_) {
187 left_ = 0;
189 left_ -= r;
internal_logging.h 128 int left_; // Space left in buffer (including space for \0) member in class:TCMalloc_Printer
132 TCMalloc_Printer(char* buf, int length) : buf_(buf), left_(length) {
  /external/chromium_org/third_party/libwebp/enc/
token.c 49 b->left_ = 0;
80 b->left_ = b->page_size_;
94 if (b->left_ > 0 || TBufferNewPage(b)) {
95 const int slot = --b->left_;
105 if (b->left_ > 0 || TBufferNewPage(b)) {
106 const int slot = --b->left_;
206 const int N = (p->next_ == NULL) ? b->left_ : 0;
231 const int N = (next == NULL) ? b->left_ : 0;
257 const int N = (next == NULL) ? b->left_ : 0;
  /external/webp/src/enc/
token.c 49 b->left_ = 0;
80 b->left_ = b->page_size_;
94 if (b->left_ > 0 || TBufferNewPage(b)) {
95 const int slot = --b->left_;
105 if (b->left_ > 0 || TBufferNewPage(b)) {
106 const int slot = --b->left_;
206 const int N = (p->next_ == NULL) ? b->left_ : 0;
231 const int N = (next == NULL) ? b->left_ : 0;
257 const int N = (next == NULL) ? b->left_ : 0;
  /external/chromium_org/ui/aura/
window_tree_host_x11.cc 117 TouchEventCalibrate() : left_(0), right_(0), top_(0), bottom_(0) {
126 if (!base::StringToInt(parts[0], &left_))
154 if (!left_ && !right_ && !top_ && !bottom_)
162 if (left_ || right_) {
164 x -= left_;
167 if (x < 0 && x > -left_ * kGraceAreaFraction)
171 if (x > resolution_x - left_ &&
172 x < resolution_x - left_ + right_ * kGraceAreaFraction)
173 x = resolution_x - left_;
175 x = (x * resolution_x) / (resolution_x - (right_ + left_));
226 int left_; member in class:aura::internal::TouchEventCalibrate
    [all...]
  /external/deqp/framework/referencerenderer/
rrRenderState.hpp 217 WindowRectangle (int left_, int bottom_, int width_, int height_)
218 : left (left_)
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
low_level_alloc.cc 219 : left_(false), mask_valid_(false), arena_(arena) {
235 ~ArenaLock() { RAW_CHECK(this->left_, "haven't left Arena region"); }
243 this->left_ = true;
246 bool left_; // whether left region member in class:__anon19465::ArenaLock
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
low_level_alloc.cc 219 : left_(false), mask_valid_(false), arena_(arena) {
235 ~ArenaLock() { RAW_CHECK(this->left_, "haven't left Arena region"); }
243 this->left_ = true;
246 bool left_; // whether left region member in class:__anon19509::ArenaLock
  /external/chromium_org/base/test/
trace_event_analyzer.cc 202 left_(query.left_),
260 DCHECK(left_.get());
359 DCHECK(left_.get());
545 return left_->query();
615 left_(new QueryNode(left)),
625 left_(new QueryNode(left)),
  /external/chromium_org/tools/gn/
parse_tree.h 148 const ParseNode* left() const { return left_.get(); }
150 left_ = left.Pass();
159 scoped_ptr<ParseNode> left_; member in class:BinaryOpNode
  /external/chromium_org/cc/base/
tiling_data.h 100 int left_; member in class:cc::TilingData::Iterator
tiling_data.cc 319 : BaseIterator(tiling_data), left_(-1), right_(-1), bottom_(-1) {
342 left_ = index_x_;
356 index_x_ = left_;

Completed in 548 milliseconds

1 2