Lines Matching defs:from
25 * - r6 : Current position in input, as negative offset from end of string.
45 * - fp[44] direct_call (if 1, direct call from JavaScript code,
112 __ bind(&start_label_); // And then continue from here.
174 // Pop Code offset from backtrack stack, add Code and jump to location.
464 void RegExpMacroAssemblerARM::CheckCharacterInRange(base::uc16 from,
467 __ sub(r0, current_character(), Operand(from));
468 __ cmp(r0, Operand(to - from));
472 void RegExpMacroAssemblerARM::CheckCharacterNotInRange(base::uc16 from,
475 __ sub(r0, current_character(), Operand(from));
476 __ cmp(r0, Operand(to - from));
709 // from generated code.
724 // Initialize backtrack stack pointer. It must not be clobbered from here on.
730 // memory when returning from this irregexp code object.
799 if (num_saved_registers_ > 0) { // Always is, if generated from a regexp.
893 // Offset from the end is zero if we already reached the end.
948 // String might have moved: Reload end of string from frame.
1168 // Drop the return address from the stack.