Searched refs:top_ (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/ui/gfx/geometry/
H A Dinsets_base.h17 Type top() const { return top_; }
28 Type height() const { return top_ + bottom_; }
34 top_ = top;
41 return top_ == insets.top_ && left_ == insets.left_ &&
50 top_ += insets.top_;
57 return Class(-top_, -left_, -bottom_, -right_);
62 : top_(top),
72 Type top_; member in class:gfx::InsetsBase
[all...]
/external/chromium_org/cc/resources/
H A Dlayer_quad.cc26 top_ = Edge(quad.p1(), quad.p2());
32 top_.scale(sign);
41 top_(top),
46 return gfx::QuadF(left_.Intersect(top_),
47 top_.Intersect(right_),
56 flattened[3] = top_.x();
57 flattened[4] = top_.y();
58 flattened[5] = top_.z();
H A Dlayer_quad.h79 Edge top() const { return top_; }
88 top_.move_z(dy);
105 Edge top_; member in class:cc::LayerQuad
H A Dpicture_layer_tiling.cc319 top_(0),
335 top_(0),
355 top_ = tiling_->tiling_data_.TileYIndexFromSrcCoord(content_rect.y());
362 tile_j_ = top_;
H A Dpicture_layer_tiling.h230 int top_; member in class:cc::PictureLayerTiling::CoverageIterator
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.cc29 top_ = std::max(top(), rect.top());
34 top_ = 0;
42 top_ += dy;
H A Ddesktop_geometry.h99 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {}
102 int32_t top() const { return top_; }
106 int32_t height() const { return bottom_ - top_; }
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) {
137 int32_t top_; member in class:webrtc::DesktopRect
/external/chromium_org/chrome/browser/ui/webui/chromeos/first_run/
H A Dfirst_run_actor.cc18 : top_(kNoneValue),
25 top_ = top;
47 if (top_ != kNoneValue)
48 result->SetInteger("top", top_);
H A Dfirst_run_actor.h61 int top_; member in class:chromeos::FirstRunActor::StepPosition
/external/chromium_org/v8/src/
H A Dallocation-site-scopes.h25 Handle<AllocationSite> top() { return top_; }
38 top_ = site;
39 current_ = Handle<AllocationSite>(*top_, isolate());
44 Handle<AllocationSite> top_; member in class:v8::internal::AllocationSiteContext
H A Ddeoptimizer.h533 intptr_t GetTop() const { return top_; }
534 void SetTop(intptr_t top) { top_ = top; }
608 intptr_t top_;
H A Ddeoptimizer.cc2828 top_(kZapUint32),
/external/chromium_org/sync/internal_api/
H A Dchange_reorder_buffer.cc35 Traversal() : top_(kInvalidId) { }
41 // If |top_| is invalid, this is the first insertion -- easy.
42 if (top_ == kInvalidId) {
43 top_ = child_handle;
48 while (node_to_include != kInvalidId && node_to_include != top_) {
55 // (it would have to be |top_| if it were), start a new expansion
56 // upwards from |top_| to unite the original traversal with the
58 node_to_include = top_;
59 top_ = node.GetMetahandle();
83 int64 top() const { return top_; }
105 int64 top_; member in class:syncer::ChangeReorderBuffer::Traversal
[all...]
/external/chromium_org/v8/src/heap/
H A Dmark-compact.h143 : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) {}
152 top_ = bottom_ = 0;
156 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; }
158 inline bool IsEmpty() { return top_ == bottom_; }
176 array_[top_] = object;
177 top_ = ((top_ + 1) & mask_);
186 array_[top_] = object;
187 top_ = ((top_
220 int top_; member in class:v8::internal::MarkingDeque
[all...]
H A Dspaces.h1253 AllocationInfo() : top_(NULL), limit_(NULL) {}
1258 top_ = top;
1262 SLOW_DCHECK(top_ == NULL ||
1263 (reinterpret_cast<intptr_t>(top_) & HeapObjectTagMask()) == 0);
1264 return top_;
1267 Address* top_address() { return &top_; }
1286 return (Page::FromAllocationTop(top_) == Page::FromAllocationTop(limit_)) &&
1287 (top_ <= limit_);
1293 Address top_; member in class:v8::internal::AllocationInfo
1436 FreeListCategory() : top_(
1479 base::AtomicWord top_; member in class:v8::internal::FreeListCategory
[all...]
H A Dspaces.cc2044 base::NoBarrier_Store(&top_, category->top_);
/external/chromium_org/third_party/libwebp/utils/
H A Dquant_levels_dec.c60 uint16_t* top_; member in struct:__anon13301
83 const uint16_t* const top = p->top_;
96 p->top_ = p->cur_;
227 p->top_ = p->end_ - width;
228 memset(p->top_, 0, width * sizeof(*p->top_));
/external/webp/src/utils/
H A Dquant_levels_dec.c60 uint16_t* top_; member in struct:__anon33398
83 const uint16_t* const top = p->top_;
96 p->top_ = p->cur_;
227 p->top_ = p->end_ - width;
228 memset(p->top_, 0, width * sizeof(*p->top_));
/external/chromium_org/ui/aura/
H A Dwindow_tree_host_x11.cc115 TouchEventCalibrate() : left_(0), right_(0), top_(0), bottom_(0) {
128 if (!base::StringToInt(parts[2], &top_))
152 if (!left_ && !right_ && !top_ && !bottom_)
175 if (top_ || bottom_) {
177 y -= top_;
181 if (y < 0 && y > -top_ * kGraceAreaFraction)
186 if (y > resolution_y - top_ &&
187 y < resolution_y - top_ + bottom_ * kGraceAreaFraction)
188 y = resolution_y - top_;
190 y = (y * resolution_y) / (resolution_y - (bottom_ + top_));
226 int top_; member in class:aura::internal::TouchEventCalibrate
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dview.js25 this.top_ = top;
56 return this.top_;
/external/chromium_org/ui/file_manager/gallery/js/
H A Dmosaic_mode.js1491 return this.top_ <= y && y < (this.top_ + this.height_);
1498 return this.top_ + Math.round(this.height_ / 2);
1572 this.top_ = top;
1919 this.top_ = top;
1979 return new Rect(this.left_ - this.container_.scrollLeft, this.top_,
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcmsccoll.c541 UBool varT = FALSE; UBool top_ = TRUE; local
586 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
587 if(top_) { /* if reset is on top, the sequence is broken. We should have an empty string */
927 UBool varT = FALSE; UBool top_ = TRUE; local
941 (void)top_; /* Suppress set but not used warnings. */
977 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
1108 UBool varT = FALSE; UBool top_ = TRUE; local
1216 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
1235 if(top_ == TRUE) {

Completed in 5892 milliseconds