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

  /external/v8/src/regexp/
interpreter-irregexp.cc 599 String::FlatContent subject_content = subject->GetFlatContent(); local
600 if (subject_content.IsOneByte()) {
601 Vector<const uint8_t> subject_vector = subject_content.ToOneByteVector();
610 DCHECK(subject_content.IsTwoByte());
611 Vector<const uc16> subject_vector = subject_content.ToUC16Vector();
jsregexp.cc 256 String::FlatContent subject_content = subject->GetFlatContent(); local
258 DCHECK(subject_content.IsFlat());
262 ? (subject_content.IsOneByte()
263 ? SearchString(isolate, subject_content.ToOneByteVector(),
265 : SearchString(isolate, subject_content.ToUC16Vector(),
267 : (subject_content.IsOneByte()
268 ? SearchString(isolate, subject_content.ToOneByteVector(),
270 : SearchString(isolate, subject_content.ToUC16Vector(),
    [all...]

Completed in 603 milliseconds