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

1 2 3 4

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
AlertProtocol.java 21 * This class encapsulates the functionality of Alert Protocol.
29 * Defines the severity of alert as warning
33 * Defines the severity of alert as fatal
39 * Defines the description code of the close_notify alert
43 * Defines the description code of the unexpected_message alert
47 * Defines the description code of the bad_record_mac alert
51 * Defines the description code of the decryption_failed alert
55 * Defines the description code of the record_overflow alert
59 * Defines the description code of the decompression_failure alert
63 * Defines the description code of the handshake_failure alert
131 private final byte[] alert = new byte[2]; field in class:AlertProtocol
162 protected void alert(byte level, byte description) { method in class:AlertProtocol
    [all...]
  /external/chromium/chrome/browser/extensions/
alert_apitest.cc 16 ASSERT_TRUE(RunExtensionTest("alert")) << message_;
23 ASCIIToUTF16("alert('This should not crash.');"));
25 AppModalDialog* alert = ui_test_utils::WaitForAppModalDialog(); local
26 ASSERT_TRUE(alert);
27 alert->CloseModalDialog();
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiAPITest.java 104 AlertDialog.Builder alert = new AlertDialog.Builder(this); local
105 alert.setTitle("Input");
106 alert.setMessage("Enter Network ID");
109 alert.setView(input);
110 alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
117 alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
122 alert.show();
124 AlertDialog.Builder alert = new AlertDialog.Builder(this); local
125 alert.setTitle("Input");
126 alert.setMessage("Enter Network ID")
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
notimer-after-unload.js 6 location = "data:text/html,You should have seen one unload alert appear.<script>window.setTimeout('if (window.layoutTestController) layoutTestController.notifyDone();', 100);</script>";
11 function(p) {alert('FAIL: Unexpected Geolocation success callback.');},
12 function(e) {alert('FAIL: Unexpected Geolocation error callback.' + e.code + e.message);},
15 alert("unload-called");
  /external/chromium/net/data/proxy_resolver_v8_unittest/
bindings.js 33 // Call alert with some wonky arguments.
34 alert();
35 alert(null);
36 alert(undefined);
37 alert({foo:'bar'});
40 // to alert in the bindings.
42 alert(new MyObject());
44 alert(e);
dns_fail.js 18 alert(e);
  /external/webkit/LayoutTests/http/tests/appcache/resources/
offline-access.js 14 alert("FAIL, unexpected response: " + ex);
16 alert("FAIL, unexpected error: " + ex);
  /external/webkit/Tools/DumpRenderTree/chromium/
TestShellMac.mm 138 NSAlert* alert = [[[NSAlert alloc] init] autorelease];
139 alert.messageText = @"Attach to me?";
140 alert.informativeText = @"This would probably be a good time to attach your debugger.";
141 [alert addButtonWithTitle:@"OK"];
142 [alert runModal];
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-216320.js 56 if(navigator.appName!="Netscape"){ if(!window.navigator.onLine){ alert(pbc0430); return false; } }
64 alert(pbc0420);
72 alert(pbc0425);
96 alert(pbc0409);
101 alert(pbc0409);
107 alert(pbc0409);
127 alert(pbc0425);
132 alert(pbc0409);
138 alert(pbc0409);
144 alert(pbc0409)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AlertDialogTest.java 36 AlertDialog alert = builder.create(); local
37 alert.show();
39 assertThat(alert.isShowing(), equalTo(true));
41 ShadowAlertDialog shadowAlertDialog = shadowOf(alert);
46 assertThat(ShadowAlertDialog.getLatestAlertDialog(), sameInstance(alert));
80 AlertDialog alert = builder.create(); local
82 ShadowAlertDialog shadowAlertDialog = shadowOf(alert);
97 AlertDialog alert = builder.create(); local
98 ShadowAlertDialog shadowAlertDialog = shadowOf(alert);
109 AlertDialog alert = builder.create() local
120 AlertDialog alert = builder.create(); local
216 AlertDialog alert = builder.create(); local
259 AlertDialog alert = builder.create(); local
289 AlertDialog alert = builder.create(); local
308 AlertDialog alert = builder.create(); local
334 AlertDialog alert = builder.create(); local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmPreference.java 45 // Update the default alert in the system.
61 public void setAlert(Uri alert) {
62 mAlert = alert;
63 if (alert != null) {
90 }.execute(alert);
AlarmKlaxon.java 163 Log.v("AlarmKlaxon.play() " + alarm.id + " alert " + alarm.alert);
167 Uri alert = alarm.alert; local
170 if (alert == null) {
171 alert = RingtoneManager.getDefaultUri(
174 Log.v("Using default alarm: " + alert.toString());
202 mMediaPlayer.setDataSource(this, alert);
207 // The alert may be on the sd card which could be busy right
Alarm.java 61 p.writeParcelable(alert, flags);
122 * Audio alert to play when alarm triggers
125 public static final String ALERT = "alert";
138 ENABLED, VIBRATE, MESSAGE, ALERT };
167 public Uri alert; field in class:Alarm
173 "alert=" + alert +
203 alert = Uri.parse(alertString);
206 // If the database alert is null or it failed to parse, use th
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
MailboxAlarmReceiver.java 37 ExchangeService.alert(context, mailboxId);
  /hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/
FmPresetList.java 142 AlertDialog.Builder alert = new AlertDialog.Builder(this); local
144 alert.setTitle("Rename");
145 alert.setMessage("Rename Station?");
149 alert.setView(input);
151 alert.setPositiveButton("Ok",
161 alert.setNegativeButton("Cancel",
169 alert.show();
  /external/webkit/Tools/MiniBrowser/mac/
BrowserWindowController.m 405 NSAlert* alert = [[NSAlert alloc] init];
411 [alert setMessageText:[NSString stringWithFormat:@"JavaScript alert dialog from %@.", [(NSURL *)cfURL absoluteString]]];
415 [alert setInformativeText:(NSString *)cfMessage];
418 [alert addButtonWithTitle:@"OK"];
420 [alert runModal];
421 [alert release];
426 NSAlert* alert = [[NSAlert alloc] init];
432 [alert setMessageText:[NSString stringWithFormat:@"JavaScript confirm dialog from %@.", [(NSURL *)cfURL absoluteString]]];
436 [alert setInformativeText:(NSString *)cfMessage]
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_record.c 271 * @alert: Buffer for returning an alert value on failure
280 u8 *out_data, size_t *out_len, u8 *alert)
311 *alert = TLS_ALERT_PROTOCOL_VERSION;
319 *alert = TLS_ALERT_RECORD_OVERFLOW;
342 *alert = TLS_ALERT_UNEXPECTED_MESSAGE;
351 *alert = TLS_ALERT_INTERNAL_ERROR;
359 *alert = TLS_ALERT_DECRYPTION_FAILED;
368 * TLS v1.0 defines different alert values for various
370 * use the same bad_record_mac alert regardless of th
    [all...]
tlsv1_client.c 145 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; local
185 in_msg, &in_msg_len, &alert);
189 tls_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
312 u8 alert, *out_pos, ct; local
323 alert = TLS_ALERT_INTERNAL_ERROR;
337 alert = TLS_ALERT_INTERNAL_ERROR;
343 out_pos, &olen, &alert);
359 alert = TLS_ALERT_INTERNAL_ERROR;
369 wpa_printf(MSG_DEBUG, "TLSv1: Alert "
371 alert = TLS_ALERT_DECODE_ERROR
    [all...]
tlsv1_server.c 112 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
131 in_msg, &in_msg_len, &alert);
135 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
142 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
172 /* Avoid alert loops */
173 wpa_printf(MSG_DEBUG, "TLSv1: Drop alert loop");
239 u8 alert, *out_end, *out_pos, ct; local
251 out_pos, &olen, &alert);
255 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
262 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmap.java 113 AlertDialog alert = builder.create(); local
114 alert.show();
  /external/webkit/LayoutTests/http/tests/cookies/resources/
resetCookies.js 13 alert("Attempt to clear " + url + " cookies might have failed. Test results might be off from here on out. (" + e + ")");
  /packages/apps/Nfc/src/com/android/nfc/handover/
ConfirmConnectActivity.java 61 AlertDialog alert = builder.create(); local
62 alert.show();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
NdefPushReceiverActivity.java 141 AlertDialog alert = (AlertDialog) dialog; local
142 alert.setTitle(isMatch
145 alert.setMessage(isMatch
  /packages/apps/Phone/src/com/android/phone/
SpecialCharSequenceMgr.java 233 AlertDialog alert = new AlertDialog.Builder(context) local
239 alert.getWindow().setType(WindowManager.LayoutParams.TYPE_PRIORITY_PHONE);
240 alert.show();
  /external/webkit/LayoutTests/fast/url/script-tests/
standard-url.js 64 ["javascript:alert(\\t 1 \\n\\r)", "javascript:alert( 1 )"],
65 ['javascript:alert(" \1 \u03B2 ")', 'javascript:alert(" %01 %CE%B2 ")'],

Completed in 555 milliseconds

1 2 3 4