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

1 2 3 4 5 6 7 8 910

  /art/test/053-wait-some/src/
Main.java 41 } catch (InterruptedException ie) {
42 ie.printStackTrace();
51 } catch (InterruptedException ie) {
52 ie.printStackTrace();
  /external/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/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/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);
147 const_iterator IE = end();
148 if (I == IE)
170 std::swap(IE, JE);
  /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_org/chrome/browser/importer/
importer_list.cc 30 // IE always exists and doesn't have multiple profiles.
31 importer::SourceProfile* ie = new importer::SourceProfile; local
32 ie->importer_name = l10n_util::GetStringUTF16(IDS_IMPORT_FROM_IE);
33 ie->importer_type = importer::TYPE_IE;
34 ie->source_path.clear();
35 ie->app_path.clear();
36 ie->services_supported = importer::HISTORY | importer::FAVORITES |
38 profiles->push_back(ie);
  /external/wpa_supplicant_8/wpa_supplicant/
wifi_display.c 41 struct wpabuf *ie, *buf; local
47 wpa_printf(MSG_DEBUG, "WFD: Update WFD IE");
51 "include WFD IE");
75 * WFD IE is included in number of management frames. Two different
133 ie = wifi_display_encaps(buf);
134 wpa_hexdump_buf(MSG_DEBUG, "WFD: WFD IE for Beacon", ie);
135 p2p_set_wfd_ie_beacon(global->p2p, ie);
137 ie = wifi_display_encaps(buf);
138 wpa_hexdump_buf(MSG_DEBUG, "WFD: WFD IE for (Re)Association Request"
    [all...]
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 162 int ie; member in struct:Test1::E
  /external/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...]
unique_copy_pred.pass.cpp 78 const int ie[] = {0, 0, 1, 0}; local
79 const unsigned se = sizeof(ie)/sizeof(ie[0]);
82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal());
  /external/wpa_supplicant_8/src/p2p/
p2p_pd.c 76 /* WPS IE with Config Methods attribute */
106 struct wpabuf *ie; local
110 ie = p2p_group_get_wfd_ie(g);
111 if (ie) {
112 wfd_ie = ie;
130 /* WPS IE with Config Methods attribute */
p2p_invitation.c 34 struct wpabuf *ie; local
38 ie = p2p_group_get_wfd_ie(g);
39 if (ie) {
40 wfd_ie = ie;
97 /* WSC IE in Invitation Request for NFC static handover */
122 struct wpabuf *ie; local
126 ie = p2p_group_get_wfd_ie(g);
127 if (ie) {
128 wfd_ie = ie;
  /frameworks/compile/mclinker/include/mcld/Support/
TargetRegistry.h 149 TargetRegistry::iterator target, ie = TargetRegistry::end(); local
150 for (target = TargetRegistry::begin(); target != ie; ++target) {
  /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...]
  /development/tools/emulator/test-apps/SmokeTests/src/com/android/emulator/smoketests/gps/
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 */
155 * @len: Length of IE buffer in octets
340 const u8 *end, *pos, *ie; local
344 ie = NULL;
351 ie = pos;
357 if (ie == NULL)
358 return NULL; /* No specified vendor IE found */
  /external/wpa_supplicant_8/src/rsn_supp/
preauth.c 444 struct wpa_ie_data ie; local
454 if (wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ie))
459 !(ie.capabilities & WPA_CAPABILITY_PREAUTH)))
464 ie.capabilities & WPA_CAPABILITY_PREAUTH);

Completed in 381 milliseconds

1 2 3 4 5 6 7 8 910