HomeSort by relevance Sort by last modified time
    Searched refs:th (Results 26 - 50 of 449) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/tests/003-omnibus-opcodes/src/
Throw.java 117 Throw th = new Throw(); local
119 th.one();
120 th.twoA();
121 th.twoN();
122 th.rethrow();
  /external/compiler-rt/lib/tsan/lit_tests/
java_lock_move.cc 28 pthread_t th; local
29 pthread_create(&th, 0, Thread, 0);
34 pthread_join(th, 0);
java_lock_rec.cc 37 pthread_t th; local
38 pthread_create(&th, 0, Thread, 0);
47 pthread_join(th, 0);
java_lock_rec_race.cc 35 pthread_t th; local
36 pthread_create(&th, 0, Thread, 0);
41 pthread_join(th, 0);
  /external/linux-tools-perf/util/
thread.c 68 struct thread *th; local
80 th = rb_entry(parent, struct thread, rb_node);
82 if (th->pid == pid) {
83 self->last_match = th;
84 return th;
87 if (pid < th->pid)
93 th = thread__new(pid);
94 if (th != NULL) {
95 rb_link_node(&th->rb_node, parent, p);
96 rb_insert_color(&th->rb_node, &self->threads)
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CRLExceptionTest.java 44 Throwable th = null; local
47 new CRLException(new Throwable()), new CRLException(th),
CertPathBuilderExceptionTest.java 44 Throwable th = null; local
47 new CertPathBuilderException(new Throwable()), new CertPathBuilderException(th),
CertStoreExceptionTest.java 44 Throwable th = null; local
47 new CertStoreException(new Throwable()), new CertStoreException(th),
CertificateEncodingExceptionTest.java 44 Throwable th = null; local
47 new CertificateEncodingException(new Throwable()), new CertificateEncodingException(th),
CertificateExceptionTest.java 44 Throwable th = null; local
47 new CertificateException(new Throwable()), new CertificateException(th),
CertificateParsingExceptionTest.java 44 Throwable th = null; local
47 new CertificateParsingException(new Throwable()), new CertificateParsingException(th),
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
DigestExceptionTest.java 44 Throwable th = null; local
47 new DigestException(new Throwable()), new DigestException(th),
GeneralSecurityExceptionTest.java 44 Throwable th = null; local
47 new GeneralSecurityException(new Throwable()), new GeneralSecurityException(th),
InvalidAlgorithmParameterExceptionTest.java 44 Throwable th = null; local
47 new InvalidAlgorithmParameterException(new Throwable()), new InvalidAlgorithmParameterException(th),
InvalidKeyExceptionTest.java 44 Throwable th = null; local
47 new InvalidKeyException(new Throwable()), new InvalidKeyException(th),
KeyExceptionTest.java 44 Throwable th = null; local
47 new KeyException(new Throwable()), new KeyException(th),
KeyManagementExceptionTest.java 44 Throwable th = null; local
47 new KeyManagementException(new Throwable()), new KeyManagementException(th),
KeyStoreExceptionTest.java 44 Throwable th = null; local
47 new KeyStoreException(new Throwable()), new KeyStoreException(th),
NoSuchAlgorithmExceptionTest.java 44 Throwable th = null; local
47 new NoSuchAlgorithmException(new Throwable()), new NoSuchAlgorithmException(th),
ProviderExceptionTest.java 44 Throwable th = null; local
47 new ProviderException(new Throwable()), new ProviderException(th),
SignatureExceptionTest.java 44 Throwable th = null; local
47 new SignatureException(new Throwable()), new SignatureException(th),
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/serialization/
InvalidKeySpecExceptionTest.java 44 Throwable th = null; local
47 new InvalidKeySpecException(new Throwable()), new InvalidKeySpecException(th),
  /external/valgrind/main/callgrind/tests/
threads.c 14 static void *th(void *v) function
41 pthread_create(&t[i], NULL, th, &sum[i]);
  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 134 for(int th = 0; th < threadcount; th++)
135 threads[th]->start(QThread::LowPriority);
136 for(int th = 0; th < threadcount; th++)
138 threads[th]->wait();
139 total_iter += threads[th]->total_iter;
182 for(int th = 0; th < threadcount; th++
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-tofte.js 39 var daysSuffix = ["st", "nd", "rd", "th", "th", "th", "th", // 1st - 7th
40 "th", "th", "th", "th", "th", "th", "th", // 8th - 14t
    [all...]

Completed in 147 milliseconds

12 3 4 5 6 7 8 91011>>