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

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSpinner.java 11 private CharSequence prompt; field in class:ShadowSpinner
14 public void setPrompt(CharSequence prompt) {
15 this.prompt = prompt;
20 return prompt;
  /external/autotest/site_utils/tester_feedback/
sequenced_request.py 25 def __init__(self, blurb, input_handler, prompt=None):
34 # Initialize the input prompt string.
35 if prompt is None:
36 prompt = ''
38 if prompt:
39 prompt += ' '
40 prompt += prompt_supp
41 self.prompt = self._format_text(prompt)
42 if self.prompt
    [all...]
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/command/
prompt.py 1 # Extended prompt.
20 import gdb.prompt namespace
24 """Set the extended prompt.
26 Usage: set extended-prompt VALUE
28 Substitutions are applied to VALUE to compute the real prompt.
33 # Add the prompt library's dynamically generated help to the
35 __doc__ = __doc__ + gdb.prompt.prompt_help()
37 set_doc = "Set the extended prompt."
38 show_doc = "Show the extended prompt."
41 super(_ExtendedPrompt, self).__init__("extended-prompt",
    [all...]
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/command/
prompt.py 1 # Extended prompt.
20 import gdb.prompt namespace
24 """Set the extended prompt.
26 Usage: set extended-prompt VALUE
28 Substitutions are applied to VALUE to compute the real prompt.
33 # Add the prompt library's dynamically generated help to the
35 __doc__ = __doc__ + gdb.prompt.prompt_help()
37 set_doc = "Set the extended prompt."
38 show_doc = "Show the extended prompt."
41 super(_ExtendedPrompt, self).__init__("extended-prompt",
    [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);
  /external/autotest/client/common_lib/
pxssh.py 2 This adds methods for login, logout, and expecting the shell prompt.
22 prompt. It does various tricky things to handle many situations in the SSH
25 authentication setup then pxssh won't wait for the password prompt.
27 pxssh uses the shell prompt to synchronize output from the remote host. In
28 order to make this more robust it sets the shell prompt to something more
43 s.prompt() # match the prompt
44 print s.before # print everything before the prompt.
46 s.prompt()
49 s.prompt()
268 def prompt (self, timeout=20): member in class:pxssh
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
Voice.java 66 final VoiceInteractor.Prompt prompt = new VoiceInteractor.Prompt(message); local
67 vi.submitRequest(new VoiceInteractor.CompleteVoiceRequest(prompt, null));
74 final VoiceInteractor.Prompt prompt = new VoiceInteractor.Prompt(message); local
75 vi.submitRequest(new VoiceInteractor.AbortVoiceRequest(prompt, null));
  /libcore/ojluni/src/main/java/javax/security/auth/callback/
PasswordCallback.java 43 private String prompt; field in class:PasswordCallback
56 * Construct a <code>PasswordCallback</code> with a prompt
62 * @param prompt the prompt used to request the password. <p>
67 * @exception IllegalArgumentException if <code>prompt</code> is null or
68 * if <code>prompt</code> has a length of 0.
70 public PasswordCallback(String prompt, boolean echoOn) {
71 if (prompt == null || prompt.length() == 0)
74 this.prompt = prompt
    [all...]
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
prompt.py 1 # Extended prompt utilities.
17 """ Extended prompt library functions."""
110 def substitute_prompt(prompt):
111 "Perform substitutions on PROMPT."
114 plen = len(prompt)
117 if prompt[i] == '\\':
121 cmdch = prompt[i]
126 if i + 1 < plen and prompt[i + 1] == '{':
128 while j < plen and prompt[j] != '}':
131 if j >= plen or prompt[j] != '}'
    [all...]
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
prompt.py 1 # Extended prompt utilities.
17 """ Extended prompt library functions."""
110 def substitute_prompt(prompt):
111 "Perform substitutions on PROMPT."
114 plen = len(prompt)
117 if prompt[i] == '\\':
121 cmdch = prompt[i]
126 if i + 1 < plen and prompt[i + 1] == '{':
128 while j < plen and prompt[j] != '}':
131 if j >= plen or prompt[j] != '}'
    [all...]
  /external/autotest/client/virt/tests/
yum_update.py 4 def internal_yum_update(session, command, prompt, timeout):
10 @param prompt: Machine prompt
18 ["[Ii]s this [Oo][Kk]", prompt],
24 logging.info("Got shell prompt")
  /prebuilts/gdb/darwin-x86/lib/python2.7/
getpass.py 3 getpass(prompt[, stream]) - Prompt for a password, with echo turned off.
26 def unix_getpass(prompt='Password: ', stream=None):
27 """Prompt for a password, with echo turned off.
30 prompt: Written on stream to ask for the input. Default: 'Password: '
31 stream: A writable file object to display the prompt. Defaults to
55 passwd = fallback_getpass(prompt, stream)
71 passwd = _raw_input(prompt, stream, input=input)
83 passwd = fallback_getpass(prompt, stream)
89 def win_getpass(prompt='Password: ', stream=None)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
getpass.py 3 getpass(prompt[, stream]) - Prompt for a password, with echo turned off.
26 def unix_getpass(prompt='Password: ', stream=None):
27 """Prompt for a password, with echo turned off.
30 prompt: Written on stream to ask for the input. Default: 'Password: '
31 stream: A writable file object to display the prompt. Defaults to
55 passwd = fallback_getpass(prompt, stream)
71 passwd = _raw_input(prompt, stream, input=input)
83 passwd = fallback_getpass(prompt, stream)
89 def win_getpass(prompt='Password: ', stream=None)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
getpass.py 3 getpass(prompt[, stream]) - Prompt for a password, with echo turned off.
26 def unix_getpass(prompt='Password: ', stream=None):
27 """Prompt for a password, with echo turned off.
30 prompt: Written on stream to ask for the input. Default: 'Password: '
31 stream: A writable file object to display the prompt. Defaults to
55 passwd = fallback_getpass(prompt, stream)
71 passwd = _raw_input(prompt, stream, input=input)
83 passwd = fallback_getpass(prompt, stream)
89 def win_getpass(prompt='Password: ', stream=None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
getpass.py 3 getpass(prompt[, stream]) - Prompt for a password, with echo turned off.
26 def unix_getpass(prompt='Password: ', stream=None):
27 """Prompt for a password, with echo turned off.
30 prompt: Written on stream to ask for the input. Default: 'Password: '
31 stream: A writable file object to display the prompt. Defaults to
55 passwd = fallback_getpass(prompt, stream)
71 passwd = _raw_input(prompt, stream, input=input)
83 passwd = fallback_getpass(prompt, stream)
89 def win_getpass(prompt='Password: ', stream=None)
    [all...]
  /external/toybox/kconfig/
menu.c 122 struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep)
130 if (prompt) {
131 if (isspace(*prompt)) {
133 while (isspace(*prompt))
134 prompt++;
136 if (current_entry->prompt)
137 prop_warn(prop, "prompt redefined");
138 current_entry->prompt = prop;
140 prop->text = prompt;
145 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep
    [all...]
  /cts/tests/tests/webkit/assets/webkit/
jsprompt.html 19 <title>javascript prompt</title>
23 var res = prompt("testOnJsPrompt");
28 javascript prompt test
  /packages/apps/Music/res/values-keysexposed/
strings.xml 21 <!-- Prompt in dialog when creating a playlist. The user will enter the name of the playlist in a textfield underneath this prompt. -->
23 <!-- Prompt in dialog when renaming a playlist, used when the current name and the new name are the same. The user will enter the new name of the playlist in a textfield underneath this prompt. -->
25 <!-- Prompt in dialog when renaming a playlist, used when the current name the new name are different. The user will enter the new name of the playlist in a textfield underneath this prompt. -->
  /external/e2fsprogs/lib/ss/
prompt.c 2 * prompt.c: Routines for retrieving and setting a prompt.
24 ss_info(sci_idx)->prompt = new_prompt;
29 return(ss_info(sci_idx)->prompt);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/callback/
PasswordCallbackTest.java 33 * javax.security.auth.callback.PasswordCallback#PasswordCallback(String prompt, boolean echoOn)
38 String prompt = "promptTest"; local
41 PasswordCallback pc = new PasswordCallback(prompt, true);
43 assertEquals(prompt, pc.getPrompt());
50 PasswordCallback pc = new PasswordCallback(prompt, false);
52 assertEquals(prompt, pc.getPrompt());
77 String prompt = "promptTest"; local
80 PasswordCallback pc = new PasswordCallback(prompt, true);
124 return new Object[] { new PasswordCallback("prompt", true), p };
  /external/libedit/src/
prompt.h 1 /* $NetBSD: prompt.h,v 1.10 2009/12/30 22:37:40 christos Exp $ */
34 * @(#)prompt.h 8.1 (Berkeley) 6/4/93
38 * el.prompt.h: Prompt printing stuff
48 el_pfunc_t p_func; /* Function to return the prompt */
49 coord_t p_pos; /* position in the line after prompt */
  /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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
iobject.py 33 prompt='Enter Selection'):
59 val = raw_input('%s[1-%d]: ' % (prompt, len(choices)))
78 def get_string(self, prompt, validation_fn=None):
81 val = raw_input('%s: ' % prompt)
90 def get_filename(self, prompt):
94 val = raw_input('%s: %s' % (prompt, val))
111 def get_int(self, prompt):
112 s = self.get_string(prompt, int_val_fn)
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
getpass.cc 25 char *s = getpass("prompt");
32 // CHECK: prompt
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tree_construction/
isindex.dat 17 <isindex name="A" action="B" prompt="C" foo="D">

Completed in 1015 milliseconds

1 2 3 4 5 6 7 8 91011>>