Searched defs:st (Results 76 - 80 of 80) sorted by relevance

1234

/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java360 * @param st The panel state to prepare.
365 public final boolean preparePanel(PanelFeatureState st, KeyEvent event) { argument
371 if (st.isPrepared) {
375 if ((mPreparedPanel != null) && (mPreparedPanel != st)) {
383 st.createdPanelView = cb.onCreatePanelView(st.featureId);
386 if (st.createdPanelView == null) {
388 if (st.menu == null || st.refreshMenuContent) {
389 if (st
501 clearMenuViews(PanelFeatureState st) argument
526 openPanel(PanelFeatureState st, KeyEvent event) argument
670 closePanel(PanelFeatureState st, boolean doCallback) argument
914 performPanelShortcut(PanelFeatureState st, int keyCode, KeyEvent event, int flags) argument
1038 initializePanelMenu(final PanelFeatureState st) argument
1070 initializePanelDecor(PanelFeatureState st) argument
1116 initializePanelContent(PanelFeatureState st) argument
3055 updateDrawable(int featureId, DrawableFeatureState st, boolean fromResume) argument
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DRenderScript.java297 native void rsnAllocationGetSurfaceTextureID2(int con, int alloc, SurfaceTexture st); argument
298 synchronized void nAllocationGetSurfaceTextureID2(int alloc, SurfaceTexture st) { argument
300 rsnAllocationGetSurfaceTextureID2(mContext, alloc, st);
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp245 sp<SurfaceTexture> st; local
249 st = SurfaceTexture_getSurfaceTexture(_env, sur);
250 window = new SurfaceTextureClient(st);
484 sp<SurfaceTexture> st = SurfaceTexture_getSurfaceTexture(_env, jst); local
486 rsAllocationGetSurfaceTextureID2(con, (RsAllocation)a, st.get(), sizeof(SurfaceTexture *));
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp1614 const stream_type_t *st = &mStreamTypes[i]; local
1618 result.appendFormat("%d:%.2g", i, 20.0 * log10(st->volume));
1619 if (st->mute) {
2675 ScopedTrace st(ATRACE_TAG, "underrun");
/frameworks/base/core/java/android/widget/
H A DTextView.java8812 public void onSpanChanged(Spannable buf, Object what, int s, int e, int st, int en) { argument
8814 + " st=" + st + " en=" + en + " what=" + what + ": " + buf);
8815 TextView.this.spanChange(buf, what, s, st, e, en);

Completed in 88 milliseconds

1234