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

  /external/v8/src/ast/
ast-value-factory.cc 356 AstRawString* AstValueFactory::GetString(uint32_t hash, bool is_one_byte,
362 AstRawString key(is_one_byte, literal_bytes, hash);
370 is_one_byte, Vector<const byte>(new_literal_bytes, length), hash);
390 if (lhs->is_one_byte()) {
391 if (rhs->is_one_byte()) {
401 if (rhs->is_one_byte()) {
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) {}
348 AstRawString* GetString(uint32_t hash, bool is_one_byte,
  /external/v8/src/extensions/
externalize-string-extension.cc 136 bool is_one_byte = local
138 args.GetReturnValue().Set(is_one_byte);
  /external/v8/src/parsing/
scanner.h 122 int AddSymbol(Vector<const uint8_t> key, bool is_one_byte, int value);
127 uint8_t* BackupKey(Vector<const uint8_t> key, bool is_one_byte);
134 static uint32_t Hash(Vector<const uint8_t> key, bool is_one_byte);
195 bool is_one_byte() const { return is_one_byte_; } function in class:v8::internal::LiteralBuffer
198 return is_one_byte() && keyword.length() == position_ &&
660 return current_.literal_chars->is_one_byte();
678 return next_.literal_chars->is_one_byte();
690 return current_.raw_literal_chars->is_one_byte();
scanner.cc 24 if (is_one_byte()) {
385 if (!name.is_one_byte()) return;
    [all...]
preparse-data.h 164 bool is_one_byte; member in struct:v8::internal::CompleteParserRecorder::Key
parser.cc     [all...]
  /external/v8/src/regexp/
regexp-macro-assembler.cc 166 bool is_one_byte = subject_handle->IsOneByteRepresentationUnderneath(); local
194 if (subject_handle->IsOneByteRepresentationUnderneath() != is_one_byte) {
243 bool is_one_byte = subject_ptr->IsOneByteRepresentation(); local
246 int char_size_shift = is_one_byte ? 0 : 1;
jsregexp.h 203 static ByteArray* IrregexpByteCode(FixedArray* re, bool is_one_byte);
204 static Code* IrregexpNativeCode(FixedArray* re, bool is_one_byte);
217 Handle<String> sample_subject, bool is_one_byte);
220 bool is_one_byte);
747 void MakeCaseIndependent(Isolate* isolate, bool is_one_byte);
    [all...]
jsregexp.cc 324 bool is_one_byte) {
325 Object* compiled_code = re->DataAt(JSRegExp::code_index(is_one_byte));
333 Object* saved_code = re->DataAt(JSRegExp::saved_code_index(is_one_byte));
336 re->SetDataAt(JSRegExp::code_index(is_one_byte), saved_code);
340 return CompileIrregexp(re, sample_subject, is_one_byte);
346 bool is_one_byte) {
353 Object* entry = re->DataAt(JSRegExp::code_index(is_one_byte));
367 Object* error_string = re->DataAt(JSRegExp::saved_code_index(is_one_byte));
389 sample_subject, is_one_byte);
399 data->set(JSRegExp::code_index(is_one_byte), result.code)
467 bool is_one_byte = subject->IsOneByteRepresentationUnderneath(); local
498 bool is_one_byte = subject->IsOneByteRepresentationUnderneath(); local
    [all...]
regexp-ast.h 113 bool is_one_byte);
  /external/v8/src/runtime/
runtime-strings.cc 649 bool is_one_byte = separator->IsOneByteRepresentation(); local
660 if (is_one_byte && !string->IsOneByteRepresentation()) {
661 is_one_byte = false;
697 if (is_one_byte) {
    [all...]
  /external/v8/src/
factory.cc 535 bool is_one_byte = left_is_one_byte && right_is_one_byte; local
537 if (!is_one_byte) {
556 if (is_one_byte) {
583 (is_one_byte || is_one_byte_data_in_two_byte_string)
696 bool is_one_byte = length <= kOneByteCheckLengthLimit && local
701 map = is_one_byte ? short_external_string_with_one_byte_data_map()
704 map = is_one_byte ? external_string_with_one_byte_data_map()
    [all...]
objects.cc 1980 bool is_one_byte = this->IsOneByteRepresentation(); local
    [all...]
  /external/v8/src/heap/
mark-compact.cc     [all...]
heap.h     [all...]
heap.cc     [all...]
  /external/v8/test/cctest/
test-regexp.cc 594 bool is_one_byte, Zone* zone) {
610 sample_subject, is_one_byte);
616 bool is_one_byte, bool dot_output = false) {
619 RegExpNode* node = Compile(input, multiline, unicode, is_one_byte, &zone);
    [all...]

Completed in 434 milliseconds