Home | History | Annotate | Download | only in src

Lines Matching refs:subject_ptr

88   String* subject_ptr = *subject;
91 int char_length = subject_ptr->length() - start_offset;
96 if (StringShape(subject_ptr).IsCons()) {
97 DCHECK_EQ(0, ConsString::cast(subject_ptr)->second()->length());
98 subject_ptr = ConsString::cast(subject_ptr)->first();
99 } else if (StringShape(subject_ptr).IsSliced()) {
100 SlicedString* slice = SlicedString::cast(subject_ptr);
101 subject_ptr = slice->parent();
105 bool is_one_byte = subject_ptr->IsOneByteRepresentation();
106 DCHECK(subject_ptr->IsExternalString() || subject_ptr->IsSeqString());
111 StringCharacterPosition(subject_ptr, start_offset + slice_offset);