/third_party/gstreamer/gstreamer/gst/ |
D | gsturi.c | 4 * Copyright (C) 2011 Tim-Philipp Müller <tim centricular net> 8 * gsturi.c: register URI handlers and IETF RFC 3986 URI manipulations. 23 * Boston, MA 02110-1301, USA. 29 * @short_description: Interface to ease URI handling in plugins. 32 * #GstElement to unify handling of URI. 35 * that handles the given URI for reading or writing 52 #include "gst-i18n-lib.h" 117 s--; in _gst_ascii_strcasestr() 156 return g_quark_from_static_string ("gst-uri-error-quark"); in gst_uri_error_quark() 163 …0x00, 0x2C, 0x3F, 0x3F, 0x3F, 0x3F, 0x22, 0x20, 0x3F, 0x3F, 0x1C, /* 2X !"#$%&'()*+,-./ */ [all …]
|
D | gsturi.h | 7 * gsturi.h: Header for uri to element mappings and URI manipulation. 22 * Boston, MA 02110-1301, USA. 30 #include <glib-object.h> 45 * Get access to the error quark of the uri subsystem. 52 * @GST_URI_ERROR_BAD_URI: There was a problem with the URI 53 * @GST_URI_ERROR_BAD_STATE: Could not set or change the URI because the 54 * URI handler was in a state where that is not possible or not permitted 56 * the URI references 58 * Different URI-related errors that can occur. 70 * @GST_URI_UNKNOWN: The URI direction is unknown [all …]
|
/third_party/libxml2/ |
D | uri.c | 2 * uri.c: set of generic URI related routines 18 #include <libxml/uri.h> 25 * The definition of the URI regexp in the above RFC has no size limit 27 * data URI scheme as defined in RFC 2397. Even for data URI the usual 53 static void xmlCleanURI(xmlURIPtr uri); 92 * mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")" 95 #define IS_MARK(x) (((x) == '-') || ((x) == '_') || ((x) == '.') || \ 155 * sub-delims = "!" / "$" / "&" / "'" / "(" / ")" 165 * gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@" 173 * reserved = gen-delims / sub-delims [all …]
|
D | testURI.c | 16 #include <libxml/uri.h> 26 xmlURIPtr uri; in handleURI() local 29 uri = xmlCreateURI(); in handleURI() 32 ret = xmlParseURIReference(uri, str); in handleURI() 37 if (uri->scheme) printf("scheme: %s\n", uri->scheme); in handleURI() 38 if (uri->opaque) printf("opaque: %s\n", uri->opaque); in handleURI() 39 if (uri->authority) printf("authority: %s\n", uri->authority); in handleURI() 40 if (uri->server) printf("server: %s\n", uri->server); in handleURI() 41 if (uri->user) printf("user: %s\n", uri->user); in handleURI() 42 if (uri->port != 0) printf("port: %d\n", uri->port); in handleURI() [all …]
|
/third_party/flutter/engine/flutter/web_sdk/ |
D | libraries.yaml | 3 # BSD-style license that can be found in the LICENSE file. 14 # https://github.com/dart-lang/sdk/issues/28836. 19 … uri: "../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/runtime.dart" 22 uri: "../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/debugger.dart" 25 uri: "../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/foreign_helper.dart" 28 uri: "../../third_party/dart/sdk/lib/_http/http.dart" 31 uri: "../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/interceptors.dart" 34 uri: "../../third_party/dart/sdk/lib/internal/internal.dart" 38 uri: "../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/isolate_helper.dart" 41 uri: "../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/js_helper.dart" [all …]
|
D | libraries.json | 7 "patches": "../dart-sdk/lib/_internal/js_runtime/lib/async_patch.dart", 8 "uri": "../dart-sdk/lib/async/async.dart" string 11 "uri": "../dart-sdk/lib/_internal/js_runtime/lib/interceptors.dart" string 14 "patches": "../dart-sdk/lib/_internal/js_runtime/lib/mirrors_patch_cfe.dart", 16 "uri": "../dart-sdk/lib/mirrors/mirrors.dart" string 19 "uri": "../dart-sdk/lib/_internal/js_runtime/lib/shared/embedded_names.dart" string 24 "uri": "../dart-sdk/lib/io/io.dart" string 27 "patches": "../dart-sdk/lib/_internal/js_runtime/lib/internal_patch.dart", 28 "uri": "../dart-sdk/lib/internal/internal.dart" string 31 "uri": "../dart-sdk/lib/html/html_common/metadata.dart" string [all …]
|
/third_party/libcoap/tests/ |
D | test_uri.c | 5 * SPDX-License-Identifier: BSD-2-Clause 18 char teststr[] = "coap://[::1]/.well-known/core"; in t_parse_uri1() 21 coap_uri_t uri; in t_parse_uri1() local 23 result = coap_split_uri((unsigned char *)teststr, strlen(teststr), &uri); in t_parse_uri1() 25 CU_ASSERT(uri.host.length == 3); in t_parse_uri1() 26 CU_ASSERT_NSTRING_EQUAL(uri.host.s, "::1", 3); in t_parse_uri1() 28 CU_ASSERT(uri.port == COAP_DEFAULT_PORT); in t_parse_uri1() 30 CU_ASSERT(uri.path.length == 16); in t_parse_uri1() 31 CU_ASSERT_NSTRING_EQUAL(uri.path.s, ".well-known/core", 16); in t_parse_uri1() 33 CU_ASSERT(uri.query.length == 0); in t_parse_uri1() [all …]
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ |
D | protocol_discovery_test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 20 /// Performs test set-up functionality that must be performed as part of 24 /// cross an error-zone boundary. Our use of `testUsingContext()` runs the 27 /// error-zone boundaries, which are considered uncaught. 32 /// These issues do not pertain to real code and are a test-only concern, 46 testUsingContext('returns non-null uri future', () async { 48 expect(discoverer.uri, isNotNull); 51 testUsingContext('discovers uri if logs already produced output', () async { 55 final Uri uri = await discoverer.uri; 56 expect(uri.port, 9999); [all …]
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
D | mhd2spdy_structures.c | 28 free_uri(struct URI * uri) in free_uri() argument 30 if(NULL != uri) in free_uri() 32 free(uri->full_uri); in free_uri() 33 free(uri->scheme); in free_uri() 34 free(uri->host_and_port); in free_uri() 35 free(uri->host); in free_uri() 36 free(uri->path); in free_uri() 37 free(uri->path_and_more); in free_uri() 38 free(uri->query); in free_uri() 39 free(uri->fragment); in free_uri() [all …]
|
/third_party/node/deps/npm/node_modules/uri-js/ |
D | package.json | 2 "_from": "uri-js@^4.2.2", 3 "_id": "uri-js@4.4.0", 5 …"_integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWd… 6 "_location": "/uri-js", 11 "raw": "uri-js@^4.2.2", 12 "name": "uri-js", 13 "escapedName": "uri-js", 19 "/har-validator/ajv" 21 "_resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", 23 "_spec": "uri-js@^4.2.2", [all …]
|
D | README.md | 1 # URI.js 3 URI.js is an [RFC 3986](http://www.ietf.org/rfc/rfc3986.txt) compliant, scheme extendable URI parsi… 6 URI.js has an extensive test suite, and works in all (Node.js, web) environments. It weighs in at 6… 12 URI.parse("uri://user:pass@example.com:123/one/two.three?q1=a1&q2=a2#body"); 15 // scheme : "uri", 26 …URI.serialize({scheme : "http", host : "example.com", fragment : "footer"}) === "http://example.co… 30 URI.resolve("uri://a/b/c/d?q", "../../g") === "uri://a/g" 34 URI.normalize("HTTP://ABC.com:80/%7Esmith/home.html") === "http://abc.com/~smith/home.html" 38 URI.equal("example://a/b/c/%7Bfoo%7D", "eXAMPLE://a/./b/../b/%63/%7bfoo%7d") === true 43 URI.normalize("//192.068.001.000") === "//192.68.1.0" [all …]
|
/third_party/libxml2/python/ |
D | libxml2-python-api.xml | 1 <?xml version="1.0" encoding="ISO-8859-1"?> 2 <api name='libxml2-python'> 7 <return type='int' info="1 in case of success, 0 or -1 in case of error"/> 16 <return type='int' info="1 in case of success, 0 or -1 in case of error"/> 33 <arg name='URI' type='xmlChar *' info='The URI used for base computations'/> 42 <arg name='URI' type='xmlChar *' info='The URI used for base computations'/> 45 …<info>Interface to parse an XML file or resource pointed by an URI to build an event flow to the S… 48 <arg name='URI' type='xmlChar *' info='The URI of the resource'/> 53 …<info>Interface to parse an HTML file or resource pointed by an URI to build an event flow to the … 56 <arg name='URI' type='xmlChar *' info='The URI of the resource'/> [all …]
|
/third_party/libcoap/include/coap3/ |
D | uri.h | 2 * uri.h -- helper functions for URI treatment 4 * Copyright (C) 2010-2020 Olaf Bergmann <bergmann@tzi.org> 6 * SPDX-License-Identifier: BSD-2-Clause 28 COAP_URI_SCHEME_HTTP, /* 4 Proxy-Uri only */ 29 COAP_URI_SCHEME_HTTPS /* 5 Proxy-Uri only */ 32 /** This mask can be used to check if a parsed URI scheme is secure. */ 36 * Representation of parsed URI. Components may be filled from a string with 38 * option-creation functions. 41 coap_str_const_t host; /**< host part of the URI */ 44 Use coap_split_path() to create Uri-Path options */ [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
D | browser.c | 2 * Hotspot 2.0 client - Web browser using WebKit 34 if (ctx->gtk_main_started) in win_cb_destroy() 43 if (ctx->hover_link) { in browser_update_title() 44 gtk_window_set_title(GTK_WINDOW(ctx->win), ctx->hover_link); in browser_update_title() 48 if (ctx->progress == 100) { in browser_update_title() 49 gtk_window_set_title(GTK_WINDOW(ctx->win), in browser_update_title() 50 ctx->title ? ctx->title : in browser_update_title() 55 snprintf(buf, sizeof(buf), "[%d%%] %s", ctx->progress, in browser_update_title() 56 ctx->title ? ctx->title : "Hotspot 2.0 client"); in browser_update_title() 57 gtk_window_set_title(GTK_WINDOW(ctx->win), buf); in browser_update_title() [all …]
|
/third_party/gstreamer/gstreamer/plugins/elements/ |
D | gstdataurisrc.c | 1 /* GStreamer data:// uri source element 18 * Boston, MA 02110-1301, USA. 22 * SECTION:element-dataurisrc 30 …* gst-launch-1.0 -v dataurisrc uri="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf… 33 * This pipeline displays a small 16x16 PNG image from the data URI. 79 const gchar * uri, GError ** error); 96 gobject_class->finalize = gst_data_uri_src_finalize; in gst_data_uri_src_class_init() 97 gobject_class->set_property = gst_data_uri_src_set_property; in gst_data_uri_src_class_init() 98 gobject_class->get_property = gst_data_uri_src_get_property; in gst_data_uri_src_class_init() 101 g_param_spec_string ("uri", in gst_data_uri_src_class_init() [all …]
|
/third_party/libxml2/doc/devhelp/ |
D | libxml2-uri.html | 1 <?xml version="1.0" encoding="UTF-8"?> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 5 <title>uri: library of generic URI related routines</title> 16 <a accesskey="p" href="libxml2-tree.html"> 31 <a accesskey="n" href="libxml2-valid.html"> 39 <span class="refentrytitle">uri</span> 41 <p>uri - library of generic URI related routines</p> 42 <p>library of generic URI related routines Implements RFC 2396 </p> 47 typedef <a href="libxml2-uri.html#xmlURI">xmlURI</a> * <a href="#xmlURIPtr">xmlURIPtr</a>; 49 …lPrintURI</a> (FILE * stream, <br/> <a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri); [all …]
|
/third_party/cups-filters/cupsfilters/ |
D | ipp.c | 2 This file is part of cups-filters. 16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 40 enum resolve_uri_converter_type /**** Resolving DNS-SD based URI ****/ 42 CUPS_BACKEND_URI_CONVERTER = -1, 54 port = port*10 + (a[i] - '0'); in convert_to_port() 66 LOGSIZE - strlen(log) - 1, in log_printf() 68 log[LOGSIZE - 1] = '\0'; in log_printf() 76 const char *uri; in resolve_uri() local 80 /* Eliminate any output to stderr, to get rid of the CUPS-backend-specific in resolve_uri() 89 resolved and not whatever URI is set in DEVICE_URI */ in resolve_uri() [all …]
|
/third_party/node/deps/npm/node_modules/strict-uri-encode/ |
D | package.json | 2 "_from": "strict-uri-encode@^2.0.0", 3 "_id": "strict-uri-encode@2.0.0", 5 "_integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=", 6 "_location": "/strict-uri-encode", 11 "raw": "strict-uri-encode@^2.0.0", 12 "name": "strict-uri-encode", 13 "escapedName": "strict-uri-encode", 19 "/query-string" 21 "_resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", 23 "_spec": "strict-uri-encode@^2.0.0", [all …]
|
/third_party/gstreamer/gstplugins_bad/sys/applemedia/ |
D | iosassetsrc.m | 4 * Copyright (C) 2013 Sebastian Dröge <slomo@circular-chaos.org> 20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 21 * Boston, MA 02111-1307, USA. 24 * SECTION:element-iosassetsrc 32 …* gst-launch-1.0 iosassetsrc uri=assets-library://asset/asset.M4V?id=11&ext=M4V ! decodebin ! auto… 108 gobject_class->set_property = gst_ios_asset_src_set_property; 109 gobject_class->get_property = gst_ios_asset_src_get_property; 112 g_param_spec_string ("uri", "Asset URI", 113 "URI of the asset to read", NULL, 117 gobject_class->finalize = gst_ios_asset_src_finalize; [all …]
|
/third_party/node/deps/npm/test/tap/ |
D | config-credentials.js | 4 var common = require('../common-config.js') 6 var URI = 'https://registry.lvh.me:8661/' variable 12 var basic = conf.getCredentialsByURI(URI) 19 test('trying to set credentials with no URI', function (t) { 25 }, 'enforced missing URI') 31 test('trying to clear credentials with no URI', function (t) { 37 }, 'enforced missing URI') 48 conf.setCredentialsByURI(URI) 60 conf.setCredentialsByURI(URI, {}) 72 conf.setCredentialsByURI(URI, { token: 'simple-token' }) [all …]
|
/third_party/gstreamer/gstplugins_base/gst/gio/ |
D | gstgiosink.c | 4 * Copyright (C) 2007-2009 Sebastian Dröge <sebastian.droege@collabora.co.uk> 19 * Boston, MA 02110-1301, USA. 23 * SECTION:element-giosink 28 * by an URI. This location can be specified using any protocol supported by 32 * If the URI or #GFile already exists giosink will post a message of 33 * type %GST_MESSAGE_ELEMENT with name "file-exists" on the bus. The message 34 * also contains the #GFile and the corresponding URI. 35 * Applications can use the "file-exists" message to notify the user about 37 * existing file. Note that right after the "file-exists" message a normal 38 * error message is posted on the bus which should be ignored if "file-exists" [all …]
|
/third_party/libcoap/src/ |
D | uri.c | 1 /* uri.c -- helper functions for URI treatment 3 * Copyright (C) 2010--2012,2015-2016 Olaf Bergmann <bergmann@tzi.org> 5 * SPDX-License-Identifier: BSD-2-Clause 23 * A length-safe version of strchr(). This function returns a pointer 36 --len; in strnchr() 42 ((a) == (b) || (islower(b) && ((a) == ((b) - 0x20)))) 52 coap_uri_t *uri, in coap_split_uri_sub() argument 59 if (!str_var || !uri) in coap_split_uri_sub() 60 return -1; in coap_split_uri_sub() 62 memset(uri, 0, sizeof(coap_uri_t)); in coap_split_uri_sub() [all …]
|
/third_party/node/deps/npm/node_modules/decode-uri-component/ |
D | package.json | 2 "_from": "decode-uri-component@^0.2.0", 3 "_id": "decode-uri-component@0.2.0", 5 "_integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", 6 "_location": "/decode-uri-component", 11 "raw": "decode-uri-component@^0.2.0", 12 "name": "decode-uri-component", 13 "escapedName": "decode-uri-component", 19 "/query-string" 21 "_resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", 23 "_spec": "decode-uri-component@^0.2.0", [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/ |
D | dpp-nfc.py | 4 # Copyright (c) 2012-2013, Jouni Malinen <j@w1.fi> 5 # Copyright (c) 2019-2020, The Linux Foundation 82 if os.path.basename(ctrl).startswith("p2p-dev-"): 94 def dpp_nfc_uri_process(uri): argument 98 peer_id = wpas.request("DPP_NFC_URI " + uri) 100 summary("Could not parse DPP URI from NFC URI record", color=C_RED) 103 summary("peer_id=%d for URI from NFC Tag: %s" % (peer_id, uri)) 129 summary("Unexpected URI Identifier Code", color=C_RED) 133 uri = uribuf.decode() 135 summary("Invalid URI payload", color=C_RED) [all …]
|
/third_party/libxml2/doc/html/ |
D | libxml-uri.html | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xht… 3 …s="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset… 4 TD {font-family: Verdana,Arial,Helvetica} 5 BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} 6 H1 {font-family: Verdana,Arial,Helvetica} 7 H2 {font-family: Verdana,Arial,Helvetica} 8 H3 {font-family: Verdana,Arial,Helvetica} 9 A:link, A:visited, A:active { text-decoration: underline } 11 div.deprecated pre.programlisting {border-style: double;border-color:red} [all …]
|