Lines Matching defs:pos

46     private int pos;
74 for (; pos < chars.length && chars[pos] == ' '; pos++) {
76 if (pos == chars.length) {
81 beg = pos;
84 pos++;
85 for (; pos < chars.length && chars[pos] != '=' && chars[pos] != ' '; pos++) {
89 if (pos >= chars.length) {
95 end = pos;
99 if (chars[pos] == ' ') {
100 for (; pos < chars.length && chars[pos] != '=' && chars[pos] == ' '; pos++) {
103 if (chars[pos] != '=' || pos == chars.length) {
109 pos++; //skip '=' char
113 for (; pos < chars.length && chars[pos] == ' '; pos++) {
132 pos++;
133 beg = pos;
136 if (pos == chars.length) {
141 if (chars[pos] == '"') {
143 pos++;
145 } else if (chars[pos] == '\\') {
149 chars[end] = chars[pos];
151 pos++;
157 for (; pos < chars.length && chars[pos] == ' '; pos++) {
167 if (pos + 4 >= chars.length) {
172 beg = pos; // store '#' position
173 pos++;
177 if (pos == chars.length || chars[pos] == '+' || chars[pos] == ','
178 || chars[pos] == ';') {
179 end = pos;
183 if (chars[pos] == ' ') {
184 end = pos;
185 pos++;
188 for (; pos < chars.length && chars[pos] == ' '; pos++) {
191 } else if (chars[pos] >= 'A' && chars[pos] <= 'F') {
192 chars[pos] += 32; //to low case
195 pos++;
218 beg = pos;
219 end = pos;
221 if (pos >= chars.length) {
226 switch (chars[pos]) {
235 pos++;
242 pos++;
245 for (; pos < chars.length && chars[pos] == ' '; pos++) {
248 if (pos == chars.length || chars[pos] == ',' || chars[pos] == '+'
249 || chars[pos] == ';') {
255 chars[end++] = chars[pos];
256 pos++;
265 pos++;
266 if (pos == chars.length) {
270 char ch = chars[pos];
300 int res = getByte(pos);
301 pos++; //FIXME tmp
321 pos++;
322 if (pos == chars.length || chars[pos] != '\\') {
325 pos++;
327 b = getByte(pos);
328 pos++; //FIXME tmp
397 if (pos == chars.length) {
404 switch (chars[pos]) {
422 if (pos >= chars.length) {
427 if (chars[pos] == ',' || chars[pos] == ';') {
430 } else if (chars[pos] != '+') {
434 pos++;