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

  /external/chromium_org/v8/src/
json-stringifier.h 41 template <bool is_one_byte, typename Char>
44 template <bool is_one_byte, typename Char>
132 template <bool is_one_byte, typename Char>
320 template <bool is_one_byte, typename Char>
322 if (is_one_byte) {
333 template <bool is_one_byte, typename Char>
335 for (; *chars != '\0'; chars++) Append_<is_one_byte, Char>(*chars);
782 template <bool is_one_byte, typename Char>
785 Append_<is_one_byte, char>('"');
794 if (is_one_byte) {
    [all...]
ast-value-factory.h 81 bool is_one_byte() const { return is_one_byte_; } function in class:v8::internal::AstRawString
101 AstRawString(bool is_one_byte, const Vector<const byte>& literal_bytes,
103 : is_one_byte_(is_one_byte), literal_bytes_(literal_bytes), hash_(hash) {}
321 const AstRawString* GetString(uint32_t hash, bool is_one_byte,
scanner.h 161 int AddSymbol(Vector<const uint8_t> key, bool is_one_byte, int value);
166 uint8_t* BackupKey(Vector<const uint8_t> key, bool is_one_byte);
173 static uint32_t Hash(Vector<const uint8_t> key, bool is_one_byte);
219 bool is_one_byte() const { return is_one_byte_; }
222 return is_one_byte() && keyword.length() == position_ &&
558 return current_.literal_chars->is_one_byte();
576 return next_.literal_chars->is_one_byte();
ast-value-factory.cc 384 uint32_t hash, bool is_one_byte, Vector<const byte> literal_bytes) {
389 AstRawString key(is_one_byte, literal_bytes, hash);
397 is_one_byte, Vector<const byte>(new_literal_bytes, length), hash);
preparse-data.h 127 bool is_one_byte; member in struct:v8::internal::CompleteParserRecorder::Key
scanner.cc 24 if (is_one_byte()) {
330 if (!name.is_one_byte()) return;
1020 return string->is_one_byte() &&
1062 if (next_.literal_chars->is_one_byte()) {
    [all...]
jsregexp.h 207 static ByteArray* IrregexpByteCode(FixedArray* re, bool is_one_byte);
208 static Code* IrregexpNativeCode(FixedArray* re, bool is_one_byte);
220 Handle<String> sample_subject, bool is_one_byte);
223 bool is_one_byte);
266 void AddCaseEquivalents(ZoneList<CharacterRange>* ranges, bool is_one_byte,
850 void MakeCaseIndependent(bool is_one_byte);
    [all...]
regexp-macro-assembler.cc 105 bool is_one_byte = subject_ptr->IsOneByteRepresentation(); local
108 int char_size_shift = is_one_byte ? 0 : 1;
jsregexp.cc 354 bool is_one_byte) {
355 Object* compiled_code = re->DataAt(JSRegExp::code_index(is_one_byte));
363 Object* saved_code = re->DataAt(JSRegExp::saved_code_index(is_one_byte));
366 re->SetDataAt(JSRegExp::code_index(is_one_byte), saved_code);
370 return CompileIrregexp(re, sample_subject, is_one_byte);
391 bool is_one_byte) {
398 Object* entry = re->DataAt(JSRegExp::code_index(is_one_byte));
412 Object* error_string = re->DataAt(JSRegExp::saved_code_index(is_one_byte));
439 is_one_byte, &zone);
449 data->set(JSRegExp::code_index(is_one_byte), result.code)
508 bool is_one_byte = subject->IsOneByteRepresentationUnderneath(); local
539 bool is_one_byte = subject->IsOneByteRepresentationUnderneath(); local
    [all...]
factory.cc 494 bool is_one_byte = left_is_one_byte && right_is_one_byte; local
496 if (!is_one_byte) {
515 if (is_one_byte) {
541 Handle<Map> map = (is_one_byte || is_one_byte_data_in_two_byte_string)
649 bool is_one_byte = length <= kOneByteCheckLengthLimit && local
651 Handle<Map> map = is_one_byte ?
    [all...]
runtime.cc     [all...]
objects.cc 1008 bool is_one_byte = this->IsOneByteRepresentation(); local
    [all...]
  /external/chromium_org/v8/src/extensions/
externalize-string-extension.cc 120 bool is_one_byte = local
122 args.GetReturnValue().Set(is_one_byte);
  /external/chromium_org/v8/test/cctest/
test-regexp.cc 500 static RegExpNode* Compile(const char* input, bool multiline, bool is_one_byte,
513 sample_subject, is_one_byte, zone);
518 static void Execute(const char* input, bool multiline, bool is_one_byte,
522 RegExpNode* node = Compile(input, multiline, is_one_byte, &zone);
    [all...]
  /external/chromium_org/v8/src/heap/
mark-compact.cc     [all...]
heap.cc     [all...]
heap.h     [all...]
  /external/chromium_org/v8/src/arm/
regexp-macro-assembler-arm.cc     [all...]
  /external/chromium_org/v8/src/arm64/
regexp-macro-assembler-arm64.cc 1318 bool is_one_byte = subject->IsOneByteRepresentationUnderneath(); local
    [all...]
  /external/chromium_org/v8/src/ia32/
regexp-macro-assembler-ia32.cc     [all...]
  /external/chromium_org/v8/src/mips/
regexp-macro-assembler-mips.cc 1129 bool is_one_byte = subject->IsOneByteRepresentationUnderneath(); local
    [all...]
  /external/chromium_org/v8/src/mips64/
regexp-macro-assembler-mips64.cc 1175 bool is_one_byte = subject->IsOneByteRepresentationUnderneath(); local
    [all...]
  /external/chromium_org/v8/src/x64/
regexp-macro-assembler-x64.cc     [all...]
  /external/chromium_org/v8/src/x87/
regexp-macro-assembler-x87.cc     [all...]

Completed in 1748 milliseconds