Home
last modified time | relevance | path

Searched refs:position_ (Results 1 – 11 of 11) sorted by relevance

/external/webkit/V8Binding/v8/src/
Dutils.cc263 position_ = 0; in StringBuilder()
273 ASSERT(!is_finalized() && position_ + n < buffer_.length()); in AddSubstring()
275 memcpy(&buffer_[position_], s, n * kCharSize); in AddSubstring()
276 position_ += n; in AddSubstring()
281 ASSERT(!is_finalized() && position_ < buffer_.length()); in AddFormatted()
284 int n = OS::VSNPrintF(buffer_ + position_, format, args); in AddFormatted()
286 if (n < 0 || n >= (buffer_.length() - position_)) { in AddFormatted()
287 position_ = buffer_.length(); in AddFormatted()
289 position_ += n; in AddFormatted()
302 ASSERT(!is_finalized() && position_ < buffer_.length()); in Finalize()
[all …]
Dzone.cc36 Address Zone::position_ = 0; member in v8::internal::Zone
140 position_ = RoundUp(start, kAlignment); in DeleteAll()
147 position_ = limit_ = 0; in DeleteAll()
159 ASSERT(position_ + size > limit_); in NewExpand()
186 position_ = result + size; in NewExpand()
188 ASSERT(position_ <= limit_); in NewExpand()
Dutils.h505 : buffer_(buffer, size), position_(0) { } in StringBuilder()
514 return position_; in position()
518 void Reset() { position_ = 0; } in Reset()
525 ASSERT(!is_finalized() && position_ < buffer_.length()); in AddCharacter()
526 buffer_[position_++] = c; in AddCharacter()
549 int position_; variable
551 bool is_finalized() const { return position_ < 0; } in is_finalized()
Dscanner.h223 int position_; variable
281 return source_->pos() - kCharacterLookaheadBufferSize + position_; in source_pos()
Dcodegen.h130 int position() const { return position_; } in position()
165 int position_; variable
Dzone-inl.h45 Address result = position_; in New()
46 if ((position_ += size) > limit_) result = NewExpand(size); in New()
Dscanner.cc216 position_ = position; in Init()
234 return source_->SubString(start - position_, end - position_); in SubString()
Dcodegen.cc51 position_(masm_->current_position()) { in DeferredCode()
53 ASSERT(position_ != RelocInfo::kNoPosition); in DeferredCode()
Dzone.h111 static Address position_; variable
Ddebug.h107 inline int position() { return position_; } in position()
130 int position_; variable
Ddebug.cc116 position_ = rinfo()->data() - debug_info_->shared()->start_position(); in Next()
117 ASSERT(position_ >= 0); in Next()
155 position_ = debug_info_->shared()->end_position() - in Next()
158 position_ = 0; in Next()
160 statement_position_ = position_; in Next()
231 position_ = 1; in Reset()