HomeSort by relevance Sort by last modified time
    Searched refs:errorCount (Results 1 - 25 of 54) sorted by null

1 2 3

  /sdk/lint/cli/src/com/android/tools/lint/
MultiProjectHtmlReporter.java 50 public void write(int errorCount, int warningCount, List<Warning> allIssues) throws IOException {
134 writeOverview(errorCount, warningCount, projects);
142 private void writeOverview(int errorCount, int warningCount, List<ProjectEntry> projects)
165 errorCount, warningCount));
169 if (errorCount == 0 && warningCount == 0) {
209 mWriter.write(Integer.toString(entry.errorCount));
218 public int errorCount;
224 public ProjectEntry(String fileName, int errorCount, int warningCount, String path) {
226 this.errorCount = errorCount;
    [all...]
TextReporter.java 49 public void write(int errorCount, int warningCount, List<Warning> issues) throws IOException {
161 errorCount, warningCount));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
TestResultsGenerator.java 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))
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3recognizersharedstate.h 106 ANTLR3_UINT32 errorCount;
  /external/chromium/base/third_party/icu/
icu_utf.cc 195 uint8 errorCount=count;
203 c=utf8_errorValue[errorCount-count];
  /libcore/dom/src/test/java/org/w3c/domts/
JAXPDOMTestDocumentBuilderFactory.java 88 private int errorCount;
92 errorCount = 0;
97 errorCount++;
  /external/junit/src/junit/framework/
TestResult.java 84 public synchronized int errorCount() {
172 return failureCount() == 0 && errorCount() == 0;
  /external/junit/src/junit/textui/
ResultPrinter.java 49 printDefects(result.errors(), result.errorCount(), "error");
93 ", Errors: "+result.errorCount());
  /frameworks/base/test-runner/src/junit/textui/
ResultPrinter.java 48 printDefects(result.errors(), result.errorCount(), "error");
92 ", Errors: "+result.errorCount());
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
checkcharacternormalization02.js 109 var errorCount = 0;
140 errorCount += 1;
153 assertEquals("oneError",1,errorCount);
canonicalform05.js 103 var errorCount = 0;
180 errorCount += 1;
190 assertEquals("oneError",1,errorCount);
documentnormalizedocument05.js 103 var errorCount = 0;
174 errorCount += 1;
184 assertEquals("oneError",1,errorCount);
documentnormalizedocument07.js 115 var errorCount = 0;
183 errorCount += 1;
193 assertEquals("oneError",1,errorCount);
documentnormalizedocument13.js 103 var errorCount = 0;
174 errorCount += 1;
184 assertEquals("oneError",1,errorCount);
  /cts/tools/vm-tests-tf/src/util/build/
DasmBuildStep.java 84 if(dAsm.errorCount() > 0) {
85 System.err.println("Found " + dAsm.errorCount() + " errors " +
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 146 int errorCount = mStorage.getInt(PREFIX + "errorCount", 0);
162 if (errorCount > 0) {
164 options.backoffIncrementalMillis * errorCount);
277 .remove(PREFIX + "errorCount")
292 editor.putInt(PREFIX + "errorCount",
293 mStorage.getInt(PREFIX + "errorCount", 0) + 1);
304 SharedPreferencesCompat.apply(mStorage.edit().remove(PREFIX + "errorCount"));
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMTestCase.java 196 private int errorCount;
202 errorCount = 0;
207 errorCount++;
  /external/icu4c/test/intltest/
bidiconf.cpp 35 errorCount(0) {}
60 int32_t errorCount;
300 errorCount=0;
301 while(errorCount<10 && fgets(line, (int)sizeof(line), bidiTestFile.getAlias())!=NULL) {
484 ++errorCount;
transrt.cpp 333 int32_t errorCount;
411 errorCount = 0;
535 if (errorCount > 0) {
539 parent->errln("FAIL: %s errors: %d %s", str, errorCount, (errorCount > errorLimit ? " (at least!)" : " ")); // + ", see " + logFileName);
891 ++errorCount;
907 ++errorCount;
912 ++errorCount;
928 ++errorCount;
943 ++errorCount;
    [all...]
  /cts/tools/dasm/src/dasm/
Main.java 104 if (dAsm.errorCount() > 0) {
105 System.err.println("Found " + dAsm.errorCount() + " errors "
  /external/icu4c/common/
utf_impl.c 166 uint8_t errorCount=count;
174 c=utf8_errorValue[errorCount-count];
  /frameworks/base/tools/preload/
MemoryUsage.java 36 static int errorCount = 0;
252 errorCount += 1;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
buildTools.jar 
  /external/icu4c/tools/ctestfw/
ctest.c 1047 int errorCount = 0;
1081 errorCount += ERROR_COUNT;
1101 errorCount += ERROR_COUNT;
1105 if( ( doList == FALSE ) && ( errorCount > 0 ) )
1106 printf(" Total errors: %d\n", errorCount );
1112 errorCount++;
1115 return errorCount; /* total error count */
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderFactoryTest.java 919 private int errorCount;
925 errorCount = 0;
930 errorCount++;

Completed in 1193 milliseconds

1 2 3