Searched refs:left_ (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/ui/gfx/geometry/
H A Dinsets_base.h18 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/
H A Dlayer_quad.cc24 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();
H A Dlayer_quad.h78 Edge left() const { return left_; }
84 left_.move_z(dx);
104 Edge left_; member in class:cc::LayerQuad
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.cc28 left_ = std::max(left(), rect.left());
33 left_ = 0;
41 left_ += dx;
H A Ddesktop_geometry.h99 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/
H A Dsplay-tree-inl.h49 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_
[all...]
H A Dsplay-tree.h105 left_(NULL),
122 Node* left() { return left_; }
130 Node* left_; member in class:v8::internal::SplayTree::Node
H A Dast-value-factory.h120 : left_(left),
124 return left_->length() + right_->length();
132 const AstString* left_; member in class:v8::internal::AstConsString
/external/chromium_org/chrome/browser/ui/webui/chromeos/first_run/
H A Dfirst_run_actor.cc21 left_(kNoneValue) {
41 left_ = left;
53 if (left_ != kNoneValue)
54 result->SetInteger("left", left_);
H A Dfirst_run_actor.h64 int left_; member in class:chromeos::FirstRunActor::StepPosition
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dinternal_logging.cc178 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;
H A Dinternal_logging.h137 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/
H A Dinternal_logging.cc177 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;
H A Dinternal_logging.h128 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/
H A Dtoken.c49 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/
H A Dtoken.c49 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/v8/src/compiler/
H A Dnode-matchers.h113 : NodeMatcher(node), left_(InputAt(0)), right_(InputAt(1)) {
117 const Left& left() const { return left_; }
126 std::swap(left_, right_);
132 Left left_; member in struct:v8::internal::compiler::FINAL
/external/chromium_org/ui/aura/
H A Dwindow_tree_host_x11.cc115 TouchEventCalibrate() : left_(0), right_(0), top_(0), bottom_(0) {
124 if (!base::StringToInt(parts[0], &left_))
152 if (!left_ && !right_ && !top_ && !bottom_)
160 if (left_ || right_) {
162 x -= left_;
165 if (x < 0 && x > -left_ * kGraceAreaFraction)
169 if (x > resolution_x - left_ &&
170 x < resolution_x - left_ + right_ * kGraceAreaFraction)
171 x = resolution_x - left_;
173 x = (x * resolution_x) / (resolution_x - (right_ + left_));
224 int left_; member in class:aura::internal::TouchEventCalibrate
[all...]
/external/chromium_org/chrome/browser/extensions/api/file_handlers/
H A Dmime_util.cc149 : profile_(profile), left_(0), weak_ptr_factory_(this) {
174 left_ = local_paths.size();
176 if (!left_) {
196 if (!--left_) {
H A Dmime_util.h65 size_t left_; member in class:extensions::app_file_handler_util::MimeTypeCollector
/external/deqp/framework/referencerenderer/
H A DrrRenderState.hpp217 WindowRectangle (int left_, int bottom_, int width_, int height_) argument
218 : left (left_)
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dview.js24 this.left_ = left;
52 return this.left_;
/external/chromium_org/ui/file_manager/gallery/js/
H A Dmosaic_mode.js1217 this.left_ = left;
1367 Mosaic.Column.prototype.getLeft = function() { return this.left_ };
1373 return this.left_ + this.width_;
1392 opt_offsetX + this.left_,
1620 self.left_ = null; // Mark as not laid out.
1748 this.left_ = null; // Mark as not laid out.
1918 this.left_ = left;
1948 if (this.left_ === null) // Not laid out.
1952 var tileLeft = this.left_ - Mosaic.Layout.SCROLL_MARGIN;
1956 var tileRight = this.left_
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlow_level_alloc.cc219 : 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:__anon15549::ArenaLock
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dlow_level_alloc.cc219 : 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:__anon15593::ArenaLock

Completed in 640 milliseconds

12