HomeSort by relevance Sort by last modified time
    Searched refs:Prompt (Results 1 - 25 of 33) sorted by null

1 2

  /frameworks/base/core/java/android/app/
VoiceInteractor.aidl 20 parcelable VoiceInteractor.Prompt;
VoiceInteractor.java 328 final Prompt mPrompt;
333 * @param prompt Optional confirmation to speak to the user or null if nothing
337 public ConfirmationRequest(@Nullable Prompt prompt, @Nullable Bundle extras) {
338 mPrompt = prompt;
344 * @param prompt Optional confirmation to speak to the user or null if nothing
349 public ConfirmationRequest(CharSequence prompt, Bundle extras) {
350 mPrompt = (prompt != null ? new Prompt(prompt) : null)
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
IVoiceInteractor.aidl 30 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
32 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt,
35 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
37 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
ResolverActivity.java 24 import android.app.VoiceInteractor.Prompt;
173 // Use a specialized prompt when we're handling the 'Home' app startActivity()
352 new Prompt(getTitle()), options, null);
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
Voice.java 59 final VoiceInteractor.Prompt prompt = new VoiceInteractor.Prompt(message); local
60 vi.submitRequest(new VoiceInteractor.CompleteVoiceRequest(prompt, null));
67 final VoiceInteractor.Prompt prompt = new VoiceInteractor.Prompt(message); local
68 vi.submitRequest(new VoiceInteractor.AbortVoiceRequest(prompt, null));
  /cts/tests/tests/voiceinteraction/testapp/src/android/voiceinteraction/testapp/
TestApp.java 27 import android.app.VoiceInteractor.Prompt;
144 Prompt prompt = new Prompt(Utils.TEST_PROMPT); local
145 ConfirmationRequest req = new VoiceInteractor.ConfirmationRequest(prompt, mTestinfo) {
168 Prompt prompt = new Prompt(Utils.TEST_PROMPT); local
169 CompleteVoiceRequest req = new VoiceInteractor.CompleteVoiceRequest(prompt, mTestinfo) {
192 Prompt prompt = new Prompt(Utils.TEST_PROMPT) local
215 Prompt prompt = new Prompt(Utils.TEST_PROMPT); local
    [all...]
  /external/llvm/include/llvm/LineEditor/
LineEditor.h 27 /// prompt.
105 const std::string &getPrompt() const { return Prompt; }
106 void setPrompt(const std::string &P) { Prompt = P; }
112 std::string Prompt;
  /external/v8/src/
d8-readline.cc 28 virtual Handle<String> Prompt(const char* prompt);
83 Handle<String> ReadLineEditor::Prompt(const char* prompt) {
85 result = readline(prompt);
d8.h 103 virtual Handle<String> Prompt(const char* prompt) = 0;
d8.cc 129 virtual Handle<String> Prompt(const char* prompt);
135 Handle<String> DumbLineEditor::Prompt(const char* prompt) {
136 printf("%s", prompt);
    [all...]
  /external/chromium-trace/trace-viewer/third_party/webapp2/docs/_themes/webapp2/
pygapp2.py 52 Generic.Prompt: "nobold noitalic #000",
  /frameworks/base/core/java/android/service/voice/
VoiceInteractionSession.java 135 IVoiceInteractorCallback callback, VoiceInteractor.Prompt prompt, Bundle extras) {
138 prompt, extras);
147 IVoiceInteractorCallback callback, VoiceInteractor.Prompt prompt,
151 prompt, options, extras);
160 IVoiceInteractorCallback callback, VoiceInteractor.Prompt message, Bundle extras) {
172 IVoiceInteractorCallback callback, VoiceInteractor.Prompt message, Bundle extras) {
412 final VoiceInteractor.Prompt mPrompt;
415 VoiceInteractionSession session, VoiceInteractor.Prompt prompt, Bundle extras)
    [all...]
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
TestInteractionActivity.java 95 new VoiceInteractor.Prompt("This is a confirmation"), null) {
173 super(new VoiceInteractor.Prompt("Dammit, we suck :("), null);
188 super(new VoiceInteractor.Prompt("Woohoo, completed!"), null);
235 super(new VoiceInteractor.Prompt("Need to pick something"), options, null);
MainInteractionSession.java 349 void setPrompt(VoiceInteractor.Prompt prompt) {
350 if (prompt == null) {
354 mText.setText(prompt.getVisualPrompt());
355 mPendingPrompt = prompt.getVisualPrompt();
361 Log.i(TAG, "onConfirm: prompt=" + request.getVoicePrompt() + " extras="
372 Log.i(TAG, "onPickOption: prompt=" + request.getVoicePrompt() + " options="
  /external/llvm/lib/LineEditor/
LineEditor.cpp 176 // Fool libedit into thinking nothing has changed. Reprint its prompt
195 : Prompt((ProgName + "> ").str()), HistoryPath(HistoryPath),
252 // Call el_gets to prompt the user and read the user's input.
283 : Prompt((ProgName + "> ").str()), Data(new InternalData) {
296 ::fprintf(Data->Out, "%s", Prompt.c_str());
  /external/ppp/pppd/plugins/radius/etc/
dictionary 141 VALUE Service-Type NAS-Prompt-User 7
dictionary.ascend 107 ATTRIBUTE Ascend-Third-Prompt 213 string
  /cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/
MainInteractionSession.java 20 import android.app.VoiceInteractor.Prompt;
66 void assertPromptFromTestApp(CharSequence prompt, Bundle extras) {
67 String str = prompt.toString();
69 Log.i(TAG, "prompt received ok from TestApp in Session");
71 Utils.addErrorResult(extras, "Invalid prompt received: " + str);
95 CharSequence prompt = request.getVoicePrompt().getVoicePromptAt(0); local
96 Log.i(TAG, "in Session onRequestConfirmation recvd. prompt=" + prompt +
98 assertPromptFromTestApp(prompt, extras);
115 CharSequence prompt = request.getVoicePrompt().getVoicePromptAt(0) local
135 CharSequence prompt = request.getVoicePrompt().getVoicePromptAt(0); local
194 CharSequence prompt = request.getVoicePrompt().getVoicePromptAt(0); local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
nmake.mak 3 # This can be run in Visual Studio 2005 Command Prompt
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntddk.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
shobjidl.h     [all...]