/external/chromium_org/ui/gfx/ |
insets_base.h | 17 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/ |
layer_quad.cc | 26 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();
|
layer_quad.h | 79 Edge top() const { return top_; } 88 top_.move_z(dy); 105 Edge top_; member in class:cc::LayerQuad
|
picture_layer_tiling.cc | 197 top_(0), 213 top_(0), 238 top_ = tiling_->tiling_data_.TileYIndexFromSrcCoord(content_rect.y()); 245 tile_j_ = top_;
|
picture_layer_tiling.h | 125 int top_; member in class:cc::PictureLayerTiling::CoverageIterator
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/first_run/ |
first_run_actor.cc | 18 : top_(kNoneValue), 25 top_ = top; 47 if (top_ != kNoneValue) 48 result->SetInteger("top", top_);
|
first_run_actor.h | 61 int top_; member in class:chromeos::FirstRunActor::StepPosition
|
/external/chromium/chrome/browser/sync/engine/ |
change_reorder_buffer.cc | 34 Traversal() : top_(kInvalidId) { } 40 // If |top_| is invalid, this is the first insertion -- easy. 41 if (top_ == kInvalidId) { 42 top_ = child_handle; 47 while (node_to_include != kInvalidId && node_to_include != top_) { 54 // (it would have to be |top_| if it were), start a new expansion 55 // upwards from |top_| to unite the original traversal with the 57 node_to_include = top_; 58 top_ = node.Get(syncable::META_HANDLE); 82 int64 top() const { return top_; } 104 int64 top_; member in class:sync_api::ChangeReorderBuffer::Traversal [all...] |
/external/chromium_org/sync/internal_api/ |
change_reorder_buffer.cc | 35 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/ |
allocation-site-scopes.h | 48 Handle<AllocationSite> top() { return top_; } 61 top_ = site; 62 current_ = Handle<AllocationSite>(*top_, isolate()); 67 Handle<AllocationSite> top_; member in class:v8::internal::AllocationSiteContext
|
mark-compact.h | 173 : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) { } 180 top_ = bottom_ = 0; 184 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; } 186 inline bool IsEmpty() { return top_ == bottom_; } 204 array_[top_] = object; 205 top_ = ((top_ + 1) & mask_); 214 array_[top_] = object; 215 top_ = ((top_ + 1) & mask_) 248 int top_; member in class:v8::internal::MarkingDeque [all...] |
spaces.h | 1370 Address top_; member in class:v8::internal::AllocationInfo 1553 FreeListNode* top_; member in class:v8::internal::FreeListCategory [all...] |
deoptimizer.h | 534 intptr_t GetTop() const { return top_; } 535 void SetTop(intptr_t top) { top_ = top; } 604 intptr_t top_;
|
/external/v8/src/ |
mark-compact.h | 173 : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) { } 180 top_ = bottom_ = 0; 184 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; } 186 inline bool IsEmpty() { return top_ == bottom_; } 204 array_[top_] = object; 205 top_ = ((top_ + 1) & mask_); 214 array_[top_] = object; 215 top_ = ((top_ + 1) & mask_) 248 int top_; member in class:v8::internal::MarkingDeque [all...] |
deoptimizer.h | 418 intptr_t GetTop() const { return top_; } 419 void SetTop(intptr_t top) { top_ = top; } 488 intptr_t top_;
|
/external/chromium/chrome/browser/ui/views/bubble/ |
bubble_border.cc | 17 SkBitmap* BubbleBorder::top_ = NULL; member in class:BubbleBorder 117 int top = top_->height(); 171 top_ = rb.GetBitmapNamed(IDR_BUBBLE_T); 202 const int t_height = top_->height(); 277 top_, 283 top_->height() - top_arrow_->height()); 285 canvas->TileImageInt(*top_, left + tl_width, top,
|
bubble_border.h | 134 static SkBitmap* top_; member in class:BubbleBorder
|
/external/chromium_org/ui/aura/ |
root_window_host_x11.cc | 136 top_(0), 147 if (!base::StringToInt(parts[2], &top_)) 183 if (!left_ && !right_ && !top_ && !bottom_) 206 if (top_ || bottom_) { 208 y -= top_; 212 if (y < 0 && y > -top_ * kGraceAreaFraction) 217 if (y > resolution_y - top_ && 218 y < resolution_y - top_ + bottom_ * kGraceAreaFraction) 219 y = resolution_y - top_; 221 y = (y * resolution_y) / (resolution_y - (bottom_ + top_)); 260 int top_; member in class:aura::internal::TouchEventCalibrate [all...] |
/external/chromium/chrome/browser/resources/net_internals/ |
view.js | 20 this.top_ = top; 51 return this.top_;
|
/frameworks/base/core/jni/android/graphics/ |
Canvas.cpp | 422 SkScalar top_ = SkFloatToScalar(top); local 425 canvas->drawRectCoords(left_, top_, right_, bottom_, *paint); 470 SkScalar top_ = SkFloatToScalar(top); local 480 canvas->drawBitmap(*bitmap, left_, top_, &filteredPaint); 482 canvas->drawBitmap(*bitmap, left_, top_, paint); 487 canvas->translate(left_, top_); [all...] |
Path.cpp | 175 SkScalar top_ = SkFloatToScalar(top); local 178 obj->addRect(left_, top_, right_, bottom_, dir);
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
view.js | 25 this.top_ = top; 56 return this.top_;
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
tabs_api.html | 15 top: <input style="width: 60px" type="text" jsvalues="value:$this.top;id:'top_' + id" />
|
tabs_api.js | 258 top: parseInt(document.getElementById('top_' + id).value),
|
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
tabs_api.html | 245 top: parseInt(document.getElementById('top_' + id).value), 299 top: <input style="width: 60px" type="text" jsvalues="value:$this.top;id:'top_' + id" />
|