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

1 2 3 4 5 6 7

  /art/test/048-server-socket/src/
Main.java 28 } catch (InterruptedException ie) {
29 ie.printStackTrace();
  /dalvik/tests/048-server-socket/src/
Main.java 14 } catch (InterruptedException ie) {
15 ie.printStackTrace();
  /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)
  /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/llvm/lib/CodeGen/
LiveInterval.cpp 102 const_iterator ie = end(); local
110 i = std::upper_bound(i, ie, j->start);
125 while (i != ie) {
128 std::swap(ie, je);
148 const_iterator IE = end();
149 if (I == IE)
171 std::swap(IE, JE);
  /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...]
  /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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.search/
search_pred.pass.cpp 85 int ie[] = {1, 2, 3}; local
86 assert(std::search(Iter1(ib), Iter1(ib+sb), Iter2(ie), Iter2(ie+3), count_equal()) == Iter1(ib+4));
search.pass.cpp 46 int ie[] = {1, 2, 3}; local
47 assert(std::search(Iter1(ib), Iter1(ib+sb), Iter2(ie), Iter2(ie+3)) == Iter1(ib+4));
  /external/chromium/chrome/browser/importer/
importer_list.cc 26 // IE always exists and doesn't have multiple profiles.
27 importer::SourceProfile* ie = new importer::SourceProfile(); local
28 ie->importer_name = l10n_util::GetStringUTF16(IDS_IMPORT_FROM_IE);
29 ie->importer_type = importer::MS_IE;
30 ie->source_path.clear();
31 ie->app_path.clear();
32 ie->services_supported = importer::HISTORY | importer::FAVORITES |
34 profiles->push_back(ie);
  /external/chromium_org/chrome/browser/importer/
importer_list.cc 29 // IE always exists and doesn't have multiple profiles.
30 importer::SourceProfile* ie = new importer::SourceProfile; local
31 ie->importer_name = l10n_util::GetStringUTF16(IDS_IMPORT_FROM_IE);
32 ie->importer_type = importer::TYPE_IE;
33 ie->source_path.clear();
34 ie->app_path.clear();
35 ie->services_supported = importer::HISTORY | importer::FAVORITES |
37 profiles->push_back(ie);
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 162 int ie; member in struct:Test1::E
  /external/wpa_supplicant_8/src/p2p/
p2p_pd.c 72 /* WPS IE with Config Methods attribute */
99 struct wpabuf *ie; local
103 ie = p2p_group_get_wfd_ie(g);
104 if (ie) {
105 wfd_ie = ie;
120 /* WPS IE with Config Methods attribute */
p2p_invitation.c 32 struct wpabuf *ie; local
36 ie = p2p_group_get_wfd_ie(g);
37 if (ie) {
38 wfd_ie = ie;
109 struct wpabuf *ie; local
113 ie = p2p_group_get_wfd_ie(g);
114 if (ie) {
115 wfd_ie = 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...]
unique_copy.pass.cpp 59 const int ie[] = {0, 0, 1, 0}; local
60 const unsigned se = sizeof(ie)/sizeof(ie[0]);
62 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je));
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...]
  /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/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) {
  /development/tools/emulator/test-apps/GpsLocationTest/src/com/android/emulator/gps/test/
GpsLocationTest.java 65 }catch ( InterruptedException ie){
66 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/wpa_supplicant_8/src/common/
ieee802_11_common.c 81 /* Wi-Fi Protected Setup (WPS) IE */
97 /* Wi-Fi Alliance - P2P IE */
102 /* Wi-Fi Alliance - WFD IE */
150 * @len: Length of IE buffer in octets
339 const u8 *end, *pos, *ie; local
343 ie = NULL;
350 ie = pos;
356 if (ie == NULL)
357 return NULL; /* No specified vendor IE found */
  /external/wpa_supplicant_8/src/rsn_supp/
preauth.c 442 struct wpa_ie_data ie; local
452 if (wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ie))
457 !(ie.capabilities & WPA_CAPABILITY_PREAUTH)))
462 ie.capabilities & WPA_CAPABILITY_PREAUTH);
  /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...]

Completed in 533 milliseconds

1 2 3 4 5 6 7