HomeSort by relevance Sort by last modified time
    Searched refs:is_one_byte (Results 1 - 18 of 18) sorted by null

  /external/v8/src/parsing/
duplicate-finder.h 23 bool AddSymbol(Vector<const uint8_t> key, bool is_one_byte);
28 uint8_t* BackupKey(Vector<const uint8_t> key, bool is_one_byte);
36 static uint32_t Hash(Vector<const uint8_t> key, bool is_one_byte);
duplicate-finder.cc 18 bool DuplicateFinder::AddSymbol(Vector<const uint8_t> key, bool is_one_byte) {
19 uint32_t hash = Hash(key, is_one_byte);
20 byte* encoding = BackupKey(key, is_one_byte);
27 uint32_t DuplicateFinder::Hash(Vector<const uint8_t> key, bool is_one_byte) {
31 uint32_t hash = (length << 1) | (is_one_byte ? 1 : 0);
62 bool is_one_byte) {
63 uint32_t one_byte_length = (bytes.length() << 1) | (is_one_byte ? 1 : 0);
scanner.h 386 bool is_one_byte() const { return is_one_byte_; } function in class:v8::internal::Scanner::LiteralBuffer
389 return is_one_byte() && keyword.length() == position_ &&
639 return !current_.literal_chars || current_.literal_chars->is_one_byte();
657 return next_.literal_chars->is_one_byte();
669 return current_.raw_literal_chars->is_one_byte();
scanner.cc 63 if (is_one_byte()) {
525 if (!name.is_one_byte()) return;
    [all...]
parser.cc 457 DCHECK(name->is_one_byte());
    [all...]
  /external/v8/src/ast/
ast-value-factory.cc 63 if (string_->is_one_byte())
76 if (string_->is_one_byte())
125 if (is_one_byte() && literal_bytes_.length() == length) {
140 if (lhs->is_one_byte()) {
141 if (rhs->is_one_byte()) {
151 if (rhs->is_one_byte()) {
376 AstRawString* AstValueFactory::GetString(uint32_t hash, bool is_one_byte,
382 AstRawString key(is_one_byte, literal_bytes, hash);
390 is_one_byte, Vector<const byte>(new_literal_bytes, length), hash);
ast-value-factory.h 84 if (is_one_byte()) return literal_bytes_.length();
99 bool is_one_byte() const { return IsOneByteBits::decode(bit_field_); } function in class:v8::internal::final
103 if (is_one_byte()) return literal_bytes_[0];
121 AstRawString(bool is_one_byte, const Vector<const byte>& literal_bytes,
124 bit_field_ |= IsOneByteBits::encode(is_one_byte);
482 AstRawString* GetString(uint32_t hash, bool is_one_byte,
  /external/v8/src/extensions/
externalize-string-extension.cc 137 bool is_one_byte = local
139 args.GetReturnValue().Set(is_one_byte);
  /external/v8/src/regexp/
regexp-macro-assembler.cc 170 bool is_one_byte = subject_handle->IsOneByteRepresentationUnderneath(); local
198 if (subject_handle->IsOneByteRepresentationUnderneath() != is_one_byte) {
250 bool is_one_byte = subject_ptr->IsOneByteRepresentation(); local
253 int char_size_shift = is_one_byte ? 0 : 1;
jsregexp.h 152 static ByteArray* IrregexpByteCode(FixedArray* re, bool is_one_byte);
153 static Code* IrregexpNativeCode(FixedArray* re, bool is_one_byte);
166 Handle<String> sample_subject, bool is_one_byte);
169 bool is_one_byte);
696 void MakeCaseIndependent(Isolate* isolate, bool is_one_byte);
    [all...]
jsregexp.cc 314 bool is_one_byte) {
315 Object* compiled_code = re->DataAt(JSRegExp::code_index(is_one_byte));
323 Object* saved_code = re->DataAt(JSRegExp::saved_code_index(is_one_byte));
326 re->SetDataAt(JSRegExp::code_index(is_one_byte), saved_code);
330 return CompileIrregexp(re, sample_subject, is_one_byte);
336 bool is_one_byte) {
343 Object* entry = re->DataAt(JSRegExp::code_index(is_one_byte));
357 Object* error_string = re->DataAt(JSRegExp::saved_code_index(is_one_byte));
379 sample_subject, is_one_byte);
389 data->set(JSRegExp::code_index(is_one_byte), result.code)
457 bool is_one_byte = subject->IsOneByteRepresentationUnderneath(); local
488 bool is_one_byte = subject->IsOneByteRepresentationUnderneath(); local
    [all...]
regexp-ast.h 113 bool is_one_byte);
  /external/v8/src/runtime/
runtime-strings.cc 486 bool is_one_byte = separator->IsOneByteRepresentation(); local
497 if (is_one_byte && !string->IsOneByteRepresentation()) {
498 is_one_byte = false;
534 if (is_one_byte) {
  /external/v8/src/
factory.cc 667 bool is_one_byte = left_is_one_byte && right_is_one_byte; local
669 if (!is_one_byte) {
688 if (is_one_byte) {
715 (is_one_byte || is_one_byte_data_in_two_byte_string)
847 bool is_one_byte = length <= kOneByteCheckLengthLimit && local
852 map = is_one_byte ? short_external_string_with_one_byte_data_map()
855 map = is_one_byte ? external_string_with_one_byte_data_map()
    [all...]
objects.cc 2483 bool is_one_byte = this->IsOneByteRepresentation(); local
    [all...]
  /external/v8/src/heap/
mark-compact.cc     [all...]
heap.h     [all...]
heap.cc     [all...]

Completed in 2197 milliseconds