HomeSort by relevance Sort by last modified time
    Searched full:prompt (Results 26 - 50 of 1258) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/curl/src/
tool_getpass.c 64 char *getpass_r(const char *prompt, char *buffer, size_t buflen)
87 prompt, strlen(prompt));
105 char *getpass_r(const char *prompt, char *buffer, size_t buflen)
108 fputs(prompt, stderr);
138 char *getpass_r(const char *prompt, char *buffer, size_t buflen)
140 return getpassword(prompt, buffer, buflen);
143 char *getpass_r(const char *prompt, char *buffer, size_t buflen)
147 printf("%s", prompt);
224 char *getpass_r(const char *prompt, /* prompt to display *
    [all...]
  /external/libedit/src/
prompt.c 1 /* $NetBSD: prompt.c,v 1.20 2011/07/29 15:16:33 christos Exp $ */
38 static char sccsid[] = "@(#)prompt.c 8.1 (Berkeley) 6/4/93";
40 __RCSID("$NetBSD: prompt.c,v 1.20 2011/07/29 15:16:33 christos Exp $");
45 * prompt.c: Prompt printing functions
54 * Just a default prompt, in case the user did not provide one
80 * Print the prompt and update the prompt position.
117 * Initialize the prompt stuff
136 * Clean up the prompt stuf
    [all...]
  /frameworks/base/core/java/android/webkit/
JsPromptResult.java 23 * Public class for handling JavaScript prompt requests. The WebChromeClient will receive a
26 * dialog prompt back to the WebView instance. The client can call cancel() to cancel the dialog or
30 // String result of the prompt
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
propget.py 23 prompt = prop.verbose_name
24 if not prompt:
25 prompt = prop.name
41 value = raw_input('%s [%d-%d]: ' % (prompt, min, max))
53 value = raw_input('%s: ' % prompt)
  /packages/apps/Settings/src/com/android/settings/utils/
VoiceSettingsActivity.java 59 * Send a notification that the interaction was successful. If {@param prompt} is
62 protected void notifySuccess(CharSequence prompt) {
64 getVoiceInteractor().submitRequest(new CompleteVoiceRequest(prompt, null) {
76 protected void notifyFailure(CharSequence prompt) {
78 getVoiceInteractor().submitRequest(new AbortVoiceRequest(prompt, null));
  /tools/test/connectivity/acts/framework/acts/controllers/attenuator_lib/
_tnhelper.py 37 def __init__(self, tx_cmd_separator="\n", rx_cmd_separator="\n", prompt=""):
42 self.prompt = prompt
67 self._tn.read_until(_ascii_string(self.prompt), 2)
80 ret_text = ret_text.strip(self.tx_cmd_separator + self.rx_cmd_separator + self.prompt)
  /frameworks/base/core/java/android/app/
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...]
VoiceInteractor.aidl 20 parcelable VoiceInteractor.Prompt;
  /cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/
MainInteractionSession.java 20 import android.app.VoiceInteractor.Prompt;
79 void assertPromptFromTestApp(CharSequence prompt, Bundle extras) {
80 String str = prompt.toString();
82 Log.i(TAG, "prompt received ok from TestApp in Session");
84 Utils.addErrorResult(extras, "Invalid prompt received: " + str);
108 CharSequence prompt = request.getVoicePrompt().getVoicePromptAt(0); local
109 Log.i(TAG, "in Session onRequestConfirmation recvd. prompt=" + prompt +
111 assertPromptFromTestApp(prompt, extras);
128 CharSequence prompt = request.getVoicePrompt().getVoicePromptAt(0) local
148 CharSequence prompt = request.getVoicePrompt().getVoicePromptAt(0); local
207 CharSequence prompt = request.getVoicePrompt().getVoicePromptAt(0); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkSimpleDialog.py 174 def __init__(self, title, prompt,
183 self.prompt = prompt
197 w = Label(master, text=self.prompt, justify=LEFT)
251 def askinteger(title, prompt, **kw):
257 prompt -- the label text
262 d = _QueryInteger(title, prompt, **kw)
270 def askfloat(title, prompt, **kw):
276 prompt -- the label text
281 d = _QueryFloat(title, prompt, **kw
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkSimpleDialog.py 174 def __init__(self, title, prompt,
183 self.prompt = prompt
197 w = Label(master, text=self.prompt, justify=LEFT)
251 def askinteger(title, prompt, **kw):
257 prompt -- the label text
262 d = _QueryInteger(title, prompt, **kw)
270 def askfloat(title, prompt, **kw):
276 prompt -- the label text
281 d = _QueryFloat(title, prompt, **kw
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkSimpleDialog.py 174 def __init__(self, title, prompt,
183 self.prompt = prompt
197 w = Label(master, text=self.prompt, justify=LEFT)
251 def askinteger(title, prompt, **kw):
257 prompt -- the label text
262 d = _QueryInteger(title, prompt, **kw)
270 def askfloat(title, prompt, **kw):
276 prompt -- the label text
281 d = _QueryFloat(title, prompt, **kw
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkSimpleDialog.py 174 def __init__(self, title, prompt,
183 self.prompt = prompt
197 w = Label(master, text=self.prompt, justify=LEFT)
251 def askinteger(title, prompt, **kw):
257 prompt -- the label text
262 d = _QueryInteger(title, prompt, **kw)
270 def askfloat(title, prompt, **kw):
276 prompt -- the label text
281 d = _QueryFloat(title, prompt, **kw
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
ConsoleTest.java 68 String prompt = new String(((ByteArrayOutputStream) out).toByteArray()); local
69 assertEquals("1 hello", prompt);
75 String prompt = new String(((ByteArrayOutputStream) out).toByteArray()); local
76 assertEquals("03 21,1983", prompt);
94 String prompt = new String(((ByteArrayOutputStream) out).toByteArray()); local
95 assertEquals("2 Please input a line of string to test:", prompt);
  /packages/apps/Music/res/values-keyshidden/
strings.xml 21 <!-- Prompt in dialog when creating a playlist and the keyboard is closed. -->
24 <!-- Prompt in dialog when renaming a playlist, and the entered name is the same as the old one. -->
26 <!-- Prompt in dialog when renaming a playlist, and the entered name is different from the old one. -->
  /external/sonivox/jet_tools/JetCreator_content/
README.txt 5 1. Open a command prompt and go to the directory where the JetCreator tool is located.
  /development/samples/ApiDemos/res/layout/
spinner_1.xml 33 android:prompt="@string/spinner_1_color_prompt"
47 android:prompt="@string/spinner_1_planet_prompt"
  /external/autotest/client/cros/
cros_ui.py 41 """Wait until a new Chrome login prompt is on screen and ready.
43 The standard formula to check whether the prompt has appeared yet
51 old_session: identifier for the login prompt prior to
58 TimeoutError: Login prompt didn't get up before timeout
63 exception=utils.TimeoutError('Timed out waiting for login prompt'),
99 """Start the login manager and wait for the prompt to show up."""
116 for the login prompt to show up and be marked as visible.
132 # Wait for login prompt to appear to indicate that all processes are
  /external/autotest/client/site_tests/firmware_TouchMTB/
test_conf.py 330 prompt='Hold one finger on the {3} of the touch surface with a '
365 prompt='Draw a straight line from {3} with a {0} {1} {2} in noise.',
402 prompt='Hold one finger on the {3} of the touch surface with a '
423 prompt='Take {2} to draw a straight, {0} line {1} using a ruler.',
453 prompt='Take {2} to draw a striaght {0} line {1}.',
478 prompt='Take {2} to draw a {0} line {1} using a ruler '
511 prompt='Place one stationary finger near the center of the '
541 prompt='Use ONE finger to quickly swipe {0}.',
558 prompt='Use TWO fingers to quickly swipe {0}.',
577 prompt='Using two fingers, preform a "{0}" pinch by bringing
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/
scripting_control.html 48 #prompt {
54 #prompt:focus {
57 #prompt br {
60 #prompt ::before {
69 <div id='prompt'
86 var promptEl = this.$.prompt;
98 // Workaround for crbug.com/89026 to ensure the prompt doesn't retain
121 var promptEl = this.$.prompt;
  /external/google-breakpad/src/tools/windows/
refresh_binaries.bat 3 REM You MUST run it from a Visual Studio xxxx Command Prompt. To do this,
7 REM Visual Studio Command Prompt
  /libcore/ojluni/src/main/java/java/net/
Authenticator.java 147 * @param prompt A prompt string for the user
164 String prompt,
183 a.requestingPrompt = prompt;
207 * @param prompt A prompt string for the user which identifies the authentication realm.
226 String prompt,
246 a.requestingPrompt = prompt;
268 * @param prompt A prompt string for the use
    [all...]
  /external/autotest/server/site_tests/platform_USBHIDWake/
platform_USBHIDWake.py 50 def prompt(self, banner=">>>>>>>>>>> Achtung! <<<<<<<<<<<"): member in class:platform_USBHIDWake
51 """prompt the user with the supplied banner,
54 @param banner: A [possibly multi-line] banner prompt to display
94 self.prompt(banner=press_button_banner)
96 self.prompt(banner=bored_now)
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
PromptHelper.java 48 // Threads must acquire this before they can send a prompt.
86 * Request a prompt response from parent. This is a blocking call until user
119 * @param hint prompt hint for user to answer
134 * @param hint prompt hint for user to answer
147 * Cancel an in-progress prompt.
  /external/toybox/toys/pending/
more.c 40 static int prompt(FILE *cin, const char* fmt, ...) function
45 printf("\33[7m"); // Reverse video before printing the prompt.
115 input_key = prompt(cin, "--More--(%d%% of %lld bytes)",
119 input_key = prompt(cin, "--More--");
139 input_key = prompt(cin, "--More--(Next file: %s)", *toys.optargs);

Completed in 1385 milliseconds

12 3 4 5 6 7 8 91011>>