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

  /external/compiler-rt/lib/asan/
asan_allocator.h 142 node->next = top_;
143 top_ = node;
146 CHECK(top_);
147 top_ = top_->next;
149 FakeFrame *top() { return top_; }
151 FakeFrame *top_; member in class:__asan::FakeFrameLifo
  /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_;
parser.cc 54 explicit PositionStack(bool* ok) : top_(NULL), ok_(ok) {}
73 bool is_empty() { return top_ == NULL; }
76 int result = top_->value();
77 top_ = top_->previous();
82 Element* top() { return top_; }
83 void set_top(Element* value) { top_ = value; }
84 Element* top_; member in class:v8::internal::PositionStack
    [all...]
deoptimizer.cc     [all...]
  /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/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/chrome/browser/resources/net_internals/
view.js 20 this.top_ = top;
51 return this.top_;
  /frameworks/base/core/jni/android/graphics/
Canvas.cpp 424 SkScalar top_ = SkFloatToScalar(top); local
427 canvas->drawRectCoords(left_, top_, right_, bottom_, *paint);
486 SkScalar top_ = SkFloatToScalar(top); local
496 canvas->drawBitmap(*bitmap, left_, top_, &filteredPaint);
498 canvas->drawBitmap(*bitmap, left_, top_, paint);
503 canvas->translate(left_, top_);
    [all...]
Path.cpp 175 SkScalar top_ = SkFloatToScalar(top); local
178 obj->addRect(left_, top_, right_, bottom_, dir);
  /external/icu4c/test/cintltst/
cmsccoll.c 541 UBool varT = FALSE; UBool top_ = TRUE; local
585 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
586 if(top_) { /* if reset is on top, the sequence is broken. We should have an empty string */
925 UBool varT = FALSE; UBool top_ = TRUE; local
969 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
1099 UBool varT = FALSE; UBool top_ = TRUE; local
    [all...]

Completed in 815 milliseconds