Searched refs:is_one_byte_ (Results 1 - 11 of 11) sorted by relevance
/external/v8/src/parsing/ |
H A D | scanner.h | 158 LiteralBuffer() : is_one_byte_(true), position_(0), backing_store_() { } 164 DCHECK(is_one_byte_); 173 if (is_one_byte_) { 195 bool is_one_byte() const { return is_one_byte_; } 203 DCHECK(!is_one_byte_); 211 DCHECK(is_one_byte_); 218 return is_one_byte_ ? position_ : (position_ >> 1); 222 position_ -= delta * (is_one_byte_ ? kOneByteSize : kUC16Size); 227 is_one_byte_ = true; 236 is_one_byte_ 291 bool is_one_byte_; member in class:v8::internal::LiteralBuffer [all...] |
/external/v8/src/ast/ |
H A D | ast-value-factory.h | 68 if (is_one_byte_) 83 bool is_one_byte() const { return is_one_byte_; } 86 if (is_one_byte_) 104 : is_one_byte_(is_one_byte), literal_bytes_(literal_bytes), hash_(hash) {} 107 : is_one_byte_(true), 110 bool is_one_byte_; member in class:v8::internal::final
|
H A D | ast-value-factory.cc | 61 if (string_->is_one_byte_) 74 if (string_->is_one_byte_) 100 if (!is_one_byte_ || literal_bytes_.length() == 0 || 110 if (is_one_byte_ && literal_bytes_.length() == length) {
|
/external/v8/src/ |
H A D | string-builder.cc | 20 if (is_one_byte_) {
|
H A D | string-builder.h | 199 is_one_byte_(subject->IsOneByteRepresentation()) { 237 is_one_byte_ = false; 266 bool is_one_byte_; local
|
H A D | objects-inl.h | 485 if (is_one_byte_) { 495 DCHECK_EQ(is_one_byte_, sizeof(Char) == 1); 3907 return is_one_byte_ ? *buffer8_++ : *buffer16_++; 3912 : is_one_byte_(false) { 3943 is_one_byte_ = true; 3951 is_one_byte_ = false;
|
H A D | api.cc | 4759 ContainsOnlyOneByteHelper() : is_one_byte_(true) {} 4762 if (cons_string == NULL) return is_one_byte_; 4788 is_one_byte_ = false; 4797 if ((acc & kOneByteMask) != 0) is_one_byte_ = false; 4807 if (!is_one_byte_) return false; 4812 if (!is_one_byte_) return false; 4823 if (!is_one_byte_) return false; 4839 return is_one_byte_; 4841 bool is_one_byte_; member in class:v8::ContainsOnlyOneByteHelper
|
H A D | objects.cc | 10601 is_one_byte_(true), 10614 is_one_byte_ = content.IsOneByte(); 10615 if (is_one_byte_) { 10994 State() : is_one_byte_(true), length_(0), buffer8_(NULL) {} 11007 is_one_byte_ = true; 11013 is_one_byte_ = false; 11022 if (is_one_byte_) { 11039 bool is_one_byte_; member in class:v8::internal::__anon18671::StringComparator::State 11068 if (state_1_.is_one_byte_) { 11069 if (state_2_.is_one_byte_) { [all...] |
H A D | objects.h | 9445 bool is_one_byte_; 9513 bool is_one_byte_;
|
/external/v8/src/regexp/ |
H A D | jsregexp.h | 1490 is_one_byte_(is_one_byte), 1517 bool is_one_byte_; member in class:v8::internal::Analysis
|
H A D | jsregexp.cc | 6329 that->MakeCaseIndependent(isolate(), is_one_byte_); local
|
Completed in 390 milliseconds