Home | History | Annotate | Download | only in src

Lines Matching refs:begin

87     const char* begin = SeqAsciiString::cast(str)->GetChars();
88 const char* end = begin + str->length();
89 return InternalStringToDouble(unicode_cache, begin, end, flags,
92 const uc16* begin = SeqTwoByteString::cast(str)->GetChars();
93 const uc16* end = begin + str->length();
94 return InternalStringToDouble(unicode_cache, begin, end, flags,
112 const char* begin = SeqAsciiString::cast(str)->GetChars();
113 const char* end = begin + str->length();
114 return InternalStringToInt(unicode_cache, begin, end, radix);
116 const uc16* begin = SeqTwoByteString::cast(str)->GetChars();
117 const uc16* end = begin + str->length();
118 return InternalStringToInt(unicode_cache, begin, end, radix);