Home
last modified time | relevance | path

Searched defs:tr (Results 1 – 25 of 156) sorted by relevance

1234567

/external/testng/src/main/java/org/testng/reporters/
DVerboseReporter.java59 public void beforeConfiguration(ITestResult tr) { in beforeConfiguration()
65 public void onConfigurationFailure(ITestResult tr) { in onConfigurationFailure()
71 public void onConfigurationSkip(ITestResult tr) { in onConfigurationSkip()
77 public void onConfigurationSuccess(ITestResult tr) { in onConfigurationSuccess()
83 public void onTestStart(ITestResult tr) { in onTestStart()
88 public void onTestFailure(ITestResult tr) { in onTestFailure()
94 public void onTestFailedButWithinSuccessPercentage(ITestResult tr) { in onTestFailedButWithinSuccessPercentage()
100 public void onTestSkipped(ITestResult tr) { in onTestSkipped()
106 public void onTestSuccess(ITestResult tr) { in onTestSuccess()
DTextReporter.java51 ITestResult tr = (ITestResult) o; in logResults() local
70 ITestResult tr = (ITestResult) o; in logResults() local
81 ITestResult tr = (ITestResult) o; in logResults() local
86 ITestResult tr = (ITestResult) o; in logResults() local
99 ITestResult tr = (ITestResult) o; in logResults() local
124 private void logResult(String status, ITestResult tr, String stackTrace) { in logResult()
DDotTestListener.java10 public void onTestFailure(ITestResult tr) { in onTestFailure()
15 public void onTestSkipped(ITestResult tr) { in onTestSkipped()
20 public void onTestSuccess(ITestResult tr) { in onTestSuccess()
DJUnitXMLReporter.java65 public void beforeConfiguration(ITestResult tr) { in beforeConfiguration()
72 public void onTestSuccess(ITestResult tr) { in onTestSuccess()
78 public void onTestFailedButWithinSuccessPercentage(ITestResult tr) { in onTestFailedButWithinSuccessPercentage()
87 public void onTestFailure(ITestResult tr) { in onTestFailure()
96 public void onTestSkipped(ITestResult tr) { in onTestSkipped()
203 private void createElement(XMLStringBuffer doc, ITestResult tr) { in createElement()
228 private void createFailureElement(XMLStringBuffer doc, ITestResult tr) { in createFailureElement()
246 private void createSkipElement(XMLStringBuffer doc, ITestResult tr) { in createSkipElement()
DJUnitReportReporter.java50 befores.put(tr.getInstance(), tr); in generateReport() local
53 afters.put(tr.getInstance(), tr); in generateReport() local
190 ITestResult tr) in getNextConfiguration()
213 protected String getTestName(ITestResult tr) { in getTestName()
226 private Throwable getThrowable(ITestResult tr, in getThrowable()
/external/testng/src/main/java/org/testng/internal/
DITestResultNotifier.java27 void addPassedTest(ITestNGMethod tm, ITestResult tr); in addPassedTest()
29 void addSkippedTest(ITestNGMethod tm, ITestResult tr); in addSkippedTest()
31 void addFailedTest(ITestNGMethod tm, ITestResult tr); in addFailedTest()
33 void addFailedButWithinSuccessPercentageTest(ITestNGMethod tm, ITestResult tr); in addFailedButWithinSuccessPercentageTest()
/external/replicaisland/src/com/replica/replicaisland/
DDebugLog.java40 public static int v(String tag, String msg, Throwable tr) { in v()
56 public static int d(String tag, String msg, Throwable tr) { in d()
72 public static int i(String tag, String msg, Throwable tr) { in i()
88 public static int w(String tag, String msg, Throwable tr) { in w()
96 public static int w(String tag, Throwable tr) { in w()
112 public static int e(String tag, String msg, Throwable tr) { in e()
/external/testng/src/main/java/org/testng/
DTestListenerAdapter.java40 public void onTestSuccess(ITestResult tr) { in onTestSuccess()
46 public void onTestFailure(ITestResult tr) { in onTestFailure()
52 public void onTestSkipped(ITestResult tr) { in onTestSkipped()
58 public void onTestFailedButWithinSuccessPercentage(ITestResult tr) { in onTestFailedButWithinSuccessPercentage()
161 public void beforeConfiguration(ITestResult tr) { in beforeConfiguration()
DIConfigurationListener2.java8 void beforeConfiguration(ITestResult tr); in beforeConfiguration()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
DTable.java102 final HTMLElement tr = table.thead().tr(); in header() local
111 final HTMLElement tr = table.tfoot().tr(); in footer() local
123 final HTMLElement tr = tbody.tr(); in body() local
162 void init(final HTMLElement tr, final List<? extends ITableItem> items, in init()
174 void footer(final HTMLElement tr, final ICoverageNode total, in footer()
182 void body(final HTMLElement tr, final int idx, final ITableItem item, in body()
/external/testng/src/main/java/org/testng/reporters/jq/
DModel.java74 rbc.addResult(tr.getTestClass().getRealClass(), tr); in init() local
85 rbc.addResult(tr.getTestClass().getRealClass(), tr); in init() local
96 rbc.addResult(tr.getTestClass().getRealClass(), tr); in init() local
109 private void updateGroups(ISuite suite, ITestResult tr) { in updateGroups()
130 public String getTag(ITestResult tr) { in getTag()
138 public static String getTestResultName(ITestResult tr) { in getTestResultName()
DResultsByClass.java25 public void addResult(Class<?> c, ITestResult tr) { in addResult()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
DSessionsPage.java109 final HTMLElement tr = table.thead().tr(); in sessionTable() local
116 final HTMLElement tr = tbody.tr(); in sessionTable() local
126 final HTMLElement tr = table.thead().tr(); in executionDataTable() local
133 final HTMLElement tr = tbody.tr(); in executionDataTable() local
/external/testng/src/test/java/test/tmp/
DBListener.java12 public void onTestSuccess(ITestResult tr) { in onTestSuccess()
18 public void onTestFailure(ITestResult tr) { in onTestFailure()
/external/testng/src/test/java/test/listeners/
DSimpleListener.java12 public void onTestSuccess(ITestResult tr) { in onTestSuccess()
18 public void onTestFailure(ITestResult tr) { in onTestFailure()
/external/curl/tests/
Dgetpart.pm31 tr:A-Za-z0-9+/::cd; # remove non-base64 chars label
32 tr:A-Za-z0-9+/: -_:; # convert to uuencoded format label
/external/testng/src/main/java/org/testng/junit/
DJUnitTestRunner.java46 public JUnitTestRunner(ITestResultNotifier tr) { in JUnitTestRunner()
107 org.testng.internal.TestResult tr= recordResults(test, tri); in endTest() local
121 org.testng.internal.TestResult tr= new org.testng.internal.TestResult(tc, in recordResults() local
147 private static void runTestListeners(ITestResult tr, List<ITestListener> listeners) { in runTestListeners()
/external/opencv/cv/src/
Dcvkdtree.cpp84 __treetype* tr = (__treetype*) data; in find_nn() local
200 void cvReleaseFeatureTree(CvFeatureTree* tr) { in cvReleaseFeatureTree()
207 void cvFindFeatures(CvFeatureTree* tr, CvMat* desc, in cvFindFeatures()
242 int cvFindFeaturesBoxed(CvFeatureTree* tr, in cvFindFeaturesBoxed()
/external/deqp/android/package/src/com/drawelements/deqp/testercore/
DLog.java48 public static void w (String tag, String msg, Throwable tr) { in w()
58 public static void e (String tag, String msg, Throwable tr) { in e()
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCDatabaseMetaData.java555 SQLite.TableResult tr = new SQLite.TableResult(); in getSchemas() local
565 SQLite.TableResult tr = new SQLite.TableResult(); in getCatalogs() local
575 SQLite.TableResult tr = new SQLite.TableResult(); in getTableTypes() local
631 TableResultX tr = new TableResultX(); in getColumns() local
698 TableResultX tr = new TableResultX(); in getColumnPrivileges() local
718 TableResultX tr = new TableResultX(); in getTablePrivileges() local
761 TableResultX tr = new TableResultX(); in getBestRowIdentifier() local
852 TableResultX tr = new TableResultX(); in getVersionColumns() local
885 TableResultX tr = new TableResultX(); in getPrimaryKeys() local
1054 TableResultX tr = new TableResultX(); in getImportedKeys() local
[all …]
DTableResultX.java25 public TableResultX(SQLite.TableResult tr) { in TableResultX()
/external/autotest/frontend/client/src/autotest/common/table/
DFragmentedTable.java85 Element tr = DOM.getParent(td); in getCellPosition() local
105 Element tr = DOM.getParent(td); in getEventTargetCell() local
/external/testng/src/test/java/test/
DBaseTest.java505 public void onTestSuccess(ITestResult tr) { in onTestSuccess()
510 public void onTestFailure(ITestResult tr) { in onTestFailure()
520 public void onTestSkipped(ITestResult tr) { in onTestSkipped()
525 public void onConfigurationSuccess(ITestResult tr) { in onConfigurationSuccess()
530 public void onConfigurationFailure(ITestResult tr) { in onConfigurationFailure()
535 public void onConfigurationSkip(ITestResult tr) { in onConfigurationSkip()
/external/valgrind/none/tests/s390x/
Dtr.c10 void tr(uint8_t *codepage, uint8_t *addr, uint64_t len) in tr() function
/external/testng/src/test/java/test/invokedmethodlistener/
DSample2.java24 public void afterInvocation(IInvokedMethod m, ITestResult tr) in afterInvocation()

1234567