/third_party/boost/boost/geometry/index/detail/rtree/rstar/ |
D | choose_next_node.hpp | 49 typedef typename index::detail::default_content_result<box_type>::type content_type; typedef in boost::geometry::index::detail::rtree::choose_next_node 80 content_type content_diff; 81 content_type content; 84 void set(size_t i_, content_type const& content_, content_type const& content_diff_) in set() 100 content_type min_content_diff = (std::numeric_limits<content_type>::max)(); in choose_by_minimum_overlap_cost() 101 content_type min_content = (std::numeric_limits<content_type>::max)(); in choose_by_minimum_overlap_cost() 117 content_type content = index::detail::content(box_exp); in choose_by_minimum_overlap_cost() 118 content_type content_diff = content - index::detail::content(ch_i.first); in choose_by_minimum_overlap_cost() 174 content_type smallest_overlap_diff = (std::numeric_limits<content_type>::max)(); in choose_by_minimum_overlap_cost_first_n() 175 content_type smallest_content_diff = (std::numeric_limits<content_type>::max)(); in choose_by_minimum_overlap_cost_first_n() [all …]
|
D | redistribute_elements.hpp | 112 typedef typename index::detail::default_content_result<Box>::type content_type; typedef 118 content_type & smallest_overlap, in apply() 119 content_type & smallest_content, in apply() 156 smallest_overlap = (std::numeric_limits<content_type>::max)(); in apply() 157 smallest_content = (std::numeric_limits<content_type>::max)(); in apply() 172 content_type ovl = index::detail::intersection_content(box1, box2, strategy); in apply() 173 content_type con = index::detail::content(box1) + index::detail::content(box2); in apply() 198 typedef typename index::detail::default_content_result<Box>::type content_type; typedef 205 content_type & smallest_overlap, in apply() 206 content_type & smallest_content, in apply() [all …]
|
/third_party/openssl/util/perl/TLSProxy/ |
D | Record.pm | 73 my ($content_type, $version, $len) = unpack('Cnn', $packet); 83 print " Content type: ".$record_type{$content_type}."\n"; 89 $content_type, 99 if ($content_type != RT_CCS 101 || $content_type != RT_ALERT)) { 113 .$record_type{$record->content_type()}."\n"; 168 $content_type, 179 content_type => $content_type, 234 if ($self->content_type() == RT_ALERT) { 261 my $content_type = unpack("C", substr($data, length($data) - 1)); [all …]
|
/third_party/boost/boost/geometry/index/detail/rtree/quadratic/ |
D | redistribute_elements.hpp | 47 typedef typename index::detail::default_content_result<box_type>::type content_type; in pick_seeds() typedef 60 content_type greatest_free_content = 0; in pick_seeds() 77 content_type free_content = ( index::detail::content(enlarged_box) in pick_seeds() 107 typedef typename index::detail::default_content_result<box_type>::type content_type; typedef 175 content_type content1 = index::detail::content(box1); in apply() 176 content_type content2 = index::detail::content(box2); in apply() 203 content_type content_increase1 = 0; in apply() 204 content_type content_increase2 = 0; in apply() 268 content_type const& content1, content_type const& content2, in pick_next() 271 … content_type & out_content_increase1, content_type & out_content_increase2) in pick_next() [all …]
|
/third_party/libsoup/libsoup/ |
D | soup-content-sniffer.c | 767 const char *content_type; in soup_content_sniffer_real_sniff() local 772 content_type = soup_message_headers_get_content_type (msg->response_headers, params); in soup_content_sniffer_real_sniff() 781 if ((content_type == NULL) || in soup_content_sniffer_real_sniff() 782 !g_ascii_strcasecmp (content_type, "unknown/unknown") || in soup_content_sniffer_real_sniff() 783 !g_ascii_strcasecmp (content_type, "application/unknown") || in soup_content_sniffer_real_sniff() 784 !g_ascii_strcasecmp (content_type, "*/*")) in soup_content_sniffer_real_sniff() 789 return g_strdup (content_type); in soup_content_sniffer_real_sniff() 792 if ((content_type != NULL) && in soup_content_sniffer_real_sniff() 793 (g_str_equal (content_type, "text/plain") || in soup_content_sniffer_real_sniff() 794 g_str_equal (content_type, "text/plain; charset=ISO-8859-1") || in soup_content_sniffer_real_sniff() [all …]
|
D | soup-request-http.c | 49 char *content_type; member 55 const char *content_type, 95 g_free (http->priv->content_type); in soup_request_http_finalize() 167 const char *content_type, in content_sniffed() argument 174 sniffed_type = g_string_new (content_type); in content_sniffed() 185 g_free (http->priv->content_type); in content_sniffed() 186 http->priv->content_type = g_string_free (sniffed_type, FALSE); in content_sniffed() 194 return http->priv->content_type; in soup_request_http_get_content_type()
|
D | soup-request-data.c | 44 char *content_type; member 60 g_free (data->priv->content_type); in soup_request_data_finalize() 100 data->priv->content_type = soup_uri_decoded_copy (start, end - start, NULL); in soup_request_data_send() 140 if (data->priv->content_type) in soup_request_data_get_content_type() 141 return data->priv->content_type; in soup_request_data_get_content_type()
|
D | soup-request-file.c | 188 const char *content_type; in soup_request_file_send() local 190 content_type = g_file_info_get_content_type (info); in soup_request_file_send() 192 if (content_type) in soup_request_file_send() 193 file->priv->mime_type = g_content_type_get_mime_type (content_type); in soup_request_file_send() 241 const char *content_type; in on_query_info_ready() local 244 content_type = g_file_info_get_content_type (info); in on_query_info_ready() 246 if (content_type) in on_query_info_ready() 247 file->priv->mime_type = g_content_type_get_mime_type (content_type); in on_query_info_ready()
|
D | soup-multipart.c | 139 const char *content_type, *boundary; in soup_multipart_new_from_message() local 147 content_type = soup_message_headers_get_content_type (headers, ¶ms); in soup_multipart_new_from_message() 148 if (!content_type) in soup_multipart_new_from_message() 152 if (strncmp (content_type, "multipart/", 10) != 0 || !boundary) { in soup_multipart_new_from_message() 158 g_strdup (content_type), g_strdup (boundary)); in soup_multipart_new_from_message() 365 const char *content_type, SoupBuffer *body) in soup_multipart_append_form_file() argument 381 if (content_type) { in soup_multipart_append_form_file() 383 content_type); in soup_multipart_append_form_file()
|
/third_party/glib/gio/ |
D | gappinfo.h | 116 const char *content_type, 122 const char *content_type, 126 const char *content_type, 133 const char *content_type, 204 const char *content_type, 212 const char *content_type, 218 const char *content_type, 230 const char *content_type, 236 GList * g_app_info_get_all_for_type (const char *content_type); 238 GList * g_app_info_get_recommended_for_type (const gchar *content_type); [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | av3a_parser.c | 76 uint8_t content_type; member 213 uint8_t content_type = 0; in read_av3a_frame_header() local 263 content_type = 0; in read_av3a_frame_header() 313 content_type = 1; in read_av3a_frame_header() 325 content_type = 2; in read_av3a_frame_header() 363 content_type = 3; in read_av3a_frame_header() 423 hdf->content_type = content_type; in read_av3a_frame_header() 425 if (hdf->content_type == 0) { in read_av3a_frame_header() 431 } else if (hdf->content_type == 1) { in read_av3a_frame_header() 435 } else if (hdf->content_type == 2) { in read_av3a_frame_header() [all …]
|
D | cbs_internal.h | 67 enum CBSContentType content_type; member 183 .content_type = CBS_CONTENT_TYPE_POD, \ 189 .content_type = CBS_CONTENT_TYPE_INTERNAL_REFS, \ 197 .content_type = CBS_CONTENT_TYPE_COMPLEX, \
|
/third_party/gstreamer/gstplugins_bad/sys/mediafoundation/ |
D | gstmfvp9enc.cpp | 83 static GType content_type = 0; in gst_mf_vp9_enc_content_type_get_type() local 92 if (!content_type) { in gst_mf_vp9_enc_content_type_get_type() 93 content_type = in gst_mf_vp9_enc_content_type_get_type() 96 return content_type; in gst_mf_vp9_enc_content_type_get_type() 136 guint content_type; member 233 if (device_caps->content_type) { in gst_mf_vp9_enc_class_init() 327 self->content_type = DEFAULT_CONTENT_TYPE; in gst_mf_vp9_enc_init() 358 g_value_set_enum (value, self->content_type); in gst_mf_vp9_enc_get_property() 401 self->content_type = g_value_get_enum (value); in gst_mf_vp9_enc_set_property() 519 if (device_caps->content_type) { in gst_mf_vp9_enc_set_option() [all …]
|
D | gstmfh265enc.cpp | 84 static GType content_type = 0; in gst_mf_h265_enc_content_type_get_type() local 93 if (!content_type) { in gst_mf_h265_enc_content_type_get_type() 94 content_type = in gst_mf_h265_enc_content_type_get_type() 97 return content_type; in gst_mf_h265_enc_content_type_get_type() 158 guint content_type; member 278 if (device_caps->content_type) { in gst_mf_h265_enc_class_init() 431 self->content_type = DEFAULT_CONTENT_TYPE; in gst_mf_h265_enc_init() 475 g_value_set_enum (value, self->content_type); in gst_mf_h265_enc_get_property() 545 self->content_type = g_value_get_enum (value); in gst_mf_h265_enc_set_property() 709 if (device_caps->content_type) { in gst_mf_h265_enc_set_option() [all …]
|
/third_party/cef/libcef_dll/cpptoc/ |
D | server_cpptoc.cc | 148 const cef_string_t* content_type, in server_send_http200response() argument 159 DCHECK(content_type); in server_send_http200response() 160 if (!content_type) in server_send_http200response() 169 connection_id, CefString(content_type), data, data_size); in server_send_http200response() 211 const cef_string_t* content_type, in server_send_http_response() argument 222 DCHECK(content_type); in server_send_http_response() 223 if (!content_type) in server_send_http_response() 233 connection_id, response_code, CefString(content_type), content_length, in server_send_http_response()
|
/third_party/cef/libcef_dll/ctocpp/ |
D | server_ctocpp.cc | 147 const CefString& content_type, in SendHttp200Response() argument 159 DCHECK(!content_type.empty()); in SendHttp200Response() 160 if (content_type.empty()) in SendHttp200Response() 169 content_type.GetStruct(), data, data_size); in SendHttp200Response() 210 const CefString& content_type, in SendHttpResponse() argument 222 DCHECK(!content_type.empty()); in SendHttpResponse() 223 if (content_type.empty()) in SendHttpResponse() 235 content_type.GetStruct(), content_length, in SendHttpResponse()
|
/third_party/gstreamer/gstplugins_bad/ext/curl/ |
D | gstcurlhttpsink.c | 183 sink->content_type = NULL; in gst_curl_http_sink_init() 202 g_free (this->content_type); in gst_curl_http_sink_finalize() 252 g_free (sink->content_type); in gst_curl_http_sink_set_property() 253 sink->content_type = g_value_dup_string (value); in gst_curl_http_sink_set_property() 254 GST_DEBUG_OBJECT (sink, "content type set to %s", sink->content_type); in gst_curl_http_sink_set_property() 271 g_free (sink->content_type); in gst_curl_http_sink_set_property() 272 sink->content_type = g_value_dup_string (value); in gst_curl_http_sink_set_property() 273 GST_DEBUG_OBJECT (sink, "content type set to %s", sink->content_type); in gst_curl_http_sink_set_property() 309 g_value_set_string (value, sink->content_type); in gst_curl_http_sink_get_property() 355 tmp = g_strdup_printf ("Content-Type: %s", sink->content_type); in gst_curl_http_sink_set_header_unlocked() [all …]
|
/third_party/libsoup/tests/ |
D | forms-test.c | 256 const char *content_type; in hello_callback() local 273 content_type = "text/html"; in hello_callback() 288 content_type = "text/plain"; in hello_callback() 297 soup_message_set_response (msg, content_type, in hello_callback() 310 const char *content_type; in md5_get_callback() local 322 content_type = "text/html"; in md5_get_callback() 336 content_type = "text/plain"; in md5_get_callback() 341 soup_message_set_response (msg, content_type, in md5_get_callback() 353 const char *content_type; in md5_post_callback() local 360 content_type = soup_message_headers_get_content_type (msg->request_headers, NULL); in md5_post_callback() [all …]
|
/third_party/curl/lib/ |
D | http_aws_sigv4.c | 90 const char *content_type = Curl_checkheaders(data, "Content-Type"); in Curl_output_aws_sigv4() local 252 if(content_type) { in Curl_output_aws_sigv4() 253 content_type = strchr(content_type, ':'); in Curl_output_aws_sigv4() 254 if(!content_type) { in Curl_output_aws_sigv4() 258 content_type++; in Curl_output_aws_sigv4() 260 while(*content_type == ' ' || *content_type == '\t') in Curl_output_aws_sigv4() 261 ++content_type; in Curl_output_aws_sigv4() 266 content_type, in Curl_output_aws_sigv4()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-buffer.hh | 102 hb_buffer_content_type_t content_type; member 347 assert ((content_type == HB_BUFFER_CONTENT_TYPE_GLYPHS) || in assert_glyphs() 348 (!len && (content_type == HB_BUFFER_CONTENT_TYPE_INVALID))); in assert_glyphs() 352 assert ((content_type == HB_BUFFER_CONTENT_TYPE_UNICODE) || in assert_unicode() 353 (!len && (content_type == HB_BUFFER_CONTENT_TYPE_INVALID))); in assert_unicode() 357 if (unlikely (content_type != HB_BUFFER_CONTENT_TYPE_GLYPHS)) in ensure_glyphs() 359 if (content_type != HB_BUFFER_CONTENT_TYPE_INVALID) in ensure_glyphs() 362 content_type = HB_BUFFER_CONTENT_TYPE_GLYPHS; in ensure_glyphs() 368 if (unlikely (content_type != HB_BUFFER_CONTENT_TYPE_UNICODE)) in ensure_unicode() 370 if (content_type != HB_BUFFER_CONTENT_TYPE_INVALID) in ensure_unicode() [all …]
|
/third_party/harfbuzz/src/ |
D | hb-buffer.hh | 101 hb_buffer_content_type_t content_type; member 347 assert ((content_type == HB_BUFFER_CONTENT_TYPE_GLYPHS) || in assert_glyphs() 348 (!len && (content_type == HB_BUFFER_CONTENT_TYPE_INVALID))); in assert_glyphs() 352 assert ((content_type == HB_BUFFER_CONTENT_TYPE_UNICODE) || in assert_unicode() 353 (!len && (content_type == HB_BUFFER_CONTENT_TYPE_INVALID))); in assert_unicode() 357 if (unlikely (content_type != HB_BUFFER_CONTENT_TYPE_GLYPHS)) in ensure_glyphs() 359 if (content_type != HB_BUFFER_CONTENT_TYPE_INVALID) in ensure_glyphs() 362 content_type = HB_BUFFER_CONTENT_TYPE_GLYPHS; in ensure_glyphs() 368 if (unlikely (content_type != HB_BUFFER_CONTENT_TYPE_UNICODE)) in ensure_unicode() 370 if (content_type != HB_BUFFER_CONTENT_TYPE_INVALID) in ensure_unicode() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | SymbolicFile.h | 68 template <class content_type> 70 : public std::iterator<std::forward_iterator_tag, content_type> { 71 content_type Current; 74 content_iterator(content_type symb) : Current(std::move(symb)) {} in content_iterator() 76 const content_type *operator->() const { return &Current; } 78 const content_type &operator*() const { return Current; }
|
/third_party/weston/libweston/ |
D | content-protection.c | 79 enum weston_protected_surface_type content_type) in set_type() argument 92 if (content_type < WESTON_PROTECTED_SURFACE_TYPE_UNPROTECTED || in set_type() 93 content_type > WESTON_PROTECTED_SURFACE_TYPE_HDCP_1) { in set_type() 97 wl_resource_get_id(surface_resource), content_type); in set_type() 100 wl_resource_get_id(surface_resource), content_type); in set_type() 106 content_type_name[content_type]); in set_type() 108 weston_cp = (enum weston_hdcp_protection) content_type; in set_type()
|
/third_party/skia/third_party/externals/angle2/third_party/logdog/logdog/ |
D | stream.py | 88 _maybe_add('contentType', self.content_type) 402 def open_text(self, name, content_type=None, tags=None): argument 420 content_type=content_type, 447 def open_binary(self, name, content_type=None, tags=None): argument 465 content_type=content_type, 492 def open_datagram(self, name, content_type=None, tags=None): argument 508 content_type=content_type,
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | hb-buffer.cc | 242 content_type = HB_BUFFER_CONTENT_TYPE_INVALID; in clear() 641 assert (content_type == HB_BUFFER_CONTENT_TYPE_UNICODE || in guess_segment_properties() 642 (!len && content_type == HB_BUFFER_CONTENT_TYPE_INVALID)); in guess_segment_properties() 840 hb_buffer_content_type_t content_type) in hb_buffer_set_content_type() argument 842 buffer->content_type = content_type; in hb_buffer_set_content_type() 859 return buffer->content_type; in hb_buffer_get_content_type() 1349 buffer->content_type = HB_BUFFER_CONTENT_TYPE_INVALID; in hb_buffer_set_length() 1535 assert (buffer->content_type == HB_BUFFER_CONTENT_TYPE_UNICODE || in hb_buffer_add_utf() 1536 (!buffer->len && buffer->content_type == HB_BUFFER_CONTENT_TYPE_INVALID)); in hb_buffer_add_utf() 1590 buffer->content_type = HB_BUFFER_CONTENT_TYPE_UNICODE; in hb_buffer_add_utf() [all …]
|