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

1 2 3 4 5 6 7 8 91011>>

  /external/iproute2/ip/
rtpr 3 exec tr "[\\\\]" "[
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/
gen-header.sh 9 done < "$i" |tr '[a-z]' '[A-Z]'|tr ' ' '_'
10 echo $'\t'"SM4_${n}_COUNT"|tr '[a-z]' '[A-Z]'
  /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/pdfium/xfa/fde/
cfde_txtedttextset.cpp 61 FX_TXTRUN tr; local
62 tr.pAccess = m_pPage;
63 tr.pIdentity = &piece;
64 tr.iLength = nLength;
65 tr.pFont = pTextParams->pFont;
66 tr.fFontSize = pTextParams->fFontSize;
67 tr.dwStyles = dwLayoutStyle;
68 tr.iCharRotation = pTextParams->nCharRotation;
69 tr.dwCharStyles = piece.dwCharStyles;
70 tr.pRect = &piece.rtPiece
84 FX_TXTRUN tr; local
    [all...]
  /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/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...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
stack.go 12 tr []TokenReader
15 // Push adds tr to the top (end) of the input stack. (Popping happens automatically.)
16 func (s *Stack) Push(tr TokenReader) {
17 s.tr = append(s.tr, tr)
21 tos := s.tr[len(s.tr)-1]
23 for tok == scanner.EOF && len(s.tr) > 1 {
26 s.tr = s.tr[:len(s.tr)-1
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
stack.go 12 tr []TokenReader
15 // Push adds tr to the top (end) of the input stack. (Popping happens automatically.)
16 func (s *Stack) Push(tr TokenReader) {
17 s.tr = append(s.tr, tr)
21 tos := s.tr[len(s.tr)-1]
23 for tok == scanner.EOF && len(s.tr) > 1 {
26 s.tr = s.tr[:len(s.tr)-1
    [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...]
  /external/regex-re2/doc/
mksyntaxwiki 15 ,s!(^[^ ]+) (.*)\n!<tr><td>\1</td><td>\2</td></tr>\n!g
17 ,s!^$!<tr><td></td></tr>!g
18 ,x v/<tr>/ s!.*!<tr><td colspan="2">&</td></tr>!
27 <tr><td colspan="2">This page lists the regular expression syntax accepted by RE2.</td></tr>
28 <tr><td colspan="2">It also lists syntax accepted by PCRE, PERL, and VIM.</td></tr
    [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 466 milliseconds

1 2 3 4 5 6 7 8 91011>>