Lines Matching defs:chars

37   private char[] chars;
49 // skip preceding space chars, they can present after
51 for (; pos < length && chars[pos] == ' '; pos++) {
60 // attribute type chars
62 for (; pos < length && chars[pos] != '=' && chars[pos] != ' '; pos++) {
73 // skip trailing space chars between attribute type and '='
75 if (chars[pos] == ' ') {
76 for (; pos < length && chars[pos] != '=' && chars[pos] == ' '; pos++) {
79 if (chars[pos] != '=' || pos == length) {
86 // skip space chars between '=' and attribute value
88 for (; pos < length && chars[pos] == ' '; pos++) {
93 if ((end - beg > 4) && (chars[beg + 3] == '.')
94 && (chars[beg] == 'O' || chars[beg] == 'o')
95 && (chars[beg + 1] == 'I' || chars[beg + 1] == 'i')
96 && (chars[beg + 2] == 'D' || chars[beg + 2] == 'd')) {
100 return new String(chars, beg, end - beg);
114 if (chars[pos] == '"') {
118 } else if (chars[pos] == '\\') {
119 chars[end] = getEscaped();
121 // shift char: required for string with escaped chars
122 chars[end] = chars[pos];
128 // skip trailing space chars before comma or semicolon.
130 for (; pos < length && chars[pos] == ' '; pos++) {
133 return new String(chars, beg, end - beg);
149 if (pos == length || chars[pos] == '+' || chars[pos] == ','
150 || chars[pos] == ';') {
155 if (chars[pos] == ' ') {
158 // skip trailing space chars before comma or semicolon.
160 for (; pos < length && chars[pos] == ' '; pos++) {
163 } else if (chars[pos] >= 'A' && chars[pos] <= 'F') {
164 chars[pos] += 32; //to low case
183 return new String(chars, beg, hexLen);
193 return new String(chars, beg, end - beg);
196 switch (chars[pos]) {
201 return new String(chars, beg, end - beg);
204 chars[end++] = getEscaped();
213 chars[end++] = ' ';
215 for (; pos < length && chars[pos] == ' '; pos++) {
216 chars[end++] = ' ';
218 if (pos == length || chars[pos] == ',' || chars[pos] == '+'
219 || chars[pos] == ';') {
221 return new String(chars, beg, cur - beg);
225 chars[end++] = chars[pos];
238 switch (chars[pos]) {
253 return chars[pos];
286 if (pos == length || chars[pos] != '\\') {
318 b1 = chars[position];
329 b2 = chars[position + 1];
355 chars = dn.toCharArray();
368 switch (chars[pos]) {
395 if (chars[pos] == ',' || chars[pos] == ';') {
396 } else if (chars[pos] != '+') {