Home
last modified time | relevance | path

Searched refs:errorCount (Results 1 – 20 of 20) sorted by relevance

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
DTestResultsGenerator.java258 int errorCount = countCompileErrors(fileContents); in readCompileLog() local
262 if (errorCount != 0) { in readCompileLog()
275 formatCompileErrorRow(log, errorCount, warningCount, compilerLog); in readCompileLog()
280 int errorCount = 0; in parseCompileLog() local
337 errorCount++; in parseCompileLog()
341 if (errorCount != 0) { in parseCompileLog()
358 errorCount, in parseCompileLog()
546 int errorCount = countErrors(fullName); in parseXml() local
547 if (errorCount != 0) { in parseXml()
562 …"))?formatRow(xmlFileNames[i].getPath(), errorCount,true):formatRowReleng(xmlFileNames[i].getPath(… in parseXml()
[all …]
/external/webkit/LayoutTests/dom/xhtml/level3/core/
Dcheckcharacternormalization02.js109 var errorCount = 0;
140 errorCount += 1;
153 assertEquals("oneError",1,errorCount);
Dcanonicalform05.js103 var errorCount = 0;
180 errorCount += 1;
190 assertEquals("oneError",1,errorCount);
Ddocumentnormalizedocument07.js115 var errorCount = 0;
183 errorCount += 1;
193 assertEquals("oneError",1,errorCount);
Ddocumentnormalizedocument13.js103 var errorCount = 0;
174 errorCount += 1;
184 assertEquals("oneError",1,errorCount);
Ddocumentnormalizedocument05.js103 var errorCount = 0;
174 errorCount += 1;
184 assertEquals("oneError",1,errorCount);
/external/doclava/res/assets/templates/
Dtodo.cs35 <tr><th>Errors</th><td><?cs var:all.errorCount ?></td></tr>
52 <td><?cs var:pkg.errorCount ?></td>
72 <td><?cs var:cl.errorCount ?></td>
83 <p>Errors: <?cs var:cl.errorCount ?><br/>
/external/chromium/base/third_party/icu/
Dicu_utf.cc195 uint8 errorCount=count; in utf8_nextCharSafeBody() local
203 c=utf8_errorValue[errorCount-count]; in utf8_nextCharSafeBody()
/external/icu4c/test/intltest/
Dbidiconf.cpp35 errorCount(0) {} in BiDiConformanceTest()
60 int32_t errorCount; member in BiDiConformanceTest
300 errorCount=0; in TestBidiTest()
301 while(errorCount<10 && fgets(line, (int)sizeof(line), bidiTestFile.getAlias())!=NULL) { in TestBidiTest()
484 ++errorCount; in printErrorLine()
Dtransrt.cpp333 int32_t errorCount; member in RTTest
411 errorCount = 0; in RTTest()
535 if (errorCount > 0) { in test()
539 …parent->errln("FAIL: %s errors: %d %s", str, errorCount, (errorCount > errorLimit ? " (at least!)"… in test()
891 ++errorCount; in logWrongScript()
907 ++errorCount; in logNotCanonical()
912 ++errorCount; in logFails()
928 ++errorCount; in logToRulesFails()
943 ++errorCount; in logRoundTripFailure()
Dintltest.cpp508 errorCount = 0; in IntlTest()
598 return errorCount; in getErrors()
699 lastErrorCount = errorCount; in runTestLoop()
719 ctest_xml_testcase(baseName, name, secs, (lastErrorCount!=errorCount)?"err":NULL); in runTestLoop()
724 if (lastErrorCount == errorCount) { in runTestLoop()
729 sprintf(msg, " } ERRORS (%li) in %s", (long)(errorCount-lastErrorCount), name); in runTestLoop()
811 errorCount++; in IncErrorCount()
813 return errorCount; in IncErrorCount()
Dintltest.h233 int32_t errorCount; variable
/external/junit/src/junit/framework/
DTestResult.java84 public synchronized int errorCount() { in errorCount() method in TestResult
172 return failureCount() == 0 && errorCount() == 0; in wasSuccessful()
/external/junit/src/junit/textui/
DResultPrinter.java49 printDefects(result.errors(), result.errorCount(), "error"); in printErrors()
93 ", Errors: "+result.errorCount()); in printFooter()
/external/icu4c/tools/ctestfw/
Dctest.c1047 int errorCount = 0; in runTestRequest() local
1081 errorCount += ERROR_COUNT; in runTestRequest()
1101 errorCount += ERROR_COUNT; in runTestRequest()
1105 if( ( doList == FALSE ) && ( errorCount > 0 ) ) in runTestRequest()
1106 printf(" Total errors: %d\n", errorCount ); in runTestRequest()
1112 errorCount++; in runTestRequest()
1115 return errorCount; /* total error count */ in runTestRequest()
/external/antlr/antlr-3.4/runtime/C/include/
Dantlr3recognizersharedstate.h106 ANTLR3_UINT32 errorCount; member
/external/icu4c/common/
Dutf_impl.c166 uint8_t errorCount=count; in utf8_nextCharSafeBody() local
174 c=utf8_errorValue[errorCount-count]; in utf8_nextCharSafeBody()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3baserecognizer.c118 recognizer->state->errorCount = 0; in antlr3BaseRecognizerNew()
743 recognizer->state->errorCount++; in reportError()
1312 return recognizer->state->errorCount; in getNumberOfSyntaxErrors()
2132 recognizer->state->errorCount = 0; in reset()
Dantlr3lexer.c415 rec->state->errorCount++; in reportError()
/external/antlr/antlr-3.4/runtime/C/doxygen/
Dbuildrec.dox240 /// if (psr->pParser->rec->errorCount > 0)
242 …F(stderr, "The parser returned %d errors, tree walking aborted.\n", psr->pParser->rec->errorCount);