Searched refs:top_ (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/ |
D | mark-compact.h | 173 : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) { } in MarkingDeque() 180 top_ = bottom_ = 0; in Initialize() 184 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; } in IsFull() 186 inline bool IsEmpty() { return top_ == bottom_; } in IsEmpty() 204 array_[top_] = object; in PushBlack() 205 top_ = ((top_ + 1) & mask_); in PushBlack() 214 array_[top_] = object; in PushGrey() 215 top_ = ((top_ + 1) & mask_); in PushGrey() 221 top_ = ((top_ - 1) & mask_); in Pop() 222 HeapObject* object = array_[top_]; in Pop() [all …]
|
D | deoptimizer.h | 418 intptr_t GetTop() const { return top_; } in GetTop() 419 void SetTop(intptr_t top) { top_ = top; } in SetTop() 488 intptr_t top_; variable
|
D | parser.cc | 54 explicit PositionStack(bool* ok) : top_(NULL), ok_(ok) {} in PositionStack() 73 bool is_empty() { return top_ == NULL; } in is_empty() 76 int result = top_->value(); in pop() 77 top_ = top_->previous(); in pop() 82 Element* top() { return top_; } in top() 83 void set_top(Element* value) { top_ = value; } in set_top() 84 Element* top_; member in v8::internal::PositionStack
|
D | deoptimizer.cc | 1217 top_(kZapUint32), in FrameDescription()
|
/external/chromium/chrome/browser/sync/engine/ |
D | change_reorder_buffer.cc | 34 Traversal() : top_(kInvalidId) { } in Traversal() 41 if (top_ == kInvalidId) { in ExpandToInclude() 42 top_ = child_handle; in ExpandToInclude() 47 while (node_to_include != kInvalidId && node_to_include != top_) { in ExpandToInclude() 57 node_to_include = top_; in ExpandToInclude() 58 top_ = node.Get(syncable::META_HANDLE); in ExpandToInclude() 82 int64 top() const { return top_; } in top() 104 int64 top_; member in sync_api::ChangeReorderBuffer::Traversal
|
/external/compiler-rt/lib/asan/ |
D | asan_allocator.h | 142 node->next = top_; in LifoPush() 143 top_ = node; in LifoPush() 146 CHECK(top_); in LifoPop() 147 top_ = top_->next; in LifoPop() 149 FakeFrame *top() { return top_; } in top() 151 FakeFrame *top_;
|
/external/chromium/chrome/browser/ui/views/bubble/ |
D | bubble_border.cc | 17 SkBitmap* BubbleBorder::top_ = NULL; member in BubbleBorder 117 int top = top_->height(); in GetInsets() 171 top_ = rb.GetBitmapNamed(IDR_BUBBLE_T); in InitClass() 202 const int t_height = top_->height(); in Paint() 277 top_, in Paint() 283 top_->height() - top_arrow_->height()); in Paint() 285 canvas->TileImageInt(*top_, left + tl_width, top, in Paint()
|
D | bubble_border.h | 134 static SkBitmap* top_; variable
|
/external/chromium/chrome/browser/resources/net_internals/ |
D | view.js | 20 this.top_ = top; 51 return this.top_;
|
/external/icu4c/test/cintltst/ |
D | cmsccoll.c | 541 UBool varT = FALSE; UBool top_ = TRUE; in testCollator() local 585 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0); in testCollator() 586 if(top_) { /* if reset is on top, the sequence is broken. We should have an empty string */ in testCollator() 925 UBool varT = FALSE; UBool top_ = TRUE; in testAgainstUCA() local 969 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0); in testAgainstUCA() 1099 UBool varT = FALSE; UBool top_ = TRUE; in testCEs() local 1201 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0); in testCEs() 1220 if(top_ == TRUE) { in testCEs()
|