Searched refs:tv (Results 51 - 75 of 116) sorted by relevance

12345

/frameworks/base/services/core/java/com/android/server/hdmi/
H A DDeviceSelectAction.java173 tv().getActiveSource().invalidate();
174 tv().setActivePath(mTarget.getPhysicalAddress());
189 if (tv().isPowerStandbyOrTransient()) {
H A DVolumeControlAction.java148 tv().setAudioStatus(mute, volume);
163 AudioManager audioManager = tv().getService().getAudioManager();
191 tv().setAudioStatus(mLastAvrMute, mLastAvrVolume);
H A DPowerStatusMonitorAction.java115 List<HdmiDeviceInfo> deviceInfos = tv().getDeviceInfoList(false);
141 tv().updateDevicePowerStatus(logicalAddress, newStatus);
H A DSetArcTransmissionStateAction.java94 boolean wasEnabled = tv().setArcStatus(enabled);
H A DHdmiCecStandbyModeHandler.java95 public HdmiCecStandbyModeHandler(HdmiControlService service, HdmiCecLocalDeviceTv tv) { argument
97 mTv = tv;
H A DDeviceDiscoveryAction.java261 tv().updateCecSwitchInfo(current.mLogicalAddress, current.mDeviceType,
269 return tv().getPortId(physicalAddress);
333 tv().processAllDelayedMessages();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DAdapterHelper.java59 TextView tv = new TextView(context);
60 tv.setText("Unable to find layout: " + dataBindingItem.getViewReference().getName());
61 view = tv;
87 TextView tv = (TextView) view;
93 resolvedRef, ViewAttribute.TEXT, tv.getText().toString());
100 tv.setText((String) value);
/frameworks/base/core/java/com/android/internal/widget/
H A DEditableInputConnection.java51 TextView tv = mTextView;
52 if (tv != null) {
53 return tv.getEditableText();
H A DAbsActionBarView.java72 final TypedValue tv = new TypedValue();
73 if (context.getTheme().resolveAttribute(R.attr.actionBarPopupTheme, tv, true)
74 && tv.resourceId != 0) {
75 mPopupContext = new ContextThemeWrapper(context, tv.resourceId);
/frameworks/base/core/tests/coretests/src/android/util/
H A DScrollViewScenario.java102 final TextView tv = new TextView(context);
103 tv.setText(text);
104 return tv;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskView.java42 public void onTaskViewAppIconClicked(TaskView tv); argument
43 public void onTaskViewAppInfoClicked(TaskView tv); argument
44 public void onTaskViewClicked(TaskView tv, Task task, boolean lockToTask); argument
45 public void onTaskViewDismissed(TaskView tv); argument
46 public void onTaskViewClipStateChanged(TaskView tv); argument
47 public void onTaskViewFocusChanged(TaskView tv, boolean focused); argument
476 final TaskView tv = this;
481 mCb.onTaskViewDismissed(tv);
705 final TaskView tv = this;
714 mCb.onTaskViewAppIconClicked(tv);
[all...]
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputHal.java17 package com.android.server.tv;
19 import android.media.tv.TvInputHardwareInfo;
20 import android.media.tv.TvStreamConfig;
H A DPersistentDataStore.java17 package com.android.server.tv;
21 import android.media.tv.TvContentRating;
22 import android.media.tv.TvInputManager;
55 * &lt;tv-input-manager-state>
60 * &lt;/tv-input-manager-state>
93 mAtomicFile = new AtomicFile(new File(userDir, "tv-input-manager-state.xml"));
173 Slog.w(TAG, "Failed to load tv input manager persistent store data.", ex);
216 Slog.w(TAG, "Failed to save tv input manager persistent store data.", ex);
233 private static final String TAG_TV_INPUT_MANAGER_STATE = "tv-input-manager-state";
/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java837 TypedValue tv = sa.peekValue(
839 if (tv != null && tv.type == TypedValue.TYPE_STRING) {
840 if (tv.resourceId != 0) {
841 header.titleRes = tv.resourceId;
843 header.title = tv.string;
846 tv = sa.peekValue(
848 if (tv != null && tv.type == TypedValue.TYPE_STRING) {
849 if (tv
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedRotateDrawable.java317 final TypedValue tv = a.peekValue(R.styleable.AnimatedRotateDrawable_pivotX);
318 state.mPivotXRel = tv.type == TypedValue.TYPE_FRACTION;
319 state.mPivotX = state.mPivotXRel ? tv.getFraction(1.0f, 1.0f) : tv.getFloat();
323 final TypedValue tv = a.peekValue(R.styleable.AnimatedRotateDrawable_pivotY);
324 state.mPivotYRel = tv.type == TypedValue.TYPE_FRACTION;
325 state.mPivotY = state.mPivotYRel ? tv.getFraction(1.0f, 1.0f) : tv.getFloat();
H A DRotateDrawable.java487 final TypedValue tv = a.peekValue(R.styleable.RotateDrawable_pivotX);
488 state.mPivotXRel = tv.type == TypedValue.TYPE_FRACTION;
489 state.mPivotX = state.mPivotXRel ? tv.getFraction(1.0f, 1.0f) : tv.getFloat();
493 final TypedValue tv = a.peekValue(R.styleable.RotateDrawable_pivotY);
494 state.mPivotYRel = tv.type == TypedValue.TYPE_FRACTION;
495 state.mPivotY = state.mPivotYRel ? tv.getFraction(1.0f, 1.0f) : tv.getFloat();
/frameworks/base/graphics/java/android/graphics/
H A DColor.java270 final float tv = b * (1.0f - s * (1.0f - f));
275 green = tv;
286 blue = tv;
294 red = tv;
/frameworks/base/media/java/android/media/tv/
H A DTvContentRatingSystemInfo.java17 package android.media.tv;
/frameworks/support/v4/java/android/support/v4/app/
H A DListFragment.java116 TextView tv = new TextView(getActivity());
117 tv.setId(INTERNAL_EMPTY_ID);
118 tv.setGravity(Gravity.CENTER);
119 lframe.addView(tv, new FrameLayout.LayoutParams(
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAbsActionBarView.java67 final TypedValue tv = new TypedValue();
68 if (context.getTheme().resolveAttribute(R.attr.actionBarPopupTheme, tv, true)
69 && tv.resourceId != 0) {
70 mPopupContext = new ContextThemeWrapper(context, tv.resourceId);
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskStack.java269 TypedValue tv = new TypedValue();
271 com.android.internal.R.fraction.config_dimBehindFadeDuration, tv, true);
272 if (tv.type == TypedValue.TYPE_FRACTION) {
273 duration = (long)tv.getFraction(duration, duration);
274 } else if (tv.type >= TypedValue.TYPE_FIRST_INT && tv.type <= TypedValue.TYPE_LAST_INT) {
275 duration = tv.data;
/frameworks/base/core/java/android/widget/
H A DToast.java263 TextView tv = (TextView)v.findViewById(com.android.internal.R.id.message);
264 tv.setText(text);
304 TextView tv = (TextView) mNextView.findViewById(com.android.internal.R.id.message);
305 if (tv == null) {
308 tv.setText(s);
H A DTabHost.java609 final TextView tv = (TextView) tabIndicator.findViewById(R.id.title);
610 tv.setText(mLabel);
615 tv.setTextColor(context.getResources().getColorStateList(R.color.tab_indicator_text_v4));
643 final TextView tv = (TextView) tabIndicator.findViewById(R.id.title);
650 tv.setText(mLabel);
660 tv.setTextColor(context.getResources().getColorStateList(R.color.tab_indicator_text_v4));
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewLayerInvalidationActivity.java84 for (TextView tv : textViews) {
85 tv.setTextColor(currentColor);
/frameworks/base/tests/MusicBrowserDemo/src/com/example/android/musicbrowserdemo/
H A DAppListFragment.java135 final TextView tv = (TextView)convertView;
137 tv.setText(item.label);

Completed in 2440 milliseconds

12345