Lines Matching refs:pos

35     private int pos;
57 for (; pos < length && chars[pos] == ' '; pos++) {
59 if (pos == length) {
64 beg = pos;
67 pos++;
68 for (; pos < length && chars[pos] != '=' && chars[pos] != ' '; pos++) {
72 if (pos >= length) {
77 end = pos;
81 if (chars[pos] == ' ') {
82 for (; pos < length && chars[pos] != '=' && chars[pos] == ' '; pos++) {
85 if (chars[pos] != '=' || pos == length) {
90 pos++; //skip '=' char
94 for (; pos < length && chars[pos] == ' '; pos++) {
111 pos++;
112 beg = pos;
116 if (pos == length) {
120 if (chars[pos] == '"') {
122 pos++;
124 } else if (chars[pos] == '\\') {
128 chars[end] = chars[pos];
130 pos++;
136 for (; pos < length && chars[pos] == ' '; pos++) {
144 if (pos + 4 >= length) {
149 beg = pos; // store '#' position
150 pos++;
155 if (pos == length || chars[pos] == '+' || chars[pos] == ','
156 || chars[pos] == ';') {
157 end = pos;
161 if (chars[pos] == ' ') {
162 end = pos;
163 pos++;
166 for (; pos < length && chars[pos] == ' '; pos++) {
169 } else if (chars[pos] >= 'A' && chars[pos] <= 'F') {
170 chars[pos] += 32; //to low case
173 pos++;
194 beg = pos;
195 end = pos;
197 if (pos >= length) {
202 switch (chars[pos]) {
211 pos++;
218 pos++;
221 for (; pos < length && chars[pos] == ' '; pos++) {
224 if (pos == length || chars[pos] == ',' || chars[pos] == '+'
225 || chars[pos] == ';') {
231 chars[end++] = chars[pos];
232 pos++;
239 pos++;
240 if (pos == length) {
244 switch (chars[pos]) {
259 return chars[pos];
270 int res = getByte(pos);
271 pos++; //FIXME tmp
291 pos++;
292 if (pos == length || chars[pos] != '\\') {
295 pos++;
297 b = getByte(pos);
298 pos++; //FIXME tmp
357 pos = 0;
370 if (pos == length) {
374 switch (chars[pos]) {
397 if (pos >= length) {
401 if (chars[pos] == ',' || chars[pos] == ';') {
402 } else if (chars[pos] != '+') {
406 pos++;
422 pos = 0;
433 while (pos < length) {
436 switch (chars[pos]) {
462 if (pos >= length) {
466 if (chars[pos] == ',' || chars[pos] == ';') {
467 } else if (chars[pos] != '+') {
471 pos++;