/external/v8/src/ |
list.h | 66 SLOW_DCHECK(i < length_); 70 inline T& last() const { return at(length_ - 1); } 75 inline iterator end() const { return &data_[length_]; } 77 INLINE(bool is_empty() const) { return length_ == 0; } 78 INLINE(int length() const) { return length_; } 81 Vector<T> ToVector() const { return Vector<T>(data_, length_); } 83 Vector<const T> ToConstVector() { return Vector<const T>(data_, length_); } 122 INLINE(T RemoveLast()) { return Remove(length_ - 1); } 136 INLINE(void RewindBy(int count)) { Rewind(length_ - count); } 159 int length_; [all...] |
string-stream.h | 83 length_(0), 115 int length() const { return length_; } 129 length_ = 0; 147 unsigned length_; // does not include terminating 0-character member in class:v8::internal::FINAL 150 bool full() const { return (capacity_ - length_) == 1; } 151 int space() const { return capacity_ - length_; }
|
safepoint-table.h | 87 (length_ * (kPcAndDeoptimizationIndexSize + entry_size_)); 89 unsigned length() const { return length_; } 93 DCHECK(index < length_); 98 DCHECK(index < length_); 135 unsigned length_;
|
string-stream.cc | 23 DCHECK(length_ < capacity_); 24 // Since the trailing '\0' is not accounted for in length_ fullness is 25 // indicated by a difference of 1 between length_ and capacity_. Thus when 27 if (length_ == capacity_ - 2) { 36 length_ = capacity_ - 1; // Indicate fullness of the stream. 37 buffer_[length_ - 4] = '.'; 38 buffer_[length_ - 3] = '.'; 39 buffer_[length_ - 2] = '.'; 40 buffer_[length_ - 1] = '\n'; 41 buffer_[length_] = '\0' 47 length_++; member in namespace:v8::internal [all...] |
data-flow.h | 66 : length_(length), 74 : length_(other.length()), 75 data_length_(SizeFor(length_)), 180 int length() const { return length_; } 187 int length_; member in class:v8::internal::BitVector
|
dateparser.h | 151 int length() { return length_; } 176 return IsNumber() && length_ == length; 186 return IsKeywordType(TIME_ZONE_NAME) && length_ == 1 && value_ == 0; 226 length_(length), 230 int length_; // Number of characters. member in struct:v8::internal::DateParser::DateToken
|
scanner-character-streams.cc | 132 length_(end_position) { 143 pos_ = Min(pos_ + delta, length_); 150 if (from_pos >= length_) return 0; 152 if (from_pos + length > length_) { 153 length = length_ - from_pos;
|
bootstrapper.h | 162 virtual size_t length() const OVERRIDE { return length_; } 166 size_t length_; member in class:v8::internal::FINAL
|
arguments.h | 17 // (length_, arguments_) are "overlayed" with the parameters 26 // Note that length_ (whose value is in the integer range) is defined 32 : length_(length), arguments_(arguments) { } 35 DCHECK(0 <= index && index < length_); 57 int length() const { return static_cast<int>(length_); } 62 intptr_t length_; member in class:v8::internal::BASE_EMBEDDED
|
scanner-character-streams.h | 52 unsigned length_; member in class:v8::internal::GenericStringUtf16CharacterStream
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
bitmap_glyph_info.h | 59 int32_t length() const { return length_; } 71 int32_t length_; member in class:sfntly::BitmapGlyphInfo
|