/third_party/gettext/gettext-tools/src/ |
D | x-desktop.c | 66 add_keyword (const char *name, hash_table *keywords, bool is_list) in add_keyword() argument 75 desktop_add_keyword (keywords, name, is_list); in add_keyword() 127 bool is_list = (bool) keyword_value; in extract_desktop_handle_pair() local 130 desktop_unescape_string (value, is_list), false, in extract_desktop_handle_pair()
|
D | read-desktop.h | 112 extern char *desktop_escape_string (const char *s, bool is_list); 113 extern char *desktop_unescape_string (const char *s, bool is_list); 116 bool is_list);
|
D | read-desktop.c | 509 desktop_escape_string (const char *s, bool is_list) in desktop_escape_string() argument 544 if (is_list && *(s + 1) == ';') in desktop_escape_string() 562 desktop_unescape_string (const char *s, bool is_list) in desktop_unescape_string() argument 614 desktop_add_keyword (hash_table *keywords, const char *name, bool is_list) in desktop_add_keyword() argument 616 hash_insert_entry (keywords, name, strlen (name), (void *) is_list); in desktop_add_keyword()
|
D | write-desktop.c | 77 bool is_list = (bool) (uintptr_t) keyword_value; in msgfmt_desktop_handle_pair() local 78 char *unescaped = desktop_unescape_string (value, is_list); in msgfmt_desktop_handle_pair() 91 escaped = desktop_escape_string (mp->msgstr, is_list); in msgfmt_desktop_handle_pair()
|
/third_party/python/Lib/lib2to3/tests/ |
D | test_util.py | 45 def is_list(self, string): member in Test_is_list 46 return fixer_util.is_list(parse(string, strip_levels=2)) 49 self.assertTrue(self.is_list("[]")) 50 self.assertTrue(self.is_list("[a]")) 51 self.assertTrue(self.is_list("[a, b]")) 52 self.assertTrue(self.is_list("[a, [b, c]]")) 53 self.assertTrue(self.is_list("[[a, [b, c]],]")) 56 self.assertFalse(self.is_list("[]+[]"))
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
D | protostream_objectwriter.h | 269 bool is_placeholder, bool is_list); 272 Item(Item* parent, ItemType item_type, bool is_placeholder, bool is_list); 295 bool is_list() const { return is_list_; } in is_list() function 388 bool is_placeholder, bool is_list);
|
D | protostream_objectwriter.cc | 446 bool is_list) in Item() argument 452 is_list_(is_list) { in Item() 463 bool is_list) in Item() argument 469 is_list_(is_list) { in Item() 1303 bool is_list) { in Push() argument 1304 is_list ? ProtoWriter::StartList(name) : ProtoWriter::StartObject(name); in Push() 1309 new Item(current_.release(), item_type, is_placeholder, is_list)); in Push() 1324 current_->is_list() ? ProtoWriter::EndList() : ProtoWriter::EndObject(); in PopOneElement()
|
D | proto_writer.cc | 308 bool is_list) in ProtoElement() argument 315 size_index_(!is_list && in ProtoElement() 319 array_index_(is_list ? 0 : -1), in ProtoElement() 322 if (!is_list) { in ProtoElement() 730 bool is_list) { in BeginNamed() argument 741 if (is_list && !IsRepeated(*field)) { in BeginNamed()
|
D | proto_writer.h | 172 const google::protobuf::Type& type, bool is_list); 263 bool is_list);
|
/third_party/python/Lib/lib2to3/fixes/ |
D | fix_except.py | 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms 77 if is_tuple(N) or is_list(N):
|
/third_party/gstreamer/gstreamer/plugins/elements/ |
D | gsttee.c | 823 gst_tee_do_message (GstTee * tee, GstPad * pad, gpointer data, gboolean is_list) in gst_tee_do_message() argument 827 if (is_list) { in gst_tee_do_message() 843 gst_tee_do_push (GstTee * tee, GstPad * pad, gpointer data, gboolean is_list) in gst_tee_do_push() argument 851 } else if (is_list) { in gst_tee_do_push() 869 gst_tee_handle_data (GstTee * tee, gpointer data, gboolean is_list) in gst_tee_handle_data() argument 876 gst_tee_do_message (tee, tee->sinkpad, data, is_list); in gst_tee_handle_data() 896 } else if (is_list) { in gst_tee_handle_data() 939 is_list ? "list" : "buffer", data); in gst_tee_handle_data() 941 ret = gst_tee_do_push (tee, pad, data, is_list); in gst_tee_handle_data() 995 is_list ? "buffer-list" : "buffer"); in gst_tee_handle_data()
|
D | gstfunnel.c | 317 gboolean is_list, GstMiniObject * obj) in gst_funnel_sink_chain_object() argument 334 if (is_list) in gst_funnel_sink_chain_object() 341 GST_LOG_OBJECT (pad, "handled buffer%s %s", (is_list ? "list" : ""), in gst_funnel_sink_chain_object()
|
D | gstqueue.c | 1183 GstMiniObject * obj, gboolean is_list) in gst_queue_chain_buffer_or_list() argument 1197 if (!is_list) { in gst_queue_chain_buffer_or_list() 1267 if (!is_list) { in gst_queue_chain_buffer_or_list() 1290 if (is_list) in gst_queue_chain_buffer_or_list() 1360 gboolean is_list; in gst_queue_push_one() local 1367 is_list = GST_IS_BUFFER_LIST (data); in gst_queue_push_one() 1369 if (GST_IS_BUFFER (data) || is_list) { in gst_queue_push_one() 1370 if (!is_list) { in gst_queue_push_one()
|
/third_party/mesa3d/src/compiler/glsl/ |
D | s_expression.h | 67 virtual bool is_list() const { return false; } in is_list() function 139 virtual bool is_list() const { return true; } in is_list() function
|
D | s_expression.cpp | 184 case LIST: if (expr->is_list()) *p_list = (s_list *) expr; break; in match()
|
/third_party/boost/tools/quickbook/src/ |
D | values.hpp | 62 virtual bool is_list() const; 113 bool is_list() const { return value_->is_list(); } in is_list() function
|
D | values.cpp | 57 bool value_node::is_list() const { return false; } in is_list() function in quickbook::detail::value_node 90 bool is_list() const { UNDEFINED_ERROR(); } in is_list() function 641 virtual bool is_list() const; 676 bool value_list_impl::is_list() const { return true; } in is_list() function in quickbook::detail::value_list_impl
|
/third_party/gn/src/base/ |
D | values.cc | 234 CHECK(is_list()); in GetList() 239 CHECK(is_list()); in GetList() 474 if (out_value && is_list()) { in GetAsList() 478 return is_list(); in GetAsList() 482 if (out_value && is_list()) { in GetAsList() 486 return is_list(); in GetAsList() 865 if (!result || !value->is_list()) in GetList() 963 if (!result || !value->is_list()) in GetListWithoutPathExpansion() 1179 if (!result || !value->is_list()) in GetList() 1280 CHECK(other->is_list()); in Swap()
|
/third_party/boost/libs/vmd/doc/ |
D | vmd_pp_data_types.qbk | 50 #include <boost/vmd/is_list.hpp> 120 #include <boost/vmd/is_list.hpp> 131 #include <boost/vmd/is_list.hpp> 173 #include <boost/vmd/is_list.hpp> 246 #include <boost/vmd/is_list.hpp> // for the BOOST_VMD_IS_LIST macro
|
/third_party/boost/boost/spirit/home/support/utree/ |
D | utree_traits.hpp | 46 inline bool is_list(utree const& ut) in is_list() function 51 return is_list(ut.deref()); in is_list() 260 else if (detail::is_list(val)) { in call() 561 if (!detail::is_list(ut)) { in call() 1069 if (detail::is_list(t)) in get_or_deref()
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | xcodeproj_file.py | 492 (is_list, property_type, is_strong) = attributes[0:3] 494 if not is_list: 782 (is_list, property_type, is_strong) = self._schema[property][0:3] 783 if is_list: 858 if not is_list: 884 (is_list, property_type, is_strong) = self._schema[key][0:3] 885 if not is_list: 918 (is_list, property_type, is_strong, is_required) = attributes[0:4] 928 (is_list, property_type, is_strong, is_required) = attributes[0:4]
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | xcodeproj_file.py | 475 (is_list, property_type, is_strong) = attributes[0:3] 477 if not is_list: 757 (is_list, property_type, is_strong) = self._schema[property][0:3] 758 if is_list: 810 if not is_list: 836 (is_list, property_type, is_strong) = self._schema[key][0:3] 837 if not is_list: 864 (is_list, property_type, is_strong, is_required) = attributes[0:4] 874 (is_list, property_type, is_strong, is_required) = attributes[0:4]
|
/third_party/boost/tools/quickbook/test/unit/ |
D | values_test.cpp | 22 BOOST_TEST(!q.is_list()); in empty_tests()
|
/third_party/cef/libcef/common/ |
D | values_impl.cc | 39 if (value->is_list()) { in GetOrCreateRefOrCopy() 858 if (value && value->is_list()) { in GetList() 970 if (out_value->is_list() || out_value->is_dict()) { in RemoveInternal() 1278 if (const_value().Get(index, &out_value) && out_value->is_list()) { in GetList() 1386 if (out_value.is_list() || out_value.is_dict()) { in RemoveInternal()
|
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/ |
D | rtpstats.h | 91 gboolean is_list; member
|