Searched refs:top_ (Results 1 - 9 of 9) sorted by relevance

/external/v8/src/
H A Dcodegen.h130 previous_ = top_;
131 top_ = cgen;
135 top_ = previous_;
139 ASSERT(top_ != NULL);
140 return top_;
144 static CodeGenerator* top_; member in class:v8::internal::BASE_EMBEDDED
H A Dheap.h1415 top_ = low_ = reinterpret_cast<HeapObject**>(low);
1420 bool is_full() { return top_ >= high_; }
1422 bool is_empty() { return top_ <= low_; }
1437 *(top_++) = object;
1443 HeapObject* object = *(--top_);
1450 HeapObject** top_; member in class:v8::internal::MarkingStack
H A Dspaces.cc285 int MemoryAllocator::top_ = 0; member in class:v8::internal::MemoryAllocator
290 ASSERT(top_ < max_nof_chunks_);
291 free_chunk_ids_[top_++] = free_chunk_id;
296 ASSERT(top_ > 0);
297 return free_chunk_ids_[--top_];
322 top_ = max_nof_chunks_;
340 ASSERT(top_ == max_nof_chunks_); // all chunks are free
341 top_ = 0;
H A Dcodegen.cc65 CodeGenerator* CodeGeneratorScope::top_ = NULL; member in class:v8::internal::CodeGeneratorScope
H A Dparser.cc56 explicit PositionStack(bool* ok) : top_(NULL), ok_(ok) {}
75 bool is_empty() { return top_ == NULL; }
78 int result = top_->value();
79 top_ = top_->previous();
84 Element* top() { return top_; }
85 void set_top(Element* value) { top_ = value; }
86 Element* top_; member in class:v8::internal::PositionStack
H A Dspaces.h564 // Chunks_, free_chunk_ids_ and top_ act as a stack of free chunk ids.
568 static int top_; member in class:v8::internal::MemoryAllocator
573 static bool OutOfChunkIds() { return top_ == 0; }
H A Dobjects.h4281 inline Relocatable() : prev_(top_) { top_ = this; }
4283 ASSERT_EQ(top_, this);
4284 top_ = prev_;
4297 static Relocatable* top_; member in class:v8::internal::BASE_EMBEDDED
H A Dobjects.cc3916 Relocatable* Relocatable::top_ = NULL; member in class:v8::internal::Relocatable
3920 Relocatable* current = top_;
3930 return sizeof(top_);
3936 *reinterpret_cast<Relocatable**>(to) = top_;
3937 top_ = NULL;
3944 top_ = *reinterpret_cast<Relocatable**>(from);
3957 Iterate(v, top_);
/external/icu4c/test/cintltst/
H A Dcmsccoll.c538 UBool varT = FALSE; UBool top_ = TRUE; local
578 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
579 if(top_) { /* if reset is on top, the sequence is broken. We should have an empty string */
918 UBool varT = FALSE; UBool top_ = TRUE; local
959 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
1089 UBool varT = FALSE; UBool top_ = TRUE; local
1184 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
1203 if(top_ == TRUE) {

Completed in 168 milliseconds