Searched refs:strpos (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DDTDParser.java56 int strpos = 0; field in class:DTDParser
110 if (strpos == str.length) {
115 str[strpos++] = (char)c;
123 char newstr[] = new char[strpos - pos];
124 System.arraycopy(str, pos, newstr, 0, strpos - pos);
125 strpos = pos;
134 char newstr[] = new char[strpos - pos];
135 System.arraycopy(str, pos, newstr, 0, strpos - pos);
136 strpos = pos;
311 int pos = strpos;
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DParser.java89 private int strpos = 0; field in class:Parser
759 if (strpos == str.length) {
764 str[strpos++] = (char)c;
771 char newStr[] = new char[strpos - pos];
772 System.arraycopy(str, pos, newStr, 0, strpos - pos);
773 strpos = pos;
778 char newStr[] = new char[strpos - pos];
779 System.arraycopy(str, pos, newStr, 0, strpos - pos);
780 strpos = pos;
787 // REMIND: it's not clear whether this version should set strpos o
[all...]

Completed in 33 milliseconds