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

1 2

  /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();
  /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();
  /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);
  /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();
  /dalvik/libcore/security/src/test/java/tests/api/java/security/
AccessControlContextTest.java 92 Thread th = new Thread(new Runnable() { local
103 th.start();
105 th.join();
  /dalvik/libcore/security/src/main/java/java/security/cert/
CertStore.java 114 Throwable th = e.getCause(); local
115 if (th == null) {
118 throw new InvalidAlgorithmParameterException(e.getMessage(), th); local
198 Throwable th = e.getCause(); local
199 if (th == null) {
202 throw new InvalidAlgorithmParameterException(e.getMessage(), th); local
  /external/openssl/crypto/bn/
bn_asm.c 234 BN_ULONG dh,dl,q,ret=0,th,tl,t; local
260 th=q*dh;
264 t=h-th;
271 th-=dh;
276 th+=t;
278 if (l < tl) th++;
280 if (h < th)
285 h-=th;
  /frameworks/base/awt/java/awt/
EventQueue.java 141 Thread th = Thread.currentThread(); local
142 if (th instanceof EventDispatchThread) {
143 return ((EventDispatchThread)th).toolkit.getSystemEventQueueImpl();
  /frameworks/base/libs/surfaceflinger/
LayerBlur.cpp 192 GLuint th = 1 << (31 - clz(h)); local
194 if (th < GLuint(h)) th <<= 1;
195 glTexImage2D(GL_TEXTURE_2D, 0, mReadFormat, tw, th, 0,
200 mHeightScale =-1.0f / th;
201 mYOffset = th-h;
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
TransformerFactoryImpl.java 704 TransformerHandler th = local
707 return th;
  /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...]
  /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);
sys_win.c 404 HANDLE th; local
456 th = GetClipboardData(CF_TEXT);
457 if (th) {
458 clipText = GlobalLock(th);
460 textCopied = malloc(GlobalSize(th)+1);
475 GlobalUnlock(th);
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 919 Thread th = new Thread("test"); local
921 th.join();
926 th.start();
1037 Thread th = new Thread("test"); local
1043 th.join(200);
1049 th.start();
1113 Thread th = new Thread("test"); local
1956 Thread th = new Thread() { local
    [all...]
  /external/tcpdump/
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...]
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.cpp 393 float th = dest.height(); local
402 if (th == -1)
403 th = image->height();
409 image->draw(this, FloatRect(dest.location(), FloatSize(tw, th)), FloatRect(src.location(), FloatSize(tsw, tsh)), styleColorSpace, op);
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 162 int th = 1 << (31 - __builtin_clz(h)); local
164 if (th < h) th <<= 1;
168 if (tw != w || th != h) {
169 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tw, th, 0, GL_RGBA,
174 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tw, th, 0, GL_RGBA,
180 if (tw != w || th != h) {
181 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, tw, th, 0, GL_RGB,
186 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, tw, th, 0, GL_RGB,
  /hardware/qcom/gps/loc_api/libloc_api/
loc_eng.cpp 1328 pthread_t th; local
    [all...]
  /bionic/libc/kernel/common/linux/
skbuff.h 114 struct tcphdr *th; member in union:sk_buff::__anon373
  /external/webkit/WebCore/rendering/
RenderTable.cpp 388 int th = 0; local
391 th = h.value() - (bpTop + bpBottom);
393 th = calcPercentageHeight(h);
394 th = max(0, th);
399 toRenderTableSection(child)->layoutRows(child == m_firstBody ? max(0, th - calculatedHeight) : 0);
402 if (!m_firstBody && th > calculatedHeight && !style()->htmlHacks()) {
405 setHeight(height() + th);
    [all...]
  /frameworks/base/opengl/libagl/
texture.cpp 827 const GLuint th = textureObject->surface.height; local
828 if ((uint32_t(s0+x+w) > tw) || (uint32_t(t0+y+h) > th)) {
    [all...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
skbuff.h 114 struct tcphdr *th; member in union:sk_buff::__anon9310
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
skbuff.h 114 struct tcphdr *th; member in union:sk_buff::__anon9664

Completed in 467 milliseconds

1 2