Home | History | Annotate | Download | only in profviz

Lines Matching refs:formatIndex

2984       var formatIndex = 0;
2990 for (var formatIndex = 0; formatIndex < format.length;) {
2991 if (format[formatIndex] === '%' && format[formatIndex+1] == 'n') {
2995 formatIndex += 2;
2999 if (format[formatIndex] === '%' && format[formatIndex+1] == 'c') {
3005 formatIndex += 2;
3015 if (format[formatIndex] === '%') {
3016 formatIndex++;
3018 if (format[formatIndex] == '*') {
3020 formatIndex++;
3022 var maxSpecifierStart = formatIndex;
3023 while (format[formatIndex].charCodeAt(0) >= 48 &&
3024 format[formatIndex].charCodeAt(0) <= 57) {
3025 formatIndex++;
3028 if (formatIndex != maxSpecifierStart) {
3029 max_ = parseInt(format.slice(maxSpecifierStart, formatIndex), 10);
3034 if (format[formatIndex] == 'l') {
3036 formatIndex++;
3037 if (format[formatIndex] == 'l') {
3039 formatIndex++;
3041 } else if (format[formatIndex] == 'h') {
3043 formatIndex++;
3045 var type = format[formatIndex];
3046 formatIndex++;
3076 (formatIndex >= format.length || next !== format[formatIndex].charCodeAt(0))) { // Stop when we read something that is coming up
3128 } else if (format[formatIndex] in __scanString.whiteSpace) {
3135 formatIndex++;
3139 if (format[formatIndex].charCodeAt(0) !== next) {
3143 formatIndex++;