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

1 2 3 4 5

  /cts/tests/src/android/app/cts/
LaunchpadTabActivity.java 36 final TabHost th = getTabHost(); local
37 final TabHost.TabSpec ts = th.newTabSpec("1");
40 th.addTab(ts);
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LaunchpadTabActivity.java 36 TabHost th = getTabHost(); local
37 TabHost.TabSpec ts = th.newTabSpec("1");
40 th.addTab(ts);
  /external/libvpx/examples/includes/geshi/contrib/
cssgen.php 66 th {
306 <tr><th>Style for the overall code block:</th><td><input type="text" name="overall" value="border: 1px dotted #a0a0a0; font-family: \'Courier New\', Courier, monospace; background-color: #f0f0f0; color: #0000bb;" /></td></tr>
307 <tr><th>Default Styles</th><td><input type="text" name="default-styles" value="font-weight:normal;background:transparent;color:#000; padding-left: 5px;" /></td></tr>
308 <tr><th>Keywords I (if, do, while etc)</th><td><input type="text" name="keywords-1" value="color: #a1a100;" /></td></tr>
309 <tr><th>Keywords II (null, true, false etc)</th><td><input type="text" name="keywords-2" value="color: #000; font-weight: bold;" /></td></tr>
310 <tr><th>Inbuilt Functions (echo, print etc)</th><td><input type="text" name="keywords-3" value="color: #00 (…)
    [all...]
  /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/webkit/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...]
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
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...]
  /libcore/luni/src/main/java/java/security/cert/
CertStore.java 110 Throwable th = e.getCause(); local
111 if (th == null) {
114 throw new InvalidAlgorithmParameterException(e.getMessage(), th); local
191 Throwable th = e.getCause(); local
192 if (th == null) {
195 throw new InvalidAlgorithmParameterException(e.getMessage(), th); local
  /external/tcpdump/
tcp.h 48 #define TH_OFF(th) (((th)->th_offx2 & 0xf0) >> 4)
print-tcp.c 313 register struct tcp_seq_hash *th; local
385 for (th = &tcp_seq_hash[tha.port % TSEQ_HASHSIZE];
386 th->nxt; th = th->nxt)
387 if (memcmp((char *)&tha, (char *)&th->addr,
388 sizeof(th->addr)) == 0)
391 if (!th->nxt || (flags & TH_SYN)) {
393 if (th->nxt == NULL) {
394 th->nxt = (struct tcp_seq_hash *
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/monitorexit/
Test_monitorexit.java 38 Thread th = new Thread(r); local
39 th.start();
40 th.join();
  /cts/tools/vm-tests/src/dot/junit/opcodes/monitor_exit/
Test_monitor_exit.java 36 Thread th = new Thread(r); local
37 th.start();
38 th.join();
  /external/iproute2/misc/
lnstat.c 164 static struct table_hdr th; local
168 th.hdr[i] = malloc(HDR_LINE_LENGTH);
169 memset(th.hdr[i], 0, sizeof(th.hdr[i]));
179 snprintf(th.hdr[0]+ofs, width+2, fmt,
185 snprintf(th.hdr[h]+ofs, width+2, fmt, "");
187 th.num_lines = h+1;
188 snprintf(th.hdr[h]+ofs, width+2, fmt, cname);
195 for (h = 1; h <= th.num_lines; h++) {
197 if (th.hdr[h][i] == '\0'
    [all...]
  /build/tools/droiddoc/templates/
hierarchy.cs 53 <th class="jd-hierarchy-data" colspan="<?cs var:colspan ?>">Class</th>
54 <th class="jd-hierarchy-data">Interfaces</th>
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 311 Thread th = new Thread() { local
345 assertEquals(Thread.State.NEW, th.getState());
346 th.start();
352 assertEquals(Thread.State.RUNNABLE, th.getState());
357 assertEquals(Thread.State.WAITING, th.getState());
362 assertEquals(Thread.State.BLOCKED, th.getState());
372 assertEquals(Thread.State.TIMED_WAITING, th.getState());
373 th.interrupt();
377 th.join(1000);
381 assertEquals(Thread.State.TERMINATED, th.getState())
    [all...]
  /bionic/libthread_db/
libthread_db.c 123 td_thrhandle_t *th)
125 th->pid = ps_getpid(agent->ph);
126 th->tid = lwpid;
220 td_thr_tls_get_addr(const td_thrhandle_t * th,
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 110 final ICell cell = new Cell (m_th ? Tag.TH : Tag.TD);
116 Row (final boolean th)
120 m_th = th;
  /frameworks/base/services/surfaceflinger/
LayerBlur.cpp 194 GLuint th = 1 << (31 - clz(h)); local
196 if (th < GLuint(h)) th <<= 1;
197 glTexImage2D(GL_TEXTURE_2D, 0, mReadFormat, tw, th, 0,
202 mHeightScale =-1.0f / th;
203 mYOffset = th-h;
  /external/quake/quake/src/QW/client/
keys.c 211 HANDLE th; local
318 th = GetClipboardData(CF_TEXT);
319 if (th) {
320 clipText = GlobalLock(th);
322 textCopied = malloc(GlobalSize(th)+1);
335 GlobalUnlock(th);
  /bionic/libthread_db/include/
thread_db.h 143 td_thrhandle_t *th);
156 extern td_err_e td_thr_tls_get_addr(const td_thrhandle_t * th,
  /build/tools/droiddoc/templates-sdk/
sdkpage.cs 85 <th>Platform</th>
86 <th>Package</th>
87 <th>Size</th>
88 <th>MD5 Checksum</th>
175 <th>Platform</th>
    [all...]
  /dalvik/tests/068-classloader/src/
FancyLoader.java 169 } catch (Throwable th) {
170 throw new ClassNotFoundException("defineClass failed", th);
  /development/ndk/platforms/android-9/include/
thread_db.h 143 td_thrhandle_t *th);
156 extern td_err_e td_thr_tls_get_addr(const td_thrhandle_t * th,
  /external/chromium/third_party/icu/source/data/translit/
trnsfiles.mk 22 # | TRANLIST_SOURCE = el.txt th.txt
  /external/icu4c/data/translit/
trnsfiles.mk 22 # | TRANLIST_SOURCE = el.txt th.txt
  /dalvik/tests/064-field-access/src/
Main.java 90 Throwable th = new Throwable(); local
93 th.printStackTrace();
322 Throwable th = new Throwable(); local
325 th.printStackTrace();

Completed in 1051 milliseconds

1 2 3 4 5