Home
last modified time | relevance | path

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

12345678910>>...12

/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/libchrome/base/android/java/src/org/chromium/base/
DLog.java110 Throwable tr = getThrowableToLog(args); in verbose() local
112 android.util.Log.v(normalizeTag(tag), message, tr); in verbose() local
195 Throwable tr = getThrowableToLog(args); in debug() local
197 android.util.Log.d(normalizeTag(tag), message, tr); in debug() local
275 Throwable tr = getThrowableToLog(args); in i() local
277 android.util.Log.i(normalizeTag(tag), message, tr); in i() local
296 Throwable tr = getThrowableToLog(args); in w() local
298 android.util.Log.w(normalizeTag(tag), message, tr); in w() local
317 Throwable tr = getThrowableToLog(args); in e() local
319 android.util.Log.e(normalizeTag(tag), message, tr); in e() local
[all …]
/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()
/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()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
DSessionsPage.java115 final HTMLElement tr = table.thead().tr(); in sessionTable() local
122 final HTMLElement tr = tbody.tr(); in sessionTable() local
132 final HTMLElement tr = table.thead().tr(); in executionDataTable() local
141 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/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_info.cc156 inline time_zone::civil_lookup MakeSkipped(const Transition& tr, in MakeSkipped()
166 inline time_zone::civil_lookup MakeRepeated(const Transition& tr, in MakeRepeated()
211 Transition& tr(*transitions_.emplace(transitions_.end())); in ResetToBuiltinUTC() local
327 Transition& tr(*transitions_.emplace(transitions_.end())); in ExtendTransitions() local
364 Transition* tr = &transitions_[hdr.timecnt]; // next trans to fill in ExtendTransitions() local
533 Transition& tr(*transitions_.emplace(transitions_.begin())); in Load() local
546 Transition& tr(transitions_[i]); in Load() local
806 const Transition* tr = std::upper_bound(begin, begin + timecnt, target, in BreakTime() local
818 const Transition* tr = nullptr; in MakeTime() local
906 const Transition* tr = in NextTransition() local
[all …]
/external/webrtc/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_info.cc156 inline time_zone::civil_lookup MakeSkipped(const Transition& tr, in MakeSkipped()
166 inline time_zone::civil_lookup MakeRepeated(const Transition& tr, in MakeRepeated()
211 Transition& tr(*transitions_.emplace(transitions_.end())); in ResetToBuiltinUTC() local
327 Transition& tr(*transitions_.emplace(transitions_.end())); in ExtendTransitions() local
364 Transition* tr = &transitions_[hdr.timecnt]; // next trans to fill in ExtendTransitions() local
533 Transition& tr(*transitions_.emplace(transitions_.begin())); in Load() local
546 Transition& tr(transitions_[i]); in Load() local
806 const Transition* tr = std::upper_bound(begin, begin + timecnt, target, in BreakTime() local
818 const Transition* tr = nullptr; in MakeTime() local
906 const Transition* tr = in NextTransition() local
[all …]
/external/crosvm/sys_util/src/
Dstruct_util.rs84 let mut tr: TestRead = Default::default(); in struct_basic_read() localVariable
107 let mut tr: TestRead = Default::default(); in struct_read_past_end() localVariable
146 let tr: Vec<TestRead> = unsafe { read_struct_slice(&mut Cursor::new(source), 3).unwrap() }; in struct_slice_read() localVariable
/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/libtextclassifier/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_info.cc176 inline time_zone::civil_lookup MakeSkipped(const Transition& tr, in MakeSkipped()
186 inline time_zone::civil_lookup MakeRepeated(const Transition& tr, in MakeRepeated()
230 Transition& tr(*transitions_.emplace(transitions_.end())); in ResetToBuiltinUTC() local
529 Transition& tr(*transitions_.emplace(transitions_.begin())); in Load() local
544 Transition& tr(*transitions_.emplace(transitions_.end())); in Load() local
553 Transition& tr(transitions_[i]); in Load() local
813 const Transition* tr = std::upper_bound(begin, begin + timecnt, target, in BreakTime() local
825 const Transition* tr = nullptr; in MakeTime() local
913 const Transition* tr = in NextTransition() local
948 const Transition* tr = in PrevTransition() local
/external/angle/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_info.cc176 inline time_zone::civil_lookup MakeSkipped(const Transition& tr, in MakeSkipped()
186 inline time_zone::civil_lookup MakeRepeated(const Transition& tr, in MakeRepeated()
230 Transition& tr(*transitions_.emplace(transitions_.end())); in ResetToBuiltinUTC() local
529 Transition& tr(*transitions_.emplace(transitions_.begin())); in Load() local
544 Transition& tr(*transitions_.emplace(transitions_.end())); in Load() local
553 Transition& tr(transitions_[i]); in Load() local
813 const Transition* tr = std::upper_bound(begin, begin + timecnt, target, in BreakTime() local
825 const Transition* tr = nullptr; in MakeTime() local
913 const Transition* tr = in NextTransition() local
948 const Transition* tr = in PrevTransition() local
/external/openscreen/third_party/abseil/src/absl/time/internal/cctz/src/
Dtime_zone_info.cc176 inline time_zone::civil_lookup MakeSkipped(const Transition& tr, in MakeSkipped()
186 inline time_zone::civil_lookup MakeRepeated(const Transition& tr, in MakeRepeated()
230 Transition& tr(*transitions_.emplace(transitions_.end())); in ResetToBuiltinUTC() local
529 Transition& tr(*transitions_.emplace(transitions_.begin())); in Load() local
544 Transition& tr(*transitions_.emplace(transitions_.end())); in Load() local
553 Transition& tr(transitions_[i]); in Load() local
813 const Transition* tr = std::upper_bound(begin, begin + timecnt, target, in BreakTime() local
825 const Transition* tr = nullptr; in MakeTime() local
913 const Transition* tr = in NextTransition() local
948 const Transition* tr = in PrevTransition() local
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_info.cc176 inline time_zone::civil_lookup MakeSkipped(const Transition& tr, in MakeSkipped()
186 inline time_zone::civil_lookup MakeRepeated(const Transition& tr, in MakeRepeated()
230 Transition& tr(*transitions_.emplace(transitions_.end())); in ResetToBuiltinUTC() local
529 Transition& tr(*transitions_.emplace(transitions_.begin())); in Load() local
544 Transition& tr(*transitions_.emplace(transitions_.end())); in Load() local
553 Transition& tr(transitions_[i]); in Load() local
813 const Transition* tr = std::upper_bound(begin, begin + timecnt, target, in BreakTime() local
825 const Transition* tr = nullptr; in MakeTime() local
913 const Transition* tr = in NextTransition() local
948 const Transition* tr = in PrevTransition() local
/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/libtextclassifier/java/src/com/android/textclassifier/common/base/
DTcLog.java58 public static void e(String tag, String msg, Throwable tr) { in e()
59 Log.e(getTag(tag), msg, tr); in e() local
/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 …]

12345678910>>...12