Home | History | Annotate | Download | only in src

Lines Matching refs:subject

49                                  Vector<const uc16> subject) {
51 unibrow::uchar old_char = subject[from++];
52 unibrow::uchar new_char = subject[current++];
70 Vector<const char> subject) {
72 unsigned int old_char = subject[from++];
73 unsigned int new_char = subject[current++];
192 Vector<const Char> subject,
306 if (pos >= subject.length()) {
309 current_char = subject[pos];
316 current_char = subject[pos];
322 if (pos + 2 > subject.length()) {
325 Char next = subject[pos + 1];
327 (subject[pos] | (next << (kBitsPerByte * sizeof(Char))));
334 Char next = subject[pos + 1];
335 current_char = (subject[pos] | (next << (kBitsPerByte * sizeof(Char))));
342 if (pos + 4 > subject.length()) {
345 Char next1 = subject[pos + 1];
346 Char next2 = subject[pos + 2];
347 Char next3 = subject[pos + 3];
348 current_char = (subject[pos] |
359 Char next1 = subject[pos + 1];
360 Char next2 = subject[pos + 2];
361 Char next3 = subject[pos + 3];
362 current_char = (subject[pos] |
559 if (current + len > subject.length()) {
565 if (subject[from + i] != subject[current + i]) {
583 if (current + len > subject.length()) {
588 from, current, len, subject)) {
613 if (subject.length() - current > by) {
614 current = subject.length() - by;
615 current_char = subject[current - 1];
631 Handle<String> subject,
634 ASSERT(subject->IsFlat());
639 String::FlatContent subject_content = subject->GetFlatContent();