/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-compiler.cc | 177 constexpr base::uc32 MaxCodeUnit(const bool one_byte) { in MaxCodeUnit() argument 182 return one_byte ? String::kMaxOneByteCharCodeU : String::kMaxUtf16CodeUnitU; in MaxCodeUnit() 185 constexpr uint32_t CharMask(const bool one_byte) { in CharMask() argument 188 return MaxCodeUnit(one_byte); in CharMask() 241 RegExpFlags flags, bool one_byte) in RegExpCompiler() 248 one_byte_(one_byte), in RegExpCompiler() 834 bool one_byte = compiler->one_byte(); in EmitAtomNonLetter() local 836 int length = GetCaseIndependentLetters(isolate, c, one_byte, chars, 4); in EmitAtomNonLetter() 846 if (one_byte in EmitAtomNonLetter() 240 RegExpCompiler(Isolate* isolate, Zone* zone, int capture_count, RegExpFlags flags, bool one_byte) RegExpCompiler() argument 859 ShortCutEmitCharacterPair(RegExpMacroAssembler* macro_assembler, bool one_byte, base::uc16 c1, base::uc16 c2, Label* on_failure) ShortCutEmitCharacterPair() argument 894 bool one_byte = compiler->one_byte(); EmitAtomLetter() local 1218 EmitCharClass(RegExpMacroAssembler* macro_assembler, RegExpCharacterClass* cc, bool one_byte, Label* on_failure, int cp_offset, bool check_offset, bool preloaded, Zone* zone) EmitCharClass() argument 1741 Advance(int by, bool one_byte) Advance() argument 2338 bool one_byte = compiler->one_byte(); TextEmitPass() local 2641 bool one_byte = compiler->one_byte(); CalculatePreloadCharacters() local [all...] |
H A D | regexp-compiler.h | 67 bool Rationalize(bool one_byte); 71 void Advance(int by, bool one_byte); 537 inline bool one_byte() { return one_byte_; } in one_byte() function in v8::internal::RegExpCompiler
|
H A D | regexp-compiler-tonode.cc | 230 DCHECK(!compiler->one_byte()); in AddNonBmpSurrogatePairs() 467 if (!IsUnicode(compiler->flags()) || compiler->one_byte() || in ToNode()
|
/third_party/node/deps/v8/src/strings/ |
H A D | string-builder.cc | 58 int array_length, bool* one_byte) { in StringBuilderConcatLength() 92 if (*one_byte && !element.IsOneByteRepresentation()) { in StringBuilderConcatLength() 93 *one_byte = false; in StringBuilderConcatLength() 57 StringBuilderConcatLength(int special_length, FixedArray fixed_array, int array_length, bool* one_byte) StringBuilderConcatLength() argument
|
H A D | string-builder-inl.h | 36 int array_length, bool* one_byte);
|
/third_party/node/benchmark/buffers/ |
H A D | buffer-bytelength-string.js | 5 type: ['one_byte', 'two_bytes', 'three_bytes', 'four_bytes'], 13 one_byte: 'hello brendan!!!',
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-regexp.cc | 374 bool one_byte = String::IsOneByteRepresentationUnderneath(*source); in EscapeRegExpSource() 377 one_byte ? CountAdditionalEscapeChars<uint8_t>(source, &needs_escapes) in EscapeRegExpSource() 381 if (one_byte) { in EscapeRegExpSource()
|
H A D | string.cc | 158 bool one_byte) { in ComputeThinStringMap() 161 return one_byte ? roots.shared_thin_one_byte_string_map() in ComputeThinStringMap() 164 return one_byte ? roots.thin_one_byte_string_map() : roots.thin_string_map(); in ComputeThinStringMap() 157 ComputeThinStringMap(IsolateT* isolate, StringShape from_string_shape, bool one_byte) ComputeThinStringMap() argument
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-strings.cc | 225 bool one_byte = special->IsOneByteRepresentation(); in RUNTIME_FUNCTION() local 241 array_length, &one_byte); in RUNTIME_FUNCTION() 251 if (one_byte) { in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/heap/ |
H A D | factory-base.h | 235 Handle<String> left, Handle<String> right, int length, bool one_byte,
|
H A D | factory-base.cc | 785 int length, bool one_byte, in NewConsString() 793 one_byte ? NewWithImmortalMap( in NewConsString() 783 NewConsString(Handle<String> left, Handle<String> right, int length, bool one_byte, AllocationType allocation) NewConsString() argument
|