Home | History | Annotate | Download | only in generators

Lines Matching refs:errorCount

258 		int errorCount = countCompileErrors(fileContents);
262 if (errorCount != 0) {
275 formatCompileErrorRow(log, errorCount, warningCount, compilerLog);
280 int errorCount = 0;
337 errorCount++;
341 if (errorCount != 0) {
358 errorCount,
546 int errorCount = countErrors(fullName);
547 if (errorCount != 0) {
562 String tmp=((platformSpecificTemplateList.equals(""))?formatRow(xmlFileNames[i].getPath(), errorCount,true):formatRowReleng(xmlFileNames[i].getPath(), errorCount,true));
831 int errorCount,
835 if (errorCount == 0 && warningCount == 0) {
862 .append(errorCount)
927 private String formatRow(String fileName, int errorCount, boolean link) {
943 if (errorCount != 0)
949 if (errorCount!=0){
952 if (errorCount==-1){
966 if (errorCount > 0)
971 if (errorCount == -1)
974 else if (errorCount >0)
975 aString = aString + "<font color=\"#ff0000\">"+String.valueOf(errorCount);
977 aString = aString +String.valueOf(errorCount);
979 if (errorCount != 0)
990 private String formatRowReleng(String fileName, int errorCount, boolean link) {
1097 if (errorCount != 0)
1103 if (errorCount!=0){
1104 displayName="<font color=\"#ff0000\">"+ "(" + String.valueOf(errorCount) + ")" +"</font>";
1111 if (errorCount==-1){
1126 if (errorCount == -1)
1129 if (errorCount != 0)
1141 int errorCount = 0;
1160 errorCount =
1161 errorCount + Integer.parseInt(aNode.getNodeValue());
1163 errorCount =
1164 errorCount + Integer.parseInt(aNode.getNodeValue());
1179 return errorCount;