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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/iExploder/iexploder-1.3.2/tools/
showtest.rb 30 ie = IExploder.new($HTML_MAX_TAGS, $HTML_MAX_ATTRS, $CSS_MAX_PROPS)
31 ie.readTagFiles()
38 ie.test_num = ARGV[0].to_i
39 ie.subtest_num = ARGV[1].to_i || 0
40 ie.lookup_mode = 1
41 ie.setRandomSeed
43 puts ie.buildPage()
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/
iexploder.cgi 23 ie = IExploder.new($CONFIG_PATH)
25 ie.cgi_url=ENV['SCRIPT_NAME'] || '?'
26 ie.browser=ENV['HTTP_USER_AGENT'] || 'unknown'
27 ie.test_num = cgi.params['t'][0].to_i
28 ie.subtest_data = cgi.params['s'][0] || nil
29 ie.random_mode = cgi.params['r'][0]
30 ie.lookup_mode = cgi.params['l'][0]
31 ie.stop_num = cgi.params['x'][0] || nil
32 ie.setRandomSeed()
36 header_options = ie.buildHeaders(mime_type
    [all...]
webserver.rb 31 ie = $INSTANCE.dup
32 ie.test_num = request.query['t'].to_i || 0
33 ie.subtest_data = request.query['s'] || nil
34 ie.random_mode = request.query['r']
35 ie.lookup_mode = request.query['l']
36 ie.claimed_browser = request.query['b'] || nil
37 ie.stop_num = request.query['x'] || nil
51 ie.browser = user_agent
52 ie.setRandomSeed()
57 for (key, value) in ie.buildHeaders(mime_type
    [all...]
  /external/webkit/Tools/iExploder/iexploder-1.3.2/htdocs/
iexploder.cgi 31 ie = IExploder.new($HTML_MAX_TAGS, $HTML_MAX_ATTRS, $CSS_MAX_PROPS)
32 ie.readTagFiles()
35 ie.url=ENV['SCRIPT_NAME'] || '?'
36 ie.test_num = cgi.params['test'][0].to_i
37 ie.subtest_num = cgi.params['subtest'][0].to_i || 0
38 ie.random_mode = cgi.params['random'][0]
39 ie.lookup_mode = cgi.params['lookup'][0]
40 ie.stop_num = cgi.params['stop'][0].to_i || 0
41 ie.setRandomSeed
44 ie.buildPage(
    [all...]
webserver.rb 49 ie = $ie_preload.dup
50 ie.test_num = req.query['test'].to_i
51 ie.subtest_num = req.query['subtest'].to_i || 0
52 ie.random_mode = req.query['random']
53 ie.lookup_mode = req.query['lookup']
54 ie.stop_num = req.query['stop'].to_i
55 ie.setRandomSeed
58 res.body = ie.buildPage()
  /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.
119 wpa_printf(MSG_DEBUG, "RSN: Too short IE buffer (%lu bytes)",
230 * wpa_gen_wpa_ie - Generate WPA/RSN IE based on current security policy
232 * @wpa_ie: Pointer to memory area for the generated WPA/RSN IE
233 * @wpa_ie_len: Maximum length of the generated WPA/RSN IE
234 * Returns: Length of the generated WPA/RSN IE or -1 on failur
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/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...]
  /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...]
  /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)
  /external/llvm/lib/Option/
ArgList.cpp 48 for (iterator it = begin(), ie = end(); it != ie; ) {
51 ie = end();
60 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
68 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
80 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
95 for (const_iterator it = begin(), ie = end(); it != ie; ++it)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/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...]
unique_pred.pass.cpp 74 int ie[] = {0, 0, 1, 0}; local
75 const unsigned se = sizeof(ie)/sizeof(ie[0]);
77 r = std::unique(Iter(ie), Iter(ie+se), count_equal());
78 assert(base(r) == ie + 3);
79 assert(ie[0] == 0);
80 assert(ie[1] == 1);
81 assert(ie[2] == 0);
164 Ptr ie[4] local
    [all...]
  /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)
  /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 29 for (iterator it = begin(), ie = end(); it != ie; ++it)
ArgList.cpp 49 for (iterator it = begin(), ie = end(); it != ie; ) {
52 ie = end();
61 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
69 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
81 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
95 for (const_iterator it = begin(), ie = end(); it != ie; ++it)
    [all...]
  /dalvik/tests/053-wait-some/src/
Main.java 27 } catch (InterruptedException ie) {
28 ie.printStackTrace();
37 } catch (InterruptedException ie) {
38 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...]
  /dalvik/tests/068-classloader/src/
Main.java 83 } catch (InstantiationException ie) {
84 System.err.println("newInstance failed: " + ie);
154 } catch (InstantiationException ie) {
155 System.err.println("newInstance failed: " + ie);
201 } catch (InstantiationException ie) {
202 System.err.println("newInstance failed: " + ie);
249 } catch (InstantiationException ie) {
250 System.err.println("newInstance failed: " + ie);
295 } catch (InstantiationException ie) {
296 System.err.println("newInstance failed: " + ie);
    [all...]

Completed in 432 milliseconds

1 2 3 4 5 6 7 8 91011>>