Searched defs:top_ (Results 1 - 7 of 7) sorted by relevance

/external/chromium/chrome/browser/sync/engine/
H A Dchange_reorder_buffer.cc34 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/compiler-rt/lib/asan/
H A Dasan_allocator.h78 node->next = top_;
79 top_ = node;
82 CHECK(top_);
83 top_ = top_->next;
85 FakeFrame *top() { return top_; }
87 FakeFrame *top_; member in class:__asan::FakeFrameLifo
/external/chromium/chrome/browser/ui/views/bubble/
H A Dbubble_border.h134 static SkBitmap* top_; member in class:BubbleBorder
H A Dbubble_border.cc17 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,
/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_; }
204 array_[top_] = object;
205 top_ = ((top_ + 1) & mask_);
214 array_[top_] = object;
215 top_ = ((top_
248 int top_; member in class:v8::internal::MarkingDeque
[all...]
H A Dparser.cc54 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
/external/icu4c/test/cintltst/
H A Dcmsccoll.c540 UBool varT = FALSE; UBool top_ = TRUE; local
584 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
585 if(top_) { /* if reset is on top, the sequence is broken. We should have an empty string */
924 UBool varT = FALSE; UBool top_ = TRUE; local
968 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
1098 UBool varT = FALSE; UBool top_ = TRUE; local
1200 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
1219 if(top_ == TRUE) {

Completed in 156 milliseconds