HomeSort by relevance Sort by last modified time
    Searched refs:bottom_ (Results 1 - 5 of 5) sorted by null

  /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_; }
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/
bubble_border.cc 21 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,
bubble_border.h 138 static SkBitmap* bottom_; member in class:BubbleBorder
  /frameworks/base/core/jni/android/graphics/
Path.cpp 177 SkScalar bottom_ = SkFloatToScalar(bottom); local
178 obj->addRect(left_, top_, right_, bottom_, dir);
Canvas.cpp 426 SkScalar bottom_ = SkFloatToScalar(bottom); local
427 canvas->drawRectCoords(left_, top_, right_, bottom_, *paint);
    [all...]

Completed in 169 milliseconds