Searched refs:bottom_ (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dmark-compact.h173 : 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_; }
232 bottom_ = ((bottom_ - 1) & mask_);
233 array_[bottom_] = object;
238 int bottom() { return bottom_; }
246 // empty when top_ == bottom_. It is full when top_ + 1 == bottom
249 int bottom_; member in class:v8::internal::MarkingDeque
[all...]
/external/chromium/chrome/browser/ui/views/bubble/
H A Dbubble_border.cc21 SkBitmap* BubbleBorder::bottom_ = NULL; member in class:BubbleBorder
118 int bottom = bottom_->height();
175 bottom_ = rb.GetBitmapNamed(IDR_BUBBLE_B);
209 const int b_height = bottom_->height();
335 bottom_,
343 canvas->TileImageInt(*bottom_, left + bl_width, bottom - b_height,
H A Dbubble_border.h138 static SkBitmap* bottom_; member in class:BubbleBorder

Completed in 184 milliseconds