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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
TextInputCallbackTest.java 40 text = new TextInputCallback("prompt");
41 assertEquals("prompt", text.getPrompt());
42 text = new TextInputCallback("prompt", "defaultText");
43 assertEquals("prompt", text.getPrompt());
51 * Test for TextOutputCallback(String prompt,String defaultText) ctor
52 * if prompt or defaultText is null or empty then expected IAE
57 fail("Prompt and DefaultText should not be empty");
62 fail("Prompt and DefaultText should not be null");
67 fail("Prompt and DefaultText should not be null");
72 text = new TextInputCallback("prompt", "");
    [all...]
NameCallbackTest.java 40 nc = new NameCallback("prompt", "defaultName");
41 assertEquals("prompt", nc.getPrompt());
49 * prompt and message is null and empty.
54 fail("Prompt and DefaultName should not be empty");
59 fail("Prompt and DefaultName should not null");
63 nc = new NameCallback("Prompt", "");
64 fail("Prompt and DefaultName should not be empty");
68 nc = new NameCallback("Prompt", null);
69 fail("Prompt and DefaultName should not null");
ChoiceCallbackTest.java 36 String prompt = "prompt"; field in class:ChoiceCallbackTest
48 cb = new ChoiceCallback(prompt, choices, defaultChoice, true);
49 assertEquals(this.prompt, cb.getPrompt());
59 cb = new ChoiceCallback(prompt, choices, defaultChoice, false);
72 cb = new ChoiceCallback(prompt, null, defaultChoice, true);
84 cb = new ChoiceCallback(prompt, choices, -1, true);
89 cb = new ChoiceCallback(prompt, new String[0], defaultChoice, true);
101 cb = new ChoiceCallback(prompt, choices, 5, true);
106 cb = new ChoiceCallback(prompt, choices, 2, true)
    [all...]
PasswordCallbackTest.java 38 pc = new PasswordCallback("prompt", true);
39 assertEquals("prompt", pc.getPrompt());
59 fail("Prompt and DefaultName should not be empty");
66 fail("Prompt and DefaultName should not null");
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
RealmCallbackTest.java 36 "Another prompt",
37 "Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long S (…)
    [all...]
RealmChoiceCallbackTest.java 36 "Another prompt",
37 "Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long String for prompt Long S (…)
    [all...]
  /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...]
  /cts/tests/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/webkit/LayoutTests/dom/html/level2/html/
HTMLIsIndexElement01.html 9 <ISINDEX PROMPT="New Employee: ">
11 <ISINDEX PROMPT="Old Employee: ">
HTMLIsIndexElement02.html 9 <ISINDEX PROMPT="New Employee: ">
11 <ISINDEX PROMPT="Old Employee: ">
HTMLIsIndexElement03.html 9 <ISINDEX PROMPT="New Employee: ">
11 <ISINDEX PROMPT="Old Employee: ">
  /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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketUserauthInfoRequest.java 24 String prompt[]; field in class:PacketUserauthInfoRequest
45 prompt = new String[numPrompts];
50 prompt[i] = tr.readString();
85 return prompt;
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-attrs/
dillo 33 prompt
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
InteractiveCallback.java 29 * newlines. Then for each prompt in turn, the client SHOULD display the
30 * prompt and read the user input. The name and instruction fields MAY be
32 * prompt field(s) MUST NOT be empty strings.
47 * @param prompt
51 * each prompt, the corresponding echo field indicates whether or
56 public String[] replyToChallenge(String name, String instruction, int numPrompts, String[] prompt, boolean[] echo)
  /external/webkit/Source/WebCore/inspector/front-end/
DatabaseQueryView.js 40 this.promptElement.className = "database-query-prompt";
45 this.prompt = new WebInspector.TextPrompt(this.promptElement, this.completions.bind(this), " ");
55 if (!this.prompt.isCaretInsidePrompt() && window.getSelection().isCollapsed)
56 this.prompt.moveCaretToEndOfPrompt();
109 this.prompt.clearAutoComplete();
114 if (!this.prompt.isCaretInsidePrompt() && window.getSelection().isCollapsed)
115 this.prompt.moveCaretToEndOfPrompt();
116 this.prompt.autoCompleteSoon();
127 this.prompt.clearAutoComplete(true);
129 var query = this.prompt.text
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ConsoleTest.java 73 String prompt = new String(((ByteArrayOutputStream)out).toByteArray()); local
74 assertEquals("1 hello", prompt);
80 String prompt = new String(((ByteArrayOutputStream)out).toByteArray()); local
81 assertEquals("03 21,1983", prompt);
99 String prompt = new String(((ByteArrayOutputStream)out).toByteArray()); local
100 assertEquals("2 Please input a line of string to test:", prompt);
119 String prompt = new String(((ByteArrayOutputStream)out).toByteArray()); local
120 assertEquals("3", prompt);
  /external/qemu/
readline.h 36 char prompt[256]; member in struct:ReadLineState
47 void readline_start(ReadLineState *rs, const char *prompt, int read_password,
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLIsIndexElement01.xhtml 11 <isindex prompt="New Employee: "/>
13 <isindex prompt="Old Employee: "/>
HTMLIsIndexElement02.xhtml 11 <isindex prompt="New Employee: "/>
13 <isindex prompt="Old Employee: "/>
HTMLIsIndexElement03.xhtml 11 <isindex prompt="New Employee: "/>
13 <isindex prompt="Old Employee: "/>
  /libcore/luni/src/test/java/tests/api/javax/security/auth/
PasswordCallbackTest.java 31 * javax.security.auth.callback.PasswordCallback#PasswordCallback(String prompt, boolean echoOn)
36 String prompt = "promptTest"; local
39 PasswordCallback pc = new PasswordCallback(prompt, true);
41 assertEquals(prompt, pc.getPrompt());
48 PasswordCallback pc = new PasswordCallback(prompt, false);
50 assertEquals(prompt, pc.getPrompt());
75 String prompt = "promptTest"; local
78 PasswordCallback pc = new PasswordCallback(prompt, true);
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/serialization/
ChoiceCallbackTest.java 40 String prompt = "prompt"; local
44 return new Object[] {new ChoiceCallback(prompt, choices, defaultChoice, true)};
  /frameworks/base/core/java/android/webkit/
JsPromptResult.java 21 * Public class for handling JavaScript prompt requests. The WebChromeClient will receive a
24 * dialog prompt back to the WebView instance. The client can call cancel() to cancel the dialog or
28 // String result of the prompt

Completed in 873 milliseconds

1 2 3 4 5 6 7 8 91011>>