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

1 2

  /external/chromium_org/ui/gfx/geometry/
insets_base.h 20 Type right() const { return right_; }
24 Type width() const { return left_ + right_; }
37 right_ = right;
42 bottom_ == insets.bottom_ && right_ == insets.right_;
53 right_ += insets.right_;
57 return Class(-top_, -left_, -bottom_, -right_);
65 right_(right) {}
75 Type right_; member in class:gfx::InsetsBase
    [all...]
  /external/chromium_org/cc/resources/
layer_quad.cc 25 right_ = Edge(quad.p2(), quad.p3());
31 right_.scale(sign);
42 right_(right),
47 top_.Intersect(right_),
48 right_.Intersect(bottom_),
59 flattened[6] = right_.x();
60 flattened[7] = right_.y();
61 flattened[8] = right_.z();
layer_quad.h 80 Edge right() const { return right_; }
85 right_.move_z(dx);
106 Edge right_; member in class:cc::LayerQuad
picture_layer_tiling.cc 223 right_(-1),
239 right_(-1),
259 right_ = tiling_->tiling_data_.TileXIndexFromSrcCoord(
280 if (tile_i_ > right_) {
picture_layer_tiling.h 208 int right_; member in class:cc::PictureLayerTiling::CoverageIterator
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_geometry.cc 30 right_ = std::min(right(), rect.right());
35 right_ = 0;
43 right_ += dx;
desktop_geometry.h 99 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {}
103 int32_t right() const { return right_; }
105 int32_t width() const { return right_ - left_; }
111 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; }
115 right_ == other.right_ && bottom_ == other.bottom_;
133 : left_(left), top_(top), right_(right), bottom_(bottom) {
138 int32_t right_; member in class:webrtc::DesktopRect
  /external/chromium_org/v8/src/
splay-tree-inl.h 50 node->right_ = root_->right_;
51 root_->right_ = NULL;
53 node->right_ = root_;
127 root_ = root_->right_;
140 while (current->right_ != NULL)
141 current = current->right_;
194 root_ = root_->right_;
197 Node* right = root_->right_;
204 root_->right_ = right
    [all...]
splay-tree.h 106 right_(NULL) { }
123 Node* right() { return right_; }
131 Node* right_; 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...]
code-stubs.cc 252 CompareIC::State state = Max(left_, right_);
314 RightStateField::encode(right_) |
ast.h 2005 Expression* right_; member in class:v8::internal::V8_FINAL
2113 Expression* right_; member in class:v8::internal::V8_FINAL
    [all...]
code-stubs.h     [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/first_run/
first_run_actor.cc 19 right_(kNoneValue),
30 right_ = right;
49 if (right_ != kNoneValue)
50 result->SetInteger("right", right_);
first_run_actor.h 62 int right_; member in class:chromeos::FirstRunActor::StepPosition
  /external/chromium_org/ui/aura/
window_tree_host_x11.cc 117 TouchEventCalibrate() : left_(0), right_(0), top_(0), bottom_(0) {
128 if (!base::StringToInt(parts[1], &right_))
154 if (!left_ && !right_ && !top_ && !bottom_)
162 if (left_ || right_) {
172 x < resolution_x - left_ + right_ * kGraceAreaFraction)
175 x = (x * resolution_x) / (resolution_x - (right_ + left_));
227 int right_; member in class:aura::internal::TouchEventCalibrate
  /external/chromium_org/tools/gn/
parse_tree.h 153 const ParseNode* right() const { return right_.get(); }
155 right_ = right.Pass();
161 scoped_ptr<ParseNode> right_; member in class:BinaryOpNode
parse_tree.cc 181 return ExecuteBinaryOperator(scope, this, left_.get(), right_.get(), err);
185 return left_->GetRange().Union(right_->GetRange());
196 right_->Print(out, indent + 1);
  /external/chromium_org/cc/base/
tiling_data.cc 319 : BaseIterator(tiling_data), left_(-1), right_(-1), bottom_(-1) {
332 right_ = tiling_data_->LastBorderTileXIndexFromSrcCoord(rect.right() - 1);
338 right_ = tiling_data_->TileXIndexFromSrcCoord(rect.right() - 1);
355 if (index_x_ > right_) {
tiling_data.h 101 int right_; member in class:cc::TilingData::Iterator
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_result_view.cc 95 MirroringContext() : center_(0), right_(0) {}
102 right_ = x + width;
115 return right_ - x;
120 int right_; member in class:OmniboxResultView::MirroringContext
  /external/chromium_org/base/test/
trace_event_analyzer.cc 203 right_(query.right_),
261 DCHECK(right_.get() || is_unary_operator());
360 DCHECK(right_.get() || is_unary_operator());
549 return right_->query();
616 right_(new QueryNode(right)),
trace_event_analyzer.h 490 // Try to compare left_ against right_ based on operator_.
495 // Try to compare left_ against right_ based on operator_.
508 // Evaluate this Query as an arithmetic operator on left_ and right_.
535 scoped_refptr<QueryNode> right_; member in class:trace_analyzer::Query
  /external/chromium_org/v8/src/arm64/
code-stubs-arm64.cc     [all...]
  /external/chromium_org/v8/src/x87/
code-stubs-x87.cc     [all...]

Completed in 666 milliseconds

1 2