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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome_frame/tools/test/page_cycler/
cf_cycler.py 6 """Automates IE to visit a list of web sites while running CF in full tab mode.
8 The page cycler automates IE and navigates it to a series of URLs. It is
40 """Starts up IE, makes it visible and returns the automation object.
43 The IE automation object.
45 ie = win32com.client.Dispatch("InternetExplorer.Application")
46 ie.visible = 1
47 win32gui.SetForegroundWindow(ie.HWND)
48 return ie
50 def RunTest(url, ie):
51 """Loads |url| into the InternetExplorer.Application instance in |ie|
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
wpa_ie.c 2 * wpa_supplicant - WPA/RSN IE and KDE processing
20 * wpa_parse_wpa_ie - Parse WPA/RSN IE
21 * @wpa_ie: Pointer to WPA or RSN IE
22 * @wpa_ie_len: Length of the WPA/RSN IE
26 * Parse the contents of WPA or RSN IE and write the parsed data into data.
118 wpa_printf(MSG_DEBUG, "RSN: Too short IE buffer (%lu bytes)",
226 * wpa_gen_wpa_ie - Generate WPA/RSN IE based on current security policy
228 * @wpa_ie: Pointer to memory area for the generated WPA/RSN IE
229 * @wpa_ie_len: Maximum length of the generated WPA/RSN IE
230 * Returns: Length of the generated WPA/RSN IE or -1 on failur
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/
rotate.pass.cpp 111 int ie[] = {0, 1, 2, 3, 4}; local
112 const unsigned se = sizeof(ie)/sizeof(ie[0]);
113 r = std::rotate(Iter(ie), Iter(ie), Iter(ie+se));
114 assert(base(r) == ie+se);
115 assert(ie[0] == 0);
116 assert(ie[1] == 1);
117 assert(ie[2] == 2)
313 std::unique_ptr<int> ie[5]; local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps.c 100 wpa_hexdump_buf(MSG_DEBUG, "WPS: WPS IE from (Re)AssocReq",
103 wpa_printf(MSG_DEBUG, "WPS: Failed to parse WPS IE "
107 "in (Re)AssocReq WPS IE");
109 wpa_printf(MSG_DEBUG, "WPS: Request Type (from WPS IE "
110 "in (Re)AssocReq WPS IE): %d",
218 * wps_is_selected_pbc_registrar - Check whether WPS IE indicates active PBC
219 * @msg: WPS IE contents from Beacon or Probe Response frame
279 * wps_is_selected_pin_registrar - Check whether WPS IE indicates active PIN
280 * @msg: WPS IE contents from Beacon or Probe Response frame
295 * wps_is_addr_authorized - Check whether WPS IE authorizes MAC addres
407 struct wpabuf *ie; local
441 struct wpabuf *ie; local
487 struct wpabuf *ie; local
    [all...]
  /art/test/033-class-init-deadlock/src/
Main.java 34 try { Thread.sleep(1000); } catch (InterruptedException ie) { }
37 try { Thread.sleep(6000); } catch (InterruptedException ie) { }
52 try { Thread.sleep(3000); } catch (InterruptedException ie) { }
62 try { Thread.sleep(3000); } catch (InterruptedException ie) { }
  /art/test/059-finalizer-throw/src/
Main.java 48 } catch (InterruptedException ie) {
49 System.err.println(ie);
56 } catch (InterruptedException ie) {
57 System.err.println(ie);
  /dalvik/tests/033-class-init-deadlock/src/
Main.java 20 try { Thread.sleep(1000); } catch (InterruptedException ie) { }
23 try { Thread.sleep(6000); } catch (InterruptedException ie) { }
38 try { Thread.sleep(3000); } catch (InterruptedException ie) { }
48 try { Thread.sleep(3000); } catch (InterruptedException ie) { }
  /dalvik/tests/059-finalizer-throw/src/
Main.java 34 } catch (InterruptedException ie) {
35 System.err.println(ie);
42 } catch (InterruptedException ie) {
43 System.err.println(ie);
  /external/wpa_supplicant_8/wpa_supplicant/
wifi_display.c 38 struct wpabuf *ie, *buf; local
41 wpa_printf(MSG_DEBUG, "WFD: Update WFD IE");
45 "include WFD IE");
69 * WFD IE is included in number of management frames. Two different
127 ie = wifi_display_encaps(buf);
128 wpa_hexdump_buf(MSG_DEBUG, "WFD: WFD IE for Beacon", ie);
129 p2p_set_wfd_ie_beacon(global->p2p, ie);
131 ie = wifi_display_encaps(buf);
132 wpa_hexdump_buf(MSG_DEBUG, "WFD: WFD IE for (Re)Association Request"
    [all...]
  /art/test/030-bad-finalizer/src/
BadFinalizer.java 24 } catch (InterruptedException ie) {
25 System.out.println("Snooze: " + ie.getMessage());
  /dalvik/tests/030-bad-finalizer/src/
BadFinalizer.java 10 } catch (InterruptedException ie) {
11 System.out.println("Snooze: " + ie.getMessage());
  /frameworks/compile/mclinker/lib/LD/
ELFSegment.cpp 43 for (const_sect_iterator it = begin(), ie = end(); it != ie; ++it) {
57 const_sect_iterator it = begin(), ie = end(); local
58 for (; it != ie; ++it) {
62 if (it == ie)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
unique.pass.cpp 56 int ie[] = {0, 0, 1, 0}; local
57 const unsigned se = sizeof(ie)/sizeof(ie[0]);
58 r = std::unique(Iter(ie), Iter(ie+se));
59 assert(base(r) == ie + 3);
60 assert(ie[0] == 0);
61 assert(ie[1] == 1);
62 assert(ie[2] == 0);
130 Ptr ie[4] local
    [all...]
  /art/test/036-finalizer/src/
Main.java 29 } catch (InterruptedException ie) {
30 System.out.println("Snooze: " + ie.getMessage());
54 } catch (InterruptedException ie) {
55 throw new RuntimeException(ie);
82 } catch (InterruptedException ie) {
83 throw new RuntimeException(ie);
  /dalvik/tests/036-finalizer/src/
Main.java 15 } catch (InterruptedException ie) {
16 System.out.println("Snooze: " + ie.getMessage());
40 } catch (InterruptedException ie) {
41 throw new RuntimeException(ie);
68 } catch (InterruptedException ie) {
69 throw new RuntimeException(ie);
  /external/clang/lib/Frontend/
TextDiagnosticBuffer.cpp 67 for (const_iterator it = err_begin(), ie = err_end(); it != ie; ++it)
70 for (const_iterator it = warn_begin(), ie = warn_end(); it != ie; ++it)
73 for (const_iterator it = note_begin(), ie = note_end(); it != ie; ++it)
  /art/test/039-join-main/src/
Main.java 29 catch (InterruptedException ie) {}
48 } catch (InterruptedException ie) {
  /art/test/050-sync-test/src/
Main.java 40 } catch (InterruptedException ie) {
42 ie.printStackTrace();
57 } catch (InterruptedException ie) {
59 ie.printStackTrace();
69 } catch (InterruptedException ie) {
71 ie.printStackTrace();
160 } catch (InterruptedException ie) {
174 } catch (InterruptedException ie) {
  /dalvik/tests/039-join-main/src/
Main.java 15 catch (InterruptedException ie) {}
34 } catch (InterruptedException ie) {
  /dalvik/tests/050-sync-test/src/
Main.java 26 } catch (InterruptedException ie) {
28 ie.printStackTrace();
43 } catch (InterruptedException ie) {
45 ie.printStackTrace();
55 } catch (InterruptedException ie) {
57 ie.printStackTrace();
146 } catch (InterruptedException ie) {
160 } catch (InterruptedException ie) {
  /external/clang/lib/Driver/
Job.cpp 28 for (iterator it = begin(), ie = end(); it != ie; ++it)
  /art/test/053-wait-some/src/
Main.java 41 } catch (InterruptedException ie) {
42 ie.printStackTrace();
51 } catch (InterruptedException ie) {
52 ie.printStackTrace();
  /dalvik/tests/053-wait-some/src/
Main.java 27 } catch (InterruptedException ie) {
28 ie.printStackTrace();
37 } catch (InterruptedException ie) {
38 ie.printStackTrace();
  /external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
TestThread.java 87 } catch (InterruptedException ie) {
89 ie.printStackTrace();
134 } catch (InterruptedException ie) {
135 ie.printStackTrace();
  /external/llvm/lib/Support/
DAGDeltaAlgorithm.cpp 130 ie = S.end(); it != ie; ++it)
191 ie = Changes.end(); it != ie; ++it) {
196 ie = Dependencies.end(); it != ie; ++it) {
203 ie = Changes.end(); it != ie; ++it)
215 ie = pred_end(Change); it != ie; ++it)
    [all...]

Completed in 1086 milliseconds

1 2 3 4 5 6 7 8 91011>>