Lines Matching refs:Char
357 template <class Char>
358 void DetectRadixInternal(Char current, int length);
390 template <class Char>
391 void StringToIntHelper<IsolateT>::DetectRadixInternal(Char current,
393 Char start = current;
395 Char end = start + length;
474 template <class Char>
475 void ParseInternal(Char start) {
476 Char current = start + cursor();
477 Char end = start + length();
510 template <class Char>
511 void HandleGenericCase(Char current, Char end);
513 template <class Char>
514 double HandlePowerOfTwoCase(Char current, Char end) {
541 template <class Char>
542 void HandleBaseTenCase(Char current, Char end) {
571 template <class Char>
572 void NumberParseIntHelper::HandleGenericCase(Char current, Char end) {
992 template <class Char>
993 void ParseInternal(Char start) {
995 Char current = start + this->cursor();
996 Char end = start + this->length();