Searched defs:prompt (Results 1 - 12 of 12) sorted by relevance

/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java94 private static void checkEglError(String prompt, EGL10 egl) { argument
97 Log.e(TAG, String.format("%s: EGL error: 0x%x", prompt, error));
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java94 private static void checkEglError(String prompt, EGL10 egl) { argument
97 Log.e(TAG, String.format("%s: EGL error: 0x%x", prompt, error));
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java97 private static void checkEglError(String prompt, EGL10 egl) { argument
100 Log.e(TAG, String.format("%s: EGL error: 0x%x", prompt, error));
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionSession.java365 void setPrompt(VoiceInteractor.Prompt prompt) { argument
366 if (prompt == null) {
370 mText.setText(prompt.getVisualPrompt());
371 mPendingPrompt = prompt.getVisualPrompt();
377 Log.i(TAG, "onConfirm: prompt=" + request.getVoicePrompt() + " extras="
388 Log.i(TAG, "onPickOption: prompt=" + request.getVoicePrompt() + " options="
/frameworks/base/core/java/android/app/
H A DVoiceInteractor.java333 * @param prompt Optional confirmation to speak to the user or null if nothing
337 public ConfirmationRequest(@Nullable Prompt prompt, @Nullable Bundle extras) { argument
338 mPrompt = prompt;
344 * @param prompt Optional confirmation to speak to the user or null if nothing
349 public ConfirmationRequest(CharSequence prompt, Bundle extras) { argument
350 mPrompt = (prompt != null ? new Prompt(prompt) : null);
517 * @param prompt Optional question to be asked of the user when the options are
522 public PickOptionRequest(@Nullable Prompt prompt, Option[] options, argument
524 mPrompt = prompt;
537 PickOptionRequest(CharSequence prompt, Option[] options, Bundle extras) argument
614 CompleteVoiceRequest(@ullable Prompt prompt, @Nullable Bundle extras) argument
673 AbortVoiceRequest(@ullable Prompt prompt, @Nullable Bundle extras) argument
803 Prompt(@onNull CharSequence prompt) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatSpinner.java445 public void setPrompt(CharSequence prompt) { argument
447 mPopup.setPromptText(prompt);
449 super.setPrompt(prompt);
H A DListPopupWindow.java153 * The provided prompt view should appear above list content.
162 * The provided prompt view should appear below list content.
297 * Set where the optional prompt view should appear. The default is
300 * @param position A position constant declaring where the prompt should be displayed.
310 * @return Where the optional prompt view should appear.
606 * Set a view to act as a user prompt for this popup window. Where the prompt view will appear
609 * @param prompt View to use as an informational prompt.
611 public void setPromptView(@Nullable View prompt) { argument
[all...]
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java118 * The provided prompt view should appear above list content.
127 * The provided prompt view should appear below list content.
258 * Set where the optional prompt view should appear. The default is
261 * @param position A position constant declaring where the prompt should be displayed.
271 * @return Where the optional prompt view should appear.
567 * Set a view to act as a user prompt for this popup window. Where the prompt view will appear
570 * @param prompt View to use as an informational prompt.
572 public void setPromptView(@Nullable View prompt) { argument
[all...]
H A DSpinner.java798 * Sets the prompt to display when the dialog is shown.
799 * @param prompt the prompt to set
801 public void setPrompt(CharSequence prompt) { argument
802 mPopup.setPromptText(prompt);
806 * Sets the prompt to display when the dialog is shown.
807 * @param promptId the resource ID of the prompt to display when the dialog is shown
814 * @return The prompt to display when the dialog is shown
/frameworks/base/services/core/java/com/android/server/
H A DTelephonyRegistry.java1663 private void toStringLogSSC(String prompt) { argument
1665 log(prompt + ": logSSC is empty");
1668 log(prompt + ": logSSC.length=" + logSSC.length + " next=" + next);
1680 log(prompt + ": ----------------");
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java154 IVoiceInteractorCallback callback, VoiceInteractor.Prompt prompt, Bundle extras) {
157 prompt, extras);
166 IVoiceInteractorCallback callback, VoiceInteractor.Prompt prompt,
170 prompt, options, extras);
435 VoiceInteractionSession session, VoiceInteractor.Prompt prompt, Bundle extras) {
437 mPrompt = prompt;
441 * Return the prompt informing the user of what will happen, as per
451 * Return the prompt informing the user of what will happen, as per
494 VoiceInteractionSession session, VoiceInteractor.Prompt prompt,
497 mPrompt = prompt;
434 ConfirmationRequest(String packageName, int uid, IVoiceInteractorCallback callback, VoiceInteractionSession session, VoiceInteractor.Prompt prompt, Bundle extras) argument
493 PickOptionRequest(String packageName, int uid, IVoiceInteractorCallback callback, VoiceInteractionSession session, VoiceInteractor.Prompt prompt, VoiceInteractor.PickOptionRequest.Option[] options, Bundle extras) argument
603 CompleteVoiceRequest(String packageName, int uid, IVoiceInteractorCallback callback, VoiceInteractionSession session, VoiceInteractor.Prompt prompt, Bundle extras) argument
661 AbortVoiceRequest(String packageName, int uid, IVoiceInteractorCallback callback, VoiceInteractionSession session, VoiceInteractor.Prompt prompt, Bundle extras) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java207 // Use a specialized prompt when we're handling the 'Home' app startActivity()
1863 public PickTargetOptionRequest(@Nullable Prompt prompt, Option[] options, argument
1865 super(prompt, options, extras);

Completed in 364 milliseconds