Searched refs:next_s (Results 1 – 5 of 5) sorted by relevance
48 const char* next_s; in read_llong() local50 long long val = strtoll(s, (char**)&next_s, 10); in read_llong()52 next_s == s || val < min_val || val > max_val || in read_llong()53 (*next_s ? *next_s != delim : !may_end)) in read_llong()56 if (*next_s) in read_llong()57 next_s++; /* skip delimeter */ in read_llong()58 return next_s; in read_llong()
91 my $next_s = $self->transition->[$s][$c - $self->min->[$s]]; # move to next state93 if ($next_s < 0) {113 $s = $next_s;
880 for (int s = 0, next_s = SC.find_first(); next_s != -1; in computeSubClasses() local881 next_s = SC.find_next(s)) { in computeSubClasses()882 std::advance(I, next_s - s); in computeSubClasses()883 s = next_s; in computeSubClasses()
977 for (int s = 0, next_s = SC.find_first(); next_s != -1; in computeSubClasses() local978 next_s = SC.find_next(s)) { in computeSubClasses()979 std::advance(I, next_s - s); in computeSubClasses()980 s = next_s; in computeSubClasses()
2572 const char* next_s; in CalcWordWrapPositionA() local2574 next_s = s + 1; in CalcWordWrapPositionA()2576 next_s = s + ImTextCharFromUtf8(&c, s, text_end); in CalcWordWrapPositionA()2586 s = next_s; in CalcWordWrapPositionA()2591 s = next_s; in CalcWordWrapPositionA()2613 word_end = next_s; in CalcWordWrapPositionA()2635 s = next_s; in CalcWordWrapPositionA()