Home
last modified time | relevance | path

Searched refs:is_key (Results 1 – 19 of 19) sorted by relevance

/third_party/boost/boost/python/
Dargs.hpp119 BOOST_STATIC_CONSTANT(bool, is_key = is_keywords<key_t>::value);
120 BOOST_STATIC_CONSTANT(bool, value = (is_ref & is_key));
/third_party/glib/gio/
Dgdbusdaemon.c209 is_key (const char *key_start, const char *key_end, const char *value) in is_key() function
225 if (is_key (key_start, key_end, "type")) in parse_key()
229 else if (is_key (key_start, key_end, "sender")) in parse_key()
233 else if (is_key (key_start, key_end, "interface")) in parse_key()
237 else if (is_key (key_start, key_end, "member")) in parse_key()
241 else if (is_key (key_start, key_end, "path")) in parse_key()
245 else if (is_key (key_start, key_end, "path_namespace")) in parse_key()
249 else if (is_key (key_start, key_end, "destination")) in parse_key()
253 else if (is_key (key_start, key_end, "arg0namespace")) in parse_key()
257 else if (is_key (key_start, key_end, "eavesdrop")) in parse_key()
[all …]
Dgsettingsbackend.c86 is_key (const gchar *key)
384 g_return_if_fail (is_key (key)); in g_settings_backend_changed()
502 g_return_if_fail (is_key (key)); in g_settings_backend_writable_changed()
553 g_return_val_if_fail (is_key (key), TRUE); in g_settings_backend_flatten_one()
/third_party/libwebsockets/lib/plat/freertos/
Dfreertos-file.c181 lws_plat_write_cert(struct lws_vhost *vhost, int is_key, int fd, void *buf, in lws_plat_write_cert() argument
186 if (is_key) in lws_plat_write_cert()
/third_party/eudev/src/udev/
Dudev-builtin-input_id.c324 bool is_key; in builtin_input_id() local
344 is_key = test_key(dev, bitmask_ev, bitmask_key, test); in builtin_input_id()
346 if (!is_pointer && !is_key && test_bit(EV_REL, bitmask_ev) && in builtin_input_id()
/third_party/libwebsockets/include/libwebsockets/
Dlws-purify.h95 lws_plat_write_cert(struct lws_vhost *vhost, int is_key, int fd, void *buf,
/third_party/boost/libs/move/test/
Dinplace_merge_test.cpp113 BOOST_TEST( is_key(testarray.get(), KeySize) ); in alternating_test()
124 BOOST_TEST( is_key(testarray.get(), KeySize) ); in alternating_test()
135 BOOST_TEST( is_key(testarray.get(), KeySize) ); in alternating_test()
Dorder_type.hpp141 inline bool is_key(T *elements, std::size_t element_count) in is_key() function
/third_party/boost/libs/property_tree/test/
Dprefixing_callbacks.hpp63 if (!this->is_key()) { in on_begin_string()
/third_party/libwebsockets/lib/plat/unix/
Dunix-misc.c97 lws_plat_write_cert(struct lws_vhost *vhost, int is_key, int fd, void *buf, in lws_plat_write_cert() argument
/third_party/flatbuffers/rust/flexbuffers/src/builder/
Dmap.rs93 debug_assert!(values.iter().step_by(2).all(Value::is_key)); in sort_map_by_keys()
Dvalue.rs131 pub fn is_key(&self) -> bool { in is_key() method
/third_party/boost/boost/property_tree/json_parser/detail/
Dstandard_callbacks.hpp87 bool is_key() const { in is_key() function in boost::property_tree::json_parser::detail::standard_callbacks
/third_party/flatbuffers/rust/flexbuffers/src/
Dflexbuffer_type.rs195 is_ty!(is_key, Key);
/third_party/libwebsockets/lib/plat/windows/
Dwindows-file.c157 lws_plat_write_cert(struct lws_vhost *vhost, int is_key, int fd, void *buf, in lws_plat_write_cert() argument
/third_party/libwebsockets/lib/plat/optee/
Dnetwork.c205 lws_plat_write_cert(struct lws_vhost *vhost, int is_key, int fd, void *buf, in lws_plat_write_cert() argument
/third_party/ffmpeg/libavcodec/
Dbink.c852 int plane_idx, int is_key, int is_chroma) in binkb_decode_plane() argument
863 int ybias = is_key ? -15 : 0; in binkb_decode_plane()
/third_party/boost/boost/unordered/detail/
Dimplementation.hpp4648 template <typename Key, typename T> struct is_key struct
4773 static typename is_key<key_type, T>::type extract( \
4777 return typename is_key<key_type, T>::type(namespace_ get<0>(k)); \
4790 static typename is_key<key_type, T>::type extract( \
4793 return typename is_key<key_type, T>::type(namespace_ get<0>(k)); \
/third_party/protobuf/src/google/protobuf/
Dmap_test.cc2401 bool is_key = k & 0x1; in TEST() local
2402 bool is_value = !is_key && (k & 0x2); in TEST()
2403 wire_format.push_back(is_key ? kKeyTag in TEST()
2407 if (is_key) expected_key = static_cast<int>(c); in TEST()