HomeSort by relevance Sort by last modified time
    Searched refs:prompt (Results 151 - 175 of 372) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.cpp 255 bool Chrome::runJavaScriptPrompt(LocalFrame* frame, const String& prompt, const String& defaultValue, String& result)
257 if (!canRunModalIfDuringPageDismissal(m_page, ChromeClient::PromptDialog, prompt))
267 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, prompt);
268 bool ok = m_client->runJavaScriptPrompt(frame, prompt, defaultValue, result);
  /external/chromium_org/third_party/libxml/src/
xmlcatalog.c 56 * @prompt: the prompt value
64 xmlShellReadline(const char *prompt) {
69 line_read = readline (prompt);
81 if (prompt != NULL)
82 fprintf(stdout, "%s", prompt);
  /external/libxml2/
xmlcatalog.c 56 * @prompt: the prompt value
64 xmlShellReadline(const char *prompt) {
69 line_read = readline (prompt);
81 if (prompt != NULL)
82 fprintf(stdout, "%s", prompt);
  /external/vixl/src/a64/
debugger-a64.h 172 char* ReadCommandLine(const char* prompt, char* buffer, int length);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_register.py 48 def __call__(self, prompt=''):
73 # patching the password prompt
75 def _getpass(prompt):
134 def _no_way(prompt=''):
135 raise AssertionError(prompt)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_register.py 48 def __call__(self, prompt=''):
73 # patching the password prompt
75 def _getpass(prompt):
134 def _no_way(prompt=''):
135 raise AssertionError(prompt)
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContentsClientBridge.java 264 void confirmJsResult(int id, String prompt) {
266 nativeConfirmJsResult(mNativeContentsClientBridge, id, prompt);
283 String prompt);
  /external/libedit/examples/
tc1.c 74 static char *prompt(EditLine *);
78 prompt(EditLine *el __attribute__((__unused__))) function
157 el_set(el, EL_PROMPT_ESC, prompt, '\1');/* Set the prompt function */
  /packages/apps/Music/src/com/android/music/
CreatePlaylist.java 54 mPrompt = (TextView)findViewById(R.id.prompt);
71 String prompt = String.format(promptformat, defaultname); local
72 mPrompt.setText(prompt);
RenamePlaylist.java 55 mPrompt = (TextView)findViewById(R.id.prompt);
84 String prompt = String.format(promptformat, mOriginalName, defaultname); local
85 mPrompt.setText(prompt);
  /prebuilts/tools/common/m2/repository/org/sonatype/gshell/gshell-io/2.4/
gshell-io-2.4.jar 
  /external/chromium_org/chrome/browser/extensions/
external_install_ui.cc 104 scoped_refptr<ExtensionInstallPrompt::Prompt> prompt_;
174 scoped_refptr<ExtensionInstallPrompt::Prompt> prompt);
193 scoped_refptr<ExtensionInstallPrompt::Prompt> prompt_;
204 scoped_refptr<ExtensionInstallPrompt::Prompt> prompt) {
218 service.get(), extension, delegate, prompt);
246 prompt_ = new ExtensionInstallPrompt::Prompt(
282 // to show a prompt without webstore data.
465 scoped_refptr<ExtensionInstallPrompt::Prompt> prompt
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
ModalDialogTest.java 69 assertTrue("JavaScript execution should continue after closing prompt.",
88 assertTrue("JavaScript execution should continue after closing prompt.",
137 * Verifies that modal prompt-dialogs display and the result is returned.
145 executeJavaScriptAndWaitForDialog("prompt('Android', 'default');");
150 // Set the text in the prompt field of the dialog.
154 EditText prompt = (EditText) jsDialog.getDialogForTest().findViewById(
156 if (prompt == null) return false;
157 prompt.setText(promptText);
161 assertTrue("Failed to find prompt view in prompt dialog.", result)
    [all...]
  /external/lldb/test/pexpect-2.4/examples/
hive.py 8 each host to return the shell command line prompt. The shell prompt is used to
99 default. When Hive first logs into a host it sets a special shell prompt
106 CMD (? for help) > :prompt
114 return with the special shell prompt pattern that Hive uses to synchronize.
125 prompt and thus consumes all input from all targetted hosts.
127 :prompt
129 force each host to reset command line prompt to the special pattern used to
131 where Hive would not know the prompt to match.
254 elif cmd==':prompt'
    [all...]
  /external/chromium_org/chrome/browser/download/
download_danger_prompt_browsertest.cc 36 // navigations, the constrained prompt might be dismissed when the navigation
55 // At the end of each test, we expect no more activity from the prompt. The
56 // prompt shouldn't exist anymore either.
68 DownloadDangerPrompt* prompt() { return prompt_; } function in class:DownloadDangerPromptTest
  /external/chromium_org/third_party/openssl/openssl/apps/
openssl.c 230 MS_STATIC const char *prompt; local
400 prompt=">";
401 else prompt="OpenSSL> ";
402 fputs(prompt,stdout);
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa.h 346 int (*cb)(char *buf, int len, const char *prompt, int verify),
349 int (*cb)(char *buf, int len, const char *prompt, int verify),
353 int (*cb)(char *buf, int len, const char *prompt,
356 int (*cb)(char *buf, int len, const char *prompt,
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
rsa.h 346 int (*cb)(char *buf, int len, const char *prompt, int verify),
349 int (*cb)(char *buf, int len, const char *prompt, int verify),
353 int (*cb)(char *buf, int len, const char *prompt,
356 int (*cb)(char *buf, int len, const char *prompt,
  /external/chromium_org/third_party/sqlite/src/contrib/
sqlitecon.tcl 2 # a prompt string, a title to set a new top-level window, and the SQLite
35 # Create a console widget named $w. The prompt string is $prompt.
39 proc sqlitecon::create {w prompt title db} {
53 sqlitecon::create_child $w $prompt $w.mb.edit.m
62 proc sqlitecon::create_child {w prompt editmenu} {
83 set v(prompt) $prompt
85 set v(plength) [string length $v(prompt)]
93 $w.t insert end $v(prompt)
    [all...]
  /external/e2fsprogs/e2fsck/
problem.c 49 static const char *prompt[] = { variable
50 N_("(no prompt)"), /* 0 */
551 /* Inconsistency can't be fixed prompt */
563 /* Bad primary block prompt */
673 /* Suppress messages prompt */
    [all...]
  /external/openssl/apps/
openssl.c 231 MS_STATIC const char *prompt; local
401 prompt=">";
402 else prompt="OpenSSL> ";
403 fputs(prompt,stdout);
  /external/openssl/crypto/rsa/
rsa.h 346 int (*cb)(char *buf, int len, const char *prompt, int verify),
349 int (*cb)(char *buf, int len, const char *prompt, int verify),
353 int (*cb)(char *buf, int len, const char *prompt,
356 int (*cb)(char *buf, int len, const char *prompt,
  /external/openssl/include/openssl/
rsa.h 346 int (*cb)(char *buf, int len, const char *prompt, int verify),
349 int (*cb)(char *buf, int len, const char *prompt, int verify),
353 int (*cb)(char *buf, int len, const char *prompt,
356 int (*cb)(char *buf, int len, const char *prompt,
  /external/srec/srec/include/
comp_stats.h 110 void print_cs_clock(CS_CLOCK *c, float num_seconds, PFile* fp, char *prompt, char *item_name);
  /frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
ConfirmDialog.java 73 mAlertParams.mTitle = getText(R.string.prompt);

Completed in 3352 milliseconds

1 2 3 4 5 67 8 91011>>