/packages/apps/CertInstaller/src/com/android/certinstaller/ |
ViewHelper.java | 49 void setText(int viewId, int textId) { 51 if (v != null) v.setText(textId);
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
EmergencyButton.java | 170 int textId; 172 textId = com.android.internal.R.string.lockscreen_return_to_call; 174 textId = com.android.internal.R.string.lockscreen_emergency_call; 176 setText(textId);
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
NotifyingService.java | 93 private void showNotification(int moodId, int textId) { 95 CharSequence text = getText(textId);
|
StatusBarNotifications.java | 193 private void setMood(int moodId, int textId, boolean showTicker) { 195 CharSequence text = getText(textId); 210 notifBuidler.setTicker(getString(textId)); 218 private void setMoodView(int moodId, int textId) { 229 CharSequence text = getText(textId);
|
/developers/build/prebuilts/gradle/MultiWindowPlayground/Application/src/main/java/com/android/multiwindowplayground/activities/ |
LoggingActivity.java | 138 protected void setDescription(@StringRes int textId) { 142 description.setText(textId);
|
/developers/samples/android/ui/window/MultiWindowPlayground/Application/src/main/java/com/android/multiwindowplayground/activities/ |
LoggingActivity.java | 138 protected void setDescription(@StringRes int textId) { 142 description.setText(textId);
|
/development/samples/browseable/MultiWindowPlayground/src/com/android.multiwindowplayground/activities/ |
LoggingActivity.java | 138 protected void setDescription(@StringRes int textId) { 142 description.setText(textId);
|
/external/webrtc/webrtc/modules/video_render/external/ |
video_render_external_impl.h | 102 virtual int32_t SetText(const uint8_t textId,
|
video_render_external_impl.cc | 164 const uint8_t textId,
|
/external/webrtc/webrtc/modules/video_render/ |
i_video_render.h | 108 virtual int32_t SetText(const uint8_t textId,
|
video_render.h | 246 virtual int32_t SetText(const uint8_t textId,
|
video_render_impl.h | 187 virtual int32_t SetText(const uint8_t textId,
|
/external/webrtc/webrtc/modules/video_render/linux/ |
video_render_linux_impl.h | 103 virtual int32_t SetText(const uint8_t textId,
|
/external/webrtc/webrtc/modules/video_render/mac/ |
video_render_mac_carbon_impl.h | 109 virtual int32_t SetText(const uint8_t textId,
|
video_render_mac_cocoa_impl.h | 109 virtual int32_t SetText(const uint8_t textId,
|
video_render_mac_cocoa_impl.mm | 222 int32_t VideoRenderMacCocoaImpl::SetText(const uint8_t textId, 232 return _ptrCocoaRender->SetText(textId, text, textLength, textColorRef, backgroundColorRef, left, top, right, bottom);
|
/external/webrtc/webrtc/modules/video_render/windows/ |
i_video_render_win.h | 88 virtual int32_t SetText(const uint8_t textId,
|
video_render_windows_impl.h | 111 virtual int32_t SetText(const uint8_t textId,
|
/development/apps/WidgetPreview/src/com/android/widgetpreview/ |
WidgetPreviewActivity.java | 290 int textId = R.string.saving_preview; 292 Toast preToast = Toast.makeText(getBaseContext(), textId, Toast.LENGTH_SHORT); 297 textId = R.string.preview_saved; 299 textId = R.string.preview_save_error; 302 Toast postToast = Toast.makeText(getBaseContext(), textId, Toast.LENGTH_SHORT);
|
/frameworks/base/core/java/android/app/ |
AlertDialog.java | 604 * @param textId The resource id of the text to display in the positive button 609 public Builder setPositiveButton(@StringRes int textId, final OnClickListener listener) { 610 P.mPositiveButtonText = P.mContext.getText(textId); 630 * @param textId The resource id of the text to display in the negative button 635 public Builder setNegativeButton(@StringRes int textId, final OnClickListener listener) { 636 P.mNegativeButtonText = P.mContext.getText(textId); 656 * @param textId The resource id of the text to display in the neutral button 661 public Builder setNeutralButton(@StringRes int textId, final OnClickListener listener) { 662 P.mNeutralButtonText = P.mContext.getText(textId); [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/app/ |
AlertDialog.java | 445 * @param textId The resource id of the text to display in the positive button 450 public Builder setPositiveButton(@StringRes int textId, final OnClickListener listener) { 451 P.mPositiveButtonText = P.mContext.getText(textId); 471 * @param textId The resource id of the text to display in the negative button 476 public Builder setNegativeButton(@StringRes int textId, final OnClickListener listener) { 477 P.mNegativeButtonText = P.mContext.getText(textId); 497 * @param textId The resource id of the text to display in the neutral button 502 public Builder setNeutralButton(@StringRes int textId, final OnClickListener listener) { 503 P.mNeutralButtonText = P.mContext.getText(textId); [all...] |
/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/ |
AbstractConversationListActivity.java | 183 final int textId = 185 final String message = getResources().getString(textId, conversationIds.size()); 200 final int textId = isNotificationOn ? 202 final String message = getResources().getString(textId, 1);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/ |
MessageTestActivity.java | 247 private void setEmptyViewText(int textId) { 248 mEmptyReceivedView.setText(textId); 249 mEmptySentView.setText(textId);
|
/external/webrtc/webrtc/modules/video_render/android/ |
video_render_android_impl.h | 104 virtual int32_t SetText(const uint8_t textId,
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowDialog.java | 236 public void clickOnText(int textId) { 240 String text = getContext().getResources().getString(textId);
|