Home
last modified time | relevance | path

Searched refs:m_keys (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/detail/
H A Ddebug_map_base.hpp126 key_repository m_keys; member in __gnu_pbds::detail::debug_map_base
138 : m_keys(other.m_keys), m_eq(other.m_eq) in debug_map_base()
153 if (find(r_key) != m_keys.end()) in insert_new()
161 m_keys.push_back(r_key); in insert_new()
179 if (it == m_keys.end()) in erase_existing()
184 m_keys.erase(it); in erase_existing()
194 m_keys.clear(); in clear()
205 if (find(r_key) == m_keys.end()) in check_key_exists()
220 if (find(r_key) != m_keys.end()) in check_key_does_not_exist()
236 const size_type keys_size = m_keys.size(); in check_size()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/detail/
H A Ddebug_map_base.hpp126 key_repository m_keys; member in __gnu_pbds::detail::debug_map_base
138 : m_keys(other.m_keys), m_eq(other.m_eq) in debug_map_base()
153 if (find(r_key) != m_keys.end()) in insert_new()
161 m_keys.push_back(r_key); in insert_new()
179 if (it == m_keys.end()) in erase_existing()
184 m_keys.erase(it); in erase_existing()
194 m_keys.clear(); in clear()
205 if (find(r_key) == m_keys.end()) in check_key_exists()
220 if (find(r_key) != m_keys.end()) in check_key_does_not_exist()
236 const size_type keys_size = m_keys.size(); in check_size()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dordered-hash-map.h43 m_keys (other.m_keys.length ()), in ordered_hash_map()
48 FOR_EACH_VEC_ELT (other.m_keys, i, key) in ordered_hash_map()
49 m_keys.quick_push (key); in ordered_hash_map()
65 slot = m_keys.length (); in put()
66 m_keys.safe_push (k); in put()
124 const Key &k = m_ordered_hash_map.m_keys[m_idx];
141 if (m_idx > m_ordered_hash_map.m_keys.length ()) in valid_index_p()
143 if (m_idx == m_ordered_hash_map.m_keys.length ()) in valid_index_p()
145 const Key &k = m_ordered_hash_map.m_keys[m_idx]; in valid_index_p()
164 iterator end () const { return iterator (*this, m_keys.length ()); } in end()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dordered-hash-map.h43 m_keys (other.m_keys.length ()), in ordered_hash_map()
48 FOR_EACH_VEC_ELT (other.m_keys, i, key) in ordered_hash_map()
49 m_keys.quick_push (key); in ordered_hash_map()
65 slot = m_keys.length (); in put()
66 m_keys.safe_push (k); in put()
124 const Key &k = m_ordered_hash_map.m_keys[m_idx];
141 if (m_idx > m_ordered_hash_map.m_keys.length ()) in valid_index_p()
143 if (m_idx == m_ordered_hash_map.m_keys.length ()) in valid_index_p()
145 const Key &k = m_ordered_hash_map.m_keys[m_idx]; in valid_index_p()
164 iterator end () const { return iterator (*this, m_keys.length ()); } in end()
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/key/
H A Dkeywidget.cpp35 m_keys << k; in loadData()
39 if(m_devName.isEmpty() || m_keys.isEmpty()) in loadData()
62 for(int i=0; i<m_keys.size(); i++) in loadData()
64 if(m_keys[i].code == event.code) in loadData()
66 m_keys[i].state = event.value; in loadData()
67 … qCDebug(flapp)<<"code/value/name"<<event.code << " " << event.value << " " << m_keys[i].name; in loadData()
83 int count = m_keys.size(); in paintEvent()
94 QString name = m_keys[i].name; in paintEvent()
96 int state = m_keys[i].state; in paintEvent()
H A Dkeywidget.h29 QList<Key> m_keys; variable