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

  /external/v8/src/extensions/
externalize-string-extension.cc 136 bool is_one_byte = local
138 args.GetReturnValue().Set(is_one_byte);
  /external/v8/src/ast/
ast-value-factory.h 83 bool is_one_byte() const { return is_one_byte_; } function in class:v8::internal::final
102 AstRawString(bool is_one_byte, const Vector<const byte>& literal_bytes,
104 : is_one_byte_(is_one_byte), literal_bytes_(literal_bytes), hash_(hash) {}
345 AstRawString* GetString(uint32_t hash, bool is_one_byte,
  /external/v8/src/parsing/
preparse-data.h 163 bool is_one_byte; member in struct:v8::internal::CompleteParserRecorder::Key
scanner.h 121 int AddSymbol(Vector<const uint8_t> key, bool is_one_byte, int value);
126 uint8_t* BackupKey(Vector<const uint8_t> key, bool is_one_byte);
133 static uint32_t Hash(Vector<const uint8_t> key, bool is_one_byte);
184 bool is_one_byte() const { return is_one_byte_; } function in class:v8::internal::LiteralBuffer
187 return is_one_byte() && keyword.length() == position_ &&
598 return current_.literal_chars->is_one_byte();
616 return next_.literal_chars->is_one_byte();
628 return current_.raw_literal_chars->is_one_byte();
  /external/v8/src/regexp/
regexp-macro-assembler.cc 79 bool is_one_byte = subject_handle->IsOneByteRepresentationUnderneath(); local
107 if (subject_handle->IsOneByteRepresentationUnderneath() != is_one_byte) {
156 bool is_one_byte = subject_ptr->IsOneByteRepresentation(); local
159 int char_size_shift = is_one_byte ? 0 : 1;
jsregexp.cc 318 bool is_one_byte) {
319 Object* compiled_code = re->DataAt(JSRegExp::code_index(is_one_byte));
327 Object* saved_code = re->DataAt(JSRegExp::saved_code_index(is_one_byte));
330 re->SetDataAt(JSRegExp::code_index(is_one_byte), saved_code);
334 return CompileIrregexp(re, sample_subject, is_one_byte);
340 bool is_one_byte) {
347 Object* entry = re->DataAt(JSRegExp::code_index(is_one_byte));
361 Object* error_string = re->DataAt(JSRegExp::saved_code_index(is_one_byte));
385 flags & JSRegExp::kSticky, pattern, sample_subject, is_one_byte);
395 data->set(JSRegExp::code_index(is_one_byte), result.code)
454 bool is_one_byte = subject->IsOneByteRepresentationUnderneath(); local
485 bool is_one_byte = subject->IsOneByteRepresentationUnderneath(); local
    [all...]
  /external/v8/src/runtime/
runtime-strings.cc 639 bool is_one_byte = separator->IsOneByteRepresentation(); local
657 if (is_one_byte && !string->IsOneByteRepresentation()) {
658 is_one_byte = false;
694 if (is_one_byte) {
    [all...]
  /external/v8/src/
factory.cc 539 bool is_one_byte = left_is_one_byte && right_is_one_byte; local
541 if (!is_one_byte) {
560 if (is_one_byte) {
587 (is_one_byte || is_one_byte_data_in_two_byte_string)
700 bool is_one_byte = length <= kOneByteCheckLengthLimit && local
705 map = is_one_byte ? short_external_string_with_one_byte_data_map()
708 map = is_one_byte ? external_string_with_one_byte_data_map()
    [all...]
objects.cc 1767 bool is_one_byte = this->IsOneByteRepresentation(); local
    [all...]

Completed in 222 milliseconds