/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/imei/ |
D | ImeiInfoDialogControllerTest.java | 102 verify(mDialog, never()).setText(anyInt(), any()); in populateImeiInfo_invalidSlot_shouldSetNothing() 112 verify(mDialog).setText(ID_MEID_NUMBER_VALUE, MEID_NUMBER); in populateImeiInfo_cdmaLteEnabled_shouldSetMeidAndImeiAndMin() 113 verify(mDialog).setText(ID_MIN_NUMBER_VALUE, MIN_NUMBER); in populateImeiInfo_cdmaLteEnabled_shouldSetMeidAndImeiAndMin() 114 verify(mDialog).setText(ID_PRL_VERSION_VALUE, PRL_VERSION); in populateImeiInfo_cdmaLteEnabled_shouldSetMeidAndImeiAndMin() 115 verify(mDialog).setText(eq(ID_IMEI_VALUE), any()); in populateImeiInfo_cdmaLteEnabled_shouldSetMeidAndImeiAndMin() 116 verify(mDialog).setText(eq(ID_IMEI_SV_VALUE), any()); in populateImeiInfo_cdmaLteEnabled_shouldSetMeidAndImeiAndMin() 126 verify(mDialog).setText(ID_MEID_NUMBER_VALUE, MEID_NUMBER); in populateImeiInfo_cdmaLteDisabled_shouldSetMeidAndMinAndRemoveGsmSettings() 127 verify(mDialog).setText(ID_MIN_NUMBER_VALUE, MIN_NUMBER); in populateImeiInfo_cdmaLteDisabled_shouldSetMeidAndMinAndRemoveGsmSettings() 128 verify(mDialog).setText(ID_PRL_VERSION_VALUE, PRL_VERSION); in populateImeiInfo_cdmaLteDisabled_shouldSetMeidAndMinAndRemoveGsmSettings() 139 verify(mDialog).setText(ID_MEID_NUMBER_VALUE, MEID_NUMBER); in populateImeiInfo_cdmaSimDisabled_shouldRemoveImeiInfoAndSetMinPrlToEmpty() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/wifi/ |
D | WifiStatusTest.java | 181 mBSSID.setText(wifiInfo.getBSSID()); 182 mHiddenSSID.setText(String.valueOf(wifiInfo.getHiddenSSID())); 190 mIPAddr.setText(ipBuf); 191 mTxLinkSpeed.setText(String.valueOf(wifiInfo.getTxLinkSpeedMbps())+" Mbps"); 192 mRxLinkSpeed.setText(String.valueOf(wifiInfo.getRxLinkSpeedMbps())+" Mbps"); 193 mMACAddr.setText(wifiInfo.getMacAddress()); 194 mNetworkId.setText(String.valueOf(wifiInfo.getNetworkId())); 195 mRSSI.setText(String.valueOf(wifiInfo.getRssi())); 196 mSSID.setText(wifiInfo.getSSID()); 205 mSupplicantState.setText("FOUR WAY HANDSHAKE"); in setSupplicantStateText() [all …]
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
D | WifiStatusTest.java | 181 mBSSID.setText(wifiInfo.getBSSID()); 182 mHiddenSSID.setText(String.valueOf(wifiInfo.getHiddenSSID())); 190 mIPAddr.setText(ipBuf); 191 mTxLinkSpeed.setText(String.valueOf(wifiInfo.getTxLinkSpeedMbps())+" Mbps"); 192 mRxLinkSpeed.setText(String.valueOf(wifiInfo.getRxLinkSpeedMbps())+" Mbps"); 193 mMACAddr.setText(wifiInfo.getMacAddress()); 194 mNetworkId.setText(String.valueOf(wifiInfo.getNetworkId())); 195 mRSSI.setText(String.valueOf(wifiInfo.getRssi())); 196 mSSID.setText(wifiInfo.getSSID()); 205 mSupplicantState.setText("FOUR WAY HANDSHAKE"); in setSupplicantStateText() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/wifi/dpp/ |
D | WifiDppAddDeviceFragment.java | 87 mTitle.setText(R.string.wifi_dpp_wifi_shared_with_device); in showSuccessUi() 92 mButtonLeft.setText(R.string.wifi_dpp_add_another_device); in showSuccessUi() 94 mButtonRight.setText(R.string.done); in showSuccessUi() 110 mSummary.setText(R.string.wifi_dpp_could_not_detect_valid_qr_code); in showErrorUi() 114 mSummary.setText(R.string.wifi_dpp_failure_authentication_or_configuration); in showErrorUi() 118 mSummary.setText(R.string.wifi_dpp_failure_not_compatible); in showErrorUi() 122 mSummary.setText(R.string.wifi_dpp_failure_authentication_or_configuration); in showErrorUi() 143 mSummary.setText(R.string.wifi_dpp_failure_timeout); in showErrorUi() 147 mSummary.setText(R.string.wifi_dpp_failure_generic); in showErrorUi() 151 mSummary.setText(getString(R.string.wifi_dpp_failure_not_supported, getSsid())); in showErrorUi() [all …]
|
/packages/services/Telephony/src/com/android/phone/settings/ |
D | RadioInfo.java | 374 mPhyChanConfig.setText(sb.toString()); in updatePhysicalChannelConfiguration() 426 mSmsc.setText("refresh error"); 428 mSmsc.setText((String) ar.result); 435 mSmsc.setText("update error"); 441 mPhyChanConfig.setText(("update error")); 632 mPingHostnameV4.setText(mPingHostnameResultV4); in updateAllFields() 633 mPingHostnameV6.setText(mPingHostnameResultV6); in updateAllFields() 634 mHttpClientTest.setText(mHttpClientTestResult); in updateAllFields() 691 mPingHostnameV4.setText(mPingHostnameResultV4); in restoreFromBundle() 692 mPingHostnameV6.setText(mPingHostnameResultV6); in restoreFromBundle() [all …]
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/connectivity/ |
D | NetworkListAdapter.java | 84 vh.netId.setText("" + mNetworkList[position].mNetId); in getView() 85 vh.netType.setText(mNetworkList[position].mType); in getView() 86 vh.netState.setText(mNetworkList[position].mState); in getView() 87 vh.connected.setText(mNetworkList[position].mConnected); in getView() 88 vh.available.setText(mNetworkList[position].mAvailable); in getView() 89 vh.roaming.setText(mNetworkList[position].mRoaming); in getView() 90 vh.netIface.setText(mNetworkList[position].mInterfaceName); in getView() 91 vh.hwAddress.setText(mNetworkList[position].mHwAddress); in getView() 92 vh.ipAddresses.setText(mNetworkList[position].mIpAddresses); in getView() 93 vh.dns.setText(mNetworkList[position].mDnsAddresses); in getView() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
D | BluetoothOppTransferActivity.java | 260 mLine1View.setText(tmp); in customizeViewContent() 263 mLine2View.setText(tmp); in customizeViewContent() 267 mLine3View.setText(tmp); in customizeViewContent() 274 mLine5View.setText(tmp); in customizeViewContent() 279 mLine1View.setText(tmp); in customizeViewContent() 282 mLine2View.setText(tmp); in customizeViewContent() 286 mLine3View.setText(tmp); in customizeViewContent() 293 mLine5View.setText(tmp); in customizeViewContent() 301 mLine1View.setText(tmp); in customizeViewContent() 304 mLine2View.setText(tmp); in customizeViewContent() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/ |
D | RadioInfo.java | 330 mPhyChanConfig.setText(sb.toString()); in updatePhysicalChannelConfiguration() 367 smsc.setText("refresh error"); 369 smsc.setText((String)ar.result); 376 smsc.setText("update error"); 382 mPhyChanConfig.setText(("update error")); 545 mPingHostnameV4.setText(mPingHostnameResultV4); in onResume() 546 mPingHostnameV6.setText(mPingHostnameResultV6); in onResume() 547 mHttpClientTest.setText(mHttpClientTestResult); in onResume() 610 mPingHostnameV4.setText(mPingHostnameResultV4); in restoreFromBundle() 611 mPingHostnameV6.setText(mPingHostnameResultV6); in restoreFromBundle() [all …]
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/simstatus/ |
D | SimStatusDialogControllerTest.java | 206 verify(mDialog).setText(NETWORK_PROVIDER_VALUE_ID, carrierName); in initialize_updateNetworkProviderWithFoobarCarrier_shouldUpdateCarrierWithFoobar() 218 verify(mDialog).setText(PHONE_NUMBER_VALUE_ID, phoneNumber); in initialize_updatePhoneNumberWith1111111111_shouldUpdatePhoneNumber() 238 verify(mDialog).setText(SERVICE_STATE_VALUE_ID, inServiceText); in initialize_updateServiceStateWithInService_shouldUpdateTextToBeCInService() 250 verify(mDialog).setText(SERVICE_STATE_VALUE_ID, offServiceText); in initialize_updateServiceStateWithPowerOff_shouldUpdateTextAndResetSignalStrength() 251 verify(mDialog).setText(SIGNAL_STRENGTH_VALUE_ID, "0"); in initialize_updateServiceStateWithPowerOff_shouldUpdateTextAndResetSignalStrength() 265 verify(mDialog).setText(SERVICE_STATE_VALUE_ID, offServiceText); in initialize_updateVoiceDataOutOfService_shouldUpdateSettingAndResetSignalStrength() 266 verify(mDialog).setText(SIGNAL_STRENGTH_VALUE_ID, "0"); in initialize_updateVoiceDataOutOfService_shouldUpdateSettingAndResetSignalStrength() 279 verify(mDialog).setText(SERVICE_STATE_VALUE_ID, inServiceText); in initialize_updateVoiceOutOfServiceDataInService_shouldUpdateTextToBeInService() 296 verify(mDialog).setText(SIGNAL_STRENGTH_VALUE_ID, signalStrengthString); in initialize_updateSignalStrengthWithLte50Wcdma40_shouldUpdateSignalStrengthTo50() 313 verify(mDialog).setText(SIGNAL_STRENGTH_VALUE_ID, signalStrengthString); in initialize_updateSignalStrengthWithLte50Cdma30_shouldUpdateSignalStrengthTo50() [all …]
|
/packages/apps/Calendar/src/com/android/calendar/ |
D | CalendarViewAdapter.java | 185 weekDay.setText(buildDayOfWeek()); in getView() 186 date.setText(buildFullDate()); in getView() 191 weekDay.setText(buildWeekNum()); in getView() 195 date.setText(buildMonthYearDate()); in getView() 199 date.setText(buildMonthYearDate()); in getView() 219 title.setText(mButtonNames [DAY_BUTTON_INDEX]); in getView() 222 title.setText(mButtonNames [WEEK_BUTTON_INDEX]); in getView() 225 title.setText(mButtonNames [MONTH_BUTTON_INDEX]); in getView() 258 viewType.setText(mButtonNames [DAY_BUTTON_INDEX]); in getDropDownView() 260 date.setText(buildMonthDayDate()); in getDropDownView() [all …]
|
/packages/apps/TV/src/com/android/tv/dialog/ |
D | PinDialogFragment.java | 185 mTitleView.setText(R.string.pin_enter_unlock_channel); in onCreateView() 188 mTitleView.setText(R.string.pin_enter_unlock_program); in onCreateView() 194 mTitleView.setText(getString(R.string.pin_enter_unlock_dvr_unrated)); in onCreateView() 196 mTitleView.setText( in onCreateView() 205 mTitleView.setText(R.string.pin_enter_pin); in onCreateView() 209 mTitleView.setText(R.string.pin_enter_create_pin); in onCreateView() 211 mTitleView.setText(R.string.pin_enter_old_pin); in onCreateView() 240 mWrongPinView.setText( in updateWrongPin() 306 mTitleView.setText(R.string.pin_enter_again); 313 mTitleView.setText(R.string.pin_enter_create_pin); [all …]
|
/packages/apps/Dialer/java/com/android/dialer/voicemail/settings/ |
D | VoicemailChangePinActivity.java | 119 activity.hintText.setText(R.string.change_pin_enter_old_pin_hint); in onEnter() 120 activity.nextButton.setText(R.string.change_pin_continue_label); in onEnter() 121 activity.errorText.setText(null); in onEnter() 142 activity.pinEntry.setText(""); in handleResult() 199 activity.headerText.setText(R.string.change_pin_enter_new_pin_header); in onEnter() 200 activity.nextButton.setText(R.string.change_pin_continue_label); in onEnter() 201 activity.hintText.setText( in onEnter() 217 activity.errorText.setText(error); in onInputChanged() 220 activity.errorText.setText(null); in onInputChanged() 245 activity.headerText.setText(R.string.change_pin_confirm_pin_header); in onEnter() [all …]
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/simstatus/ |
D | SimStatusDialogController.java | 305 mDialog.setText(NETWORK_PROVIDER_VALUE_ID, carrierName); in updateNetworkProvider() 310 mDialog.setText(PHONE_NUMBER_VALUE_ID, in updatePhoneNumber() 335 mDialog.setText(CELLULAR_NETWORK_STATE, networkStateValue); in updateDataState() 349 mDialog.setText(OPERATOR_INFO_VALUE_ID, in updateAreaInfoText() 450 mDialog.setText(SERVICE_STATE_VALUE_ID, serviceStateValue); in updateServiceState() 490 mDialog.setText(SIGNAL_STRENGTH_VALUE_ID, mRes.getString(R.string.sim_signal_strength, in updateSignalStrength() 495 mDialog.setText(SIGNAL_STRENGTH_VALUE_ID, "0"); in resetSignalStrength() 503 mDialog.setText(CELL_VOICE_NETWORK_TYPE_VALUE_ID, unknownNetworkType); in updateNetworkType() 504 mDialog.setText(CELL_DATA_NETWORK_TYPE_VALUE_ID, unknownNetworkType); in updateNetworkType() 546 mDialog.setText(CELL_VOICE_NETWORK_TYPE_VALUE_ID, voiceNetworkTypeName); in updateNetworkType() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/ |
D | ExportDialog.java | 102 mSeekVal.setText(mSliderLabel + mSeekBar.getProgress()); in onCreateView() 113 mWidthText.setText("" + mOriginalBounds.width()); in onCreateView() 114 mHeightText.setText("" + mOriginalBounds.height()); in onCreateView() 141 mSeekVal.setText(mSliderLabel + arg1); in onProgressChanged() 197 mEstimatedSize.setText(estimatedSize); in updateSize() 214 mWidthText.setText("" + width); in textChanged() 218 mWidthText.setText("" + width); in textChanged() 222 mHeightText.setText("" + height); in textChanged() 231 mHeightText.setText("" + height); in textChanged() 235 mHeightText.setText("" + height); in textChanged() [all …]
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/projection/ |
D | ProjectionFragment.java | 64 mCurrentProjectionStatus.setText(STATE_TO_STRING.get(state)); in onProjectionStatusChanged() 65 mCurrentProjectionPackage.setText(packageName); in onProjectionStatusChanged() 74 detailPackage.setText(detail.getPackageName()); in onProjectionStatusChanged() 77 detailState.setText(STATE_TO_STRING.get(detail.getState())); in onProjectionStatusChanged() 81 detailTransport.setText(TRANSPORT_TO_STRING.get(detail.getTransport())); in onProjectionStatusChanged() 90 deviceId.setText(String.valueOf(device.getId())); in onProjectionStatusChanged() 93 deviceName.setText(device.getName()); in onProjectionStatusChanged() 99 transportView.setText(TRANSPORT_TO_STRING.get(transport)); in onProjectionStatusChanged() 106 deviceProjecting.setText(String.valueOf(device.isProjecting())); in onProjectionStatusChanged()
|
/packages/apps/Messaging/src/com/android/messaging/ui/appsettings/ |
D | ApnEditorActivity.java | 260 mMcc.setText(null); in fillUi() 261 mMnc.setText(null); in fillUi() 270 mMcc.setText(mcc); in fillUi() 271 mMnc.setText(mnc); in fillUi() 275 mName.setText(null); in fillUi() 276 mMmsProxy.setText(null); in fillUi() 277 mMmsPort.setText(null); in fillUi() 278 mMmsc.setText(null); in fillUi() 282 mName.setText(mCursor.getString(NAME_INDEX)); in fillUi() 283 mMmsProxy.setText(mCursor.getString(MMSPROXY_INDEX)); in fillUi() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/simstatus/ |
D | SimStatusDialogController.java | 130 mDialog.setText(OPERATOR_INFO_VALUE_ID, latestAreaInfo); 219 mDialog.setText(NETWORK_PROVIDER_VALUE_ID, serviceState.getOperatorAlphaLong()); in updateNetworkProvider() 224 mDialog.setText(PHONE_NUMBER_VALUE_ID, BidiFormatter.getInstance().unicodeWrap( in updatePhoneNumber() 249 mDialog.setText(CELLULAR_NETWORK_STATE, networkStateValue); in updateDataState() 290 mDialog.setText(SERVICE_STATE_VALUE_ID, serviceStateValue); in updateServiceState() 325 mDialog.setText(SIGNAL_STRENGTH_VALUE_ID, mRes.getString(R.string.sim_signal_strength, in updateSignalStrength() 330 mDialog.setText(SIGNAL_STRENGTH_VALUE_ID, "0"); in resetSignalStrength() 363 mDialog.setText(CELL_VOICE_NETWORK_TYPE_VALUE_ID, voiceNetworkTypeName); in updateNetworkType() 364 mDialog.setText(CELL_DATA_NETWORK_TYPE_VALUE_ID, dataNetworkTypeName); in updateNetworkType() 369 mDialog.setText(ROAMING_INFO_VALUE_ID, mRes.getString(R.string.radioInfo_roaming_in)); in updateRoamingStatus() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/vpn2/ |
D | ConfigDialog.java | 129 mName.setText(mProfile.name); in onCreate() 131 mServer.setText(mProfile.server); in onCreate() 133 mUsername.setText(mProfile.username); in onCreate() 134 mPassword.setText(mProfile.password); in onCreate() 136 mSearchDomains.setText(mProfile.searchDomains); in onCreate() 137 mDnsServers.setText(mProfile.dnsServers); in onCreate() 138 mRoutes.setText(mProfile.routes); in onCreate() 140 mProxyHost.setText(mProfile.proxy.getHost()); in onCreate() 142 mProxyPort.setText(port == 0 ? "" : Integer.toString(port)); in onCreate() 145 mL2tpSecret.setText(mProfile.l2tpSecret); in onCreate() [all …]
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/ |
D | ActionDisabledByAdminDialogHelper.java | 124 titleView.setText(R.string.disabled_by_policy_title); in setAdminSupportTitle() 129 titleView.setText(R.string.disabled_by_policy_title_adjust_volume); in setAdminSupportTitle() 132 titleView.setText(R.string.disabled_by_policy_title_outgoing_calls); in setAdminSupportTitle() 135 titleView.setText(R.string.disabled_by_policy_title_sms); in setAdminSupportTitle() 138 titleView.setText(R.string.disabled_by_policy_title_camera); in setAdminSupportTitle() 141 titleView.setText(R.string.disabled_by_policy_title_screen_capture); in setAdminSupportTitle() 144 titleView.setText(R.string.disabled_by_policy_title_suspend_packages); in setAdminSupportTitle() 148 titleView.setText(R.string.disabled_by_policy_title); in setAdminSupportTitle() 176 textView.setText(supportMessage); in setAdminSupportDetails()
|
/packages/apps/Dialer/java/com/android/contacts/common/util/ |
D | AccountFilterUtil.java | 51 headerTextView.setText(R.string.list_filter_phones); in updateAccountFilterTitle() 55 headerTextView.setText( in updateAccountFilterTitle() 59 headerTextView.setText(R.string.listCustomView); in updateAccountFilterTitle() 65 headerTextView.setText(R.string.list_filter_all_accounts); in updateAccountFilterTitle() 69 headerTextView.setText( in updateAccountFilterTitle() 73 headerTextView.setText(R.string.listCustomView); in updateAccountFilterTitle() 76 headerTextView.setText(R.string.listSingleContact); in updateAccountFilterTitle()
|
/packages/apps/Settings/src/com/android/settings/datausage/ |
D | DataUsageSummaryPreference.java | 164 ((TextView) holder.findViewById(android.R.id.text1)).setText(mStartLabel); in onBindViewHolder() 165 ((TextView) holder.findViewById(android.R.id.text2)).setText(mEndLabel); in onBindViewHolder() 186 limitInfo.setText(mLimitInfoText); in onBindViewHolder() 188 usageTitle.setText(R.string.data_usage_wifi_title); in onBindViewHolder() 191 cycleTime.setText(mUsagePeriod); in onBindViewHolder() 203 launchButton.setText(R.string.launch_wifi_text); in onBindViewHolder() 219 limitInfo.setText(mLimitInfoText); in onBindViewHolder() 251 usageNumberField.setText(usageText); in updateDataUsageLabels() 260 usageRemainingField.setText( in updateDataUsageLabels() 266 usageRemainingField.setText( in updateDataUsageLabels() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/datausage/ |
D | DataUsageSummaryPreference.java | 164 ((TextView) holder.findViewById(android.R.id.text1)).setText(mStartLabel); in onBindViewHolder() 165 ((TextView) holder.findViewById(android.R.id.text2)).setText(mEndLabel); in onBindViewHolder() 186 limitInfo.setText(mLimitInfoText); in onBindViewHolder() 188 usageTitle.setText(R.string.data_usage_wifi_title); in onBindViewHolder() 191 cycleTime.setText(mUsagePeriod); in onBindViewHolder() 203 launchButton.setText(R.string.launch_wifi_text); in onBindViewHolder() 219 limitInfo.setText(mLimitInfoText); in onBindViewHolder() 251 usageNumberField.setText(usageText); in updateDataUsageLabels() 260 usageRemainingField.setText( in updateDataUsageLabels() 266 usageRemainingField.setText( in updateDataUsageLabels() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/imei/ |
D | ImeiInfoDialogController.java | 95 mDialog.setText(ID_MEID_NUMBER_VALUE, getMeid()); in updateDialogForCdmaPhone() 96 mDialog.setText(ID_MIN_NUMBER_VALUE, in updateDialogForCdmaPhone() 101 mDialog.setText(ID_MIN_NUMBER_LABEL, in updateDialogForCdmaPhone() 105 mDialog.setText(ID_PRL_VERSION_VALUE, getCdmaPrlVersion()); in updateDialogForCdmaPhone() 109 mDialog.setText(ID_IMEI_VALUE, in updateDialogForCdmaPhone() 111 mDialog.setText(ID_IMEI_SV_VALUE, in updateDialogForCdmaPhone() 120 mDialog.setText(ID_IMEI_VALUE, getTextAsDigits(mTelephonyManager.getImei(mSlotId))); in updateDialogForGsmPhone() 121 mDialog.setText(ID_IMEI_SV_VALUE, in updateDialogForGsmPhone()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/applications/ |
D | RunningProcessesView.java | 118 mHolder.size.setText(size); in updateTime() 125 mHolder.uptime.setText(""); in updateTime() 139 uptimeView.setText(DateUtils.formatElapsedTime(builder, in updateTime() 147 uptimeView.setText(context.getResources().getText( in updateTime() 150 uptimeView.setText(""); in updateTime() 189 name.setText(item.mDisplayLabel); in bind() 196 description.setText(rootView.getContext().getText(R.string.cached)); in bind() 198 description.setText(item.mDescription); in bind() 345 mForegroundProcessPrefix.setText(getResources().getText( in refreshUi() 347 mAppsProcessPrefix.setText(getResources().getText( in refreshUi() [all …]
|
/packages/apps/Settings/src/com/android/settings/applications/ |
D | RunningProcessesView.java | 118 mHolder.size.setText(size); in updateTime() 125 mHolder.uptime.setText(""); in updateTime() 139 uptimeView.setText(DateUtils.formatElapsedTime(builder, in updateTime() 147 uptimeView.setText(context.getResources().getText( in updateTime() 150 uptimeView.setText(""); in updateTime() 189 name.setText(item.mDisplayLabel); in bind() 196 description.setText(rootView.getContext().getText(R.string.cached)); in bind() 198 description.setText(item.mDescription); in bind() 345 mForegroundProcessPrefix.setText(getResources().getText( in refreshUi() 347 mAppsProcessPrefix.setText(getResources().getText( in refreshUi() [all …]
|