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

1 2 3 4 5 6 7 8 91011>>

  /external/iproute2/ip/
rtpr 3 exec tr "[\\\\]" "[
  /external/cldr/tools/scripts/web/
dtdToVersion.sh 2 grep 'ATTLIST version cldrVersion' | head -1 | cut -d' ' -f6 | tr -dc '[0-9].'
  /dalvik/dx/tests/088-ssa-combine-blocks/
Blort.java 33 } catch (Throwable tr) {
  /external/testng/src/main/java/org/testng/
IConfigurationListener2.java 8 void beforeConfiguration(ITestResult tr);
  /external/testng/src/test/java/test/listeners/
SimpleListener.java 12 public void onTestSuccess(ITestResult tr) {
14 super.onTestSuccess(tr);
18 public void onTestFailure(ITestResult tr) {
20 super.onTestSuccess(tr);
  /external/testng/src/test/java/test/tmp/
BListener.java 12 public void onTestSuccess(ITestResult tr) {
14 super.onTestSuccess(tr);
18 public void onTestFailure(ITestResult tr) {
20 super.onTestFailure(tr);
  /external/jemalloc/include/jemalloc/internal/
public_namespace.sh 4 n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
public_unnamespace.sh 4 n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
  /external/jemalloc_new/include/jemalloc/internal/
public_namespace.sh 4 n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
public_unnamespace.sh 4 n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
TableResultX.java 25 public TableResultX(SQLite.TableResult tr) {
26 this.column = tr.column;
27 this.rows = tr.rows;
28 this.ncolumns = tr.ncolumns;
29 this.nrows = tr.nrows;
30 this.types = tr.types;
31 this.maxrows = tr.maxrows;
32 sql_type = new int[tr.ncolumns];
36 if (tr.types != null) {
37 for (int i = 0; i < tr.types.length; i++)
    [all...]
  /developers/build/prebuilts/gradle/RecyclerView/kotlinApp/app/src/main/java/com/example/android/common/logger/
Log.kt 48 * @param tr If an exception was thrown, this can be sent along for the logging facilities
51 fun println(priority: Int, tag: String, msg: String?, tr: Throwable? = null) {
53 logNode?.println(priority, tag, msg, tr)
62 * @param tr If an exception was thrown, this can be sent along for the logging facilities
65 fun v(tag: String, msg: String? = null, tr: Throwable? = null) {
66 println(VERBOSE, tag, msg, tr)
75 * @param tr If an exception was thrown, this can be sent along for the logging facilities
78 fun d(tag: String, msg: String? = null, tr: Throwable? = null) {
79 println(DEBUG, tag, msg, tr)
87 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]
  /developers/samples/android/ui/views/RecyclerView/kotlinApp/app/src/main/java/com/example/android/common/logger/
Log.kt 48 * @param tr If an exception was thrown, this can be sent along for the logging facilities
51 fun println(priority: Int, tag: String, msg: String?, tr: Throwable? = null) {
53 logNode?.println(priority, tag, msg, tr)
62 * @param tr If an exception was thrown, this can be sent along for the logging facilities
65 fun v(tag: String, msg: String? = null, tr: Throwable? = null) {
66 println(VERBOSE, tag, msg, tr)
75 * @param tr If an exception was thrown, this can be sent along for the logging facilities
78 fun d(tag: String, msg: String? = null, tr: Throwable? = null) {
79 println(DEBUG, tag, msg, tr)
87 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]
  /external/ImageMagick/MagickWand/tests/
script-token-test.sh 19 dd if=/dev/zero bs=80 count=1 2>/dev/null | tr '\0' 'a'; echo ""
20 dd if=/dev/zero bs=500 count=1 2>/dev/null | tr '\0' 'b'; echo ""
21 dd if=/dev/zero bs=4000 count=1 2>/dev/null | tr '\0' 'c'; echo ""
22 dd if=/dev/zero bs=5000 count=1 2>/dev/null | tr '\0' 'd'; echo ""
23 dd if=/dev/zero bs=10k count=1 2>/dev/null | tr '\0' 'e'; echo ""
24 dd if=/dev/zero bs=13k count=1 2>/dev/null | tr '\0' 'f'; echo ""
25 dd if=/dev/zero bs=8k count=1024 2>/dev/null | tr '\0' 'e'; echo ""
  /external/testng/src/main/java/org/testng/junit/
JUnit4TestRunner.java 34 public JUnit4TestRunner(ITestResultNotifier tr) {
35 m_parentRunner = tr;
119 ITestResult tr = runs.get(failure.getDescription());
120 tr.setStatus(TestResult.SKIP);
121 tr.setEndMillis(Calendar.getInstance().getTimeInMillis());
122 tr.setThrowable(failure.getException());
123 m_parentRunner.addSkippedTest(tr.getMethod(), tr);
125 l.onTestSkipped(tr);
136 ITestResult tr = runs.get(failure.getDescription())
    [all...]
  /developers/build/prebuilts/gradle/ActiveNotifications/Application/src/main/java/com/example/android/common/logger/
Log.java 61 * @param tr If an exception was thrown, this can be sent along for the logging facilities
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
87 * @param tr If an exception was thrown, this can be sent along for the logging facilities
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
110 * @param tr If an exception was thrown, this can be sent along for the logging facilities
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
132 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]
  /developers/build/prebuilts/gradle/ActivityInstrumentation/Application/src/main/java/com/example/android/common/logger/
Log.java 61 * @param tr If an exception was thrown, this can be sent along for the logging facilities
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
87 * @param tr If an exception was thrown, this can be sent along for the logging facilities
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
110 * @param tr If an exception was thrown, this can be sent along for the logging facilities
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
132 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/common/logger/
Log.java 61 * @param tr If an exception was thrown, this can be sent along for the logging facilities
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
87 * @param tr If an exception was thrown, this can be sent along for the logging facilities
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
110 * @param tr If an exception was thrown, this can be sent along for the logging facilities
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
132 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]
  /developers/build/prebuilts/gradle/AdvancedImmersiveMode/Application/src/main/java/com/example/android/common/logger/
Log.java 61 * @param tr If an exception was thrown, this can be sent along for the logging facilities
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
87 * @param tr If an exception was thrown, this can be sent along for the logging facilities
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
110 * @param tr If an exception was thrown, this can be sent along for the logging facilities
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
132 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]
  /developers/build/prebuilts/gradle/AppRestrictionSchema/Application/src/main/java/com/example/android/common/logger/
Log.java 61 * @param tr If an exception was thrown, this can be sent along for the logging facilities
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
87 * @param tr If an exception was thrown, this can be sent along for the logging facilities
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
110 * @param tr If an exception was thrown, this can be sent along for the logging facilities
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
132 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]
  /developers/build/prebuilts/gradle/BasicAccessibility/Application/src/main/java/com/example/android/common/logger/
Log.java 61 * @param tr If an exception was thrown, this can be sent along for the logging facilities
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
87 * @param tr If an exception was thrown, this can be sent along for the logging facilities
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
110 * @param tr If an exception was thrown, this can be sent along for the logging facilities
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
132 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]
  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/Application/src/main/java/com/example/android/common/logger/
Log.java 61 * @param tr If an exception was thrown, this can be sent along for the logging facilities
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
87 * @param tr If an exception was thrown, this can be sent along for the logging facilities
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
110 * @param tr If an exception was thrown, this can be sent along for the logging facilities
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
132 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]
  /developers/build/prebuilts/gradle/BasicContactables/Application/src/main/java/com/example/android/common/logger/
Log.java 61 * @param tr If an exception was thrown, this can be sent along for the logging facilities
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
87 * @param tr If an exception was thrown, this can be sent along for the logging facilities
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
110 * @param tr If an exception was thrown, this can be sent along for the logging facilities
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
132 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]
  /developers/build/prebuilts/gradle/BasicGestureDetect/Application/src/main/java/com/example/android/common/logger/
Log.java 61 * @param tr If an exception was thrown, this can be sent along for the logging facilities
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
87 * @param tr If an exception was thrown, this can be sent along for the logging facilities
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
110 * @param tr If an exception was thrown, this can be sent along for the logging facilities
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
132 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]
  /developers/build/prebuilts/gradle/BasicImmersiveMode/Application/src/main/java/com/example/android/common/logger/
Log.java 61 * @param tr If an exception was thrown, this can be sent along for the logging facilities
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
87 * @param tr If an exception was thrown, this can be sent along for the logging facilities
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
110 * @param tr If an exception was thrown, this can be sent along for the logging facilities
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
132 * @param tr If an exception was thrown, this can be sent along for the logging facilitie
    [all...]

Completed in 796 milliseconds

1 2 3 4 5 6 7 8 91011>>