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

1 2 3 4 5 6 7 8 91011>>

  /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);
  /external/robolectric/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;
  /libcore/luni/src/main/java/javax/security/auth/callback/
PasswordCallback.java 31 private String prompt; field in class:PasswordCallback
37 private void setPrompt(String prompt) throws IllegalArgumentException {
38 if (prompt == null || prompt.length() == 0) {
39 throw new IllegalArgumentException("Invalid prompt");
41 this.prompt = prompt;
47 * @param prompt
52 public PasswordCallback(String prompt, boolean echoOn) {
53 setPrompt(prompt);
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/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/gcc/darwin-x86/arm/arm-eabi-4.8/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/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/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/gcc/darwin-x86/mips/mips64el-linux-android-4.9/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/gcc/darwin-x86/x86/x86_64-linux-android-4.9/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/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/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...]