Searched refs:th (Results 1 - 22 of 22) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLaunchpadTabActivity.java36 TabHost th = getTabHost();
37 TabHost.TabSpec ts = th.newTabSpec("1");
40 th.addTab(ts);
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyHistogram.java96 public TelephonyHistogram(TelephonyHistogram th) { argument
97 mCategory = th.getCategory();
98 mId = th.getId();
99 mMinTimeMs = th.getMinTime();
100 mMaxTimeMs = th.getMaxTime();
101 mAverageTimeMs = th.getAverageTime();
102 mSampleCount = th.getSampleCount();
103 mInitialTimings = th.getInitialTimings();
104 mBucketCount = th.getBucketCount();
105 mBucketEndPoints = th
[all...]
/frameworks/base/core/java/android/content/
H A DAbstractThreadedSyncAdapter.java231 } catch (RuntimeException | Error th) {
233 Log.d(TAG, "startSync() caught exception", th);
235 throw th;
271 } catch (RuntimeException | Error th) {
273 Log.d(TAG, "cancelSync() caught exception", th);
275 throw th;
351 } catch (RuntimeException | Error th) {
353 Log.d(TAG, "caught exception", th);
355 throw th;
/frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
H A Daccessorychat.c90 pthread_t th; local
139 pthread_create(&th, NULL, read_thread, (void *)(uintptr_t)ep1->bEndpointAddress);
140 pthread_create(&th, NULL, write_thread, (void *)(uintptr_t)ep2->bEndpointAddress);
142 pthread_create(&th, NULL, read_thread, (void *)(uintptr_t)ep2->bEndpointAddress);
143 pthread_create(&th, NULL, write_thread, (void *)(uintptr_t)ep1->bEndpointAddress);
/frameworks/base/libs/usb/tests/accessorytest/
H A Dhid.c141 pthread_t th; local
142 pthread_create(&th, NULL, hid_thread, (void *)(uintptr_t)fd);
200 pthread_t th; local
201 pthread_create(&th, NULL, inotify_thread, NULL);
H A Dusb.c114 pthread_t th; local
150 pthread_create(&th, NULL, read_thread, NULL);
151 pthread_create(&th, NULL, write_thread, NULL);
/frameworks/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DSystem_Delegate.java41 public static void log(String message, Throwable th) { argument
/frameworks/layoutlib/bridge/src/android/view/
H A DView_Delegate.java92 } catch (Throwable th) {
93 Bridge.getLog().error(LayoutLog.TAG_BROKEN, "View layout failed", th, null);
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A DImageProcessingActivity2.java724 int th = mBitmapHeight;
726 if (tw > mScreenWidth || th > mScreenHeight) {
728 float s2 = (float)th / (float)mScreenHeight;
732 th /= s1;
735 th /= s2;
739 android.util.Log.v("rs", "TV sizes " + tw + ", " + th);
742 mDisplayViewIO.mHeight = th;
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A DImageProcessingActivityJB.java680 int th = mBitmapHeight;
682 if (tw > mScreenWidth || th > mScreenHeight) {
684 float s2 = (float)th / (float)mScreenHeight;
688 th /= s1;
691 th /= s2;
695 android.util.Log.v("rs", "TV sizes " + tw + ", " + th);
698 mDisplayView.mHeight = th;
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DSparseMappingTable.java654 private static void logOrThrow(String message, Throwable th) { argument
655 Slog.e(TAG, message, th);
657 throw new RuntimeException(message, th);
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp212 int th = 1 << (31 - __builtin_clz(h)); local
214 if (th < h) th <<= 1;
218 if (!mUseNpotTextures && (tw != w || th != h)) {
219 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tw, th, 0, GL_RGBA,
230 if (!mUseNpotTextures && (tw != w || th != h)) {
231 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, tw, th, 0, GL_RGB,
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowStateAnimator.java948 float th = tw;
953 th = (surfaceContentHeight - mTmpStackBounds.height())
963 posY -= (int) (th * mExtraVScale * mTmpSourceBounds.top);
973 (int)((insets.top + mTmpSourceBounds.top) * th),
977 - (th * (surfaceHeight - mTmpSourceBounds.bottom))));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarIconView.java467 final int th = r.bottom - r.top;
474 int dh = r.top + th + r.bottom;
478 mNumberY = h-r.bottom-((dh-r.top-th-r.bottom)/2);
/frameworks/base/core/java/android/app/
H A DActivityManager.java1923 final int th = thumbnail.getHeight();
1924 if (tw != size.x || th != size.y) {
1930 if (tw * size.x > size.y * th) {
1931 scale = (float) size.x / (float) th;
1935 dy = (size.x - th * scale) * 0.5f;
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DBaseShortcutManagerTest.java478 void wtf(String message, Throwable th) { argument
480 fail(message + " exception: " + th + "\n" + Log.getStackTraceString(th));
/frameworks/native/opengl/libagl/
H A Dtexture.cpp797 const GLuint th = textureObject->surface.height; local
798 if ((uint32_t(s0+x+w) > tw) || (uint32_t(t0+y+h) > th)) {
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutService.java4188 } catch (Throwable th) {
4189 throw new CommandException(th.getMessage() + "\n" + Log.getStackTraceString(th));
/frameworks/base/media/java/android/media/
H A DMediaScanner.java830 } catch (Throwable th) {
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java567 } catch (Throwable th) {
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 1030 milliseconds