Lines Matching refs:temp
132 String[] temp = resDir.list();
135 for (int i = 0; i < temp.length; i++) {
136 if (temp[i].startsWith(NLSbaseClass) && (temp[i].endsWith(NLSpostfix)
137 || temp[i].endsWith(NLSpostfix.toUpperCase()) || NLSpostfix.equals(""))) {
140 RBManagerGUI.debugMsg("Character is: " + temp[i].charAt(NLSbaseClass.length()));
141 if (temp[i].charAt(NLSbaseClass.length()) == '.' || temp[i].charAt(NLSbaseClass.length()) == '_')
149 for (int i = 0; i < temp.length; i++) {
150 if (temp[i].equals(mainFile.getName())) {
152 } else if (temp[i].startsWith(NLSbaseClass) && (temp[i].endsWith(NLSpostfix)
153 || temp[i].endsWith(NLSpostfix.toUpperCase()) || NLSpostfix.equals(""))) {
154 if (temp[i].charAt(NLSbaseClass.length()) == '.' || temp[i].charAt(NLSbaseClass.length()) == '_') {
155 encodings[count] = new String(temp[i].substring(filePrefix.length()+1,temp[i].indexOf(filePostfix))); count++;