Lines Matching defs:from
264 // Load the next characters from {lhs} and {rhs}.
549 auto from = Parameter<Smi>(Descriptor::kFrom);
551 Return(SubString(string, SmiUntag(from), SmiUntag(to)));
604 // Compute the first offset after the string from the length.
619 // Load the next characters from {lhs} and {rhs}.
760 // Load the character code at the {position} from the {receiver}.
763 // Create a String from the UTF16 encoded code point
773 // TODO(ishell): use constants from Descriptor once the JSFunction linkage
853 // Resume copying the passed-in arguments from the same place where the
1431 auto from = UncheckedParameter<IntPtrT>(Descriptor::kFrom);
1434 Return(SubString(string, from, to));
1595 TNode<T> from, TNode<Int32T> from_instance_type, TNode<IntPtrT> from_index,
1608 CopyStringCharacters<T>(from, result, from_index, IntPtrConstant(0),
1620 CopyStringCharacters<T>(from, result, from_index, IntPtrConstant(0),
1633 TNode<IntPtrT> from,
1639 const TNode<IntPtrT> substr_length = IntPtrSub(to, from);
1659 TNode<IntPtrT> offset = IntPtrAdd(from, to_direct.offset());
1739 TNode<Int32T> char_code = StringCharCodeAt(string, Unsigned(from));
1748 // Equal length - check if {from, to} == {0, str.length}.
1749 GotoIf(UintPtrGreaterThan(from, IntPtrConstant(0)), &runtime);
1765 SmiTag(from), SmiTag(to)));