Home | History | Annotate | Download | only in fuzzer

Lines Matching defs:Pos

99   for (size_t Pos = L; Pos <= R; Pos++) {
100 uint8_t V = (uint8_t)Str[Pos];
104 if (Pos + 1 <= R && (Str[Pos + 1] == '\\' || Str[Pos + 1] == '"')) {
105 U->push_back(Str[Pos + 1]);
106 Pos++;
110 if (Pos + 3 <= R && Str[Pos + 1] == 'x'
111 && isxdigit(Str[Pos + 2]) && isxdigit(Str[Pos + 3])) {
113 Hex[2] = Str[Pos + 2];
114 Hex[3] = Str[Pos + 3];
116 Pos += 3;
140 size_t Pos = 0;
141 while (Pos < S.size() && isspace(S[Pos])) Pos++; // Skip spaces.
142 if (Pos == S.size()) continue; // Empty line.
143 if (S[Pos] == '#') continue; // Comment line.