/external/openscreen/osp/impl/presentation/ |
D | url_availability_requester.cc | 28 std::vector<std::string>* urls, in PartitionUrlsBySetMembership() argument 31 urls->begin(), urls->end(), [&membership_test](const std::string& url) { in PartitionUrlsBySetMembership() 60 void UrlAvailabilityRequester::AddObserver(const std::vector<std::string>& urls, in AddObserver() argument 62 for (const auto& url : urls) { in AddObserver() 67 receiver->GetOrRequestAvailabilities(urls, observer); in AddObserver() 72 const std::vector<std::string>& urls, in RemoveObserverUrls() argument 75 for (const auto& url : urls) { in RemoveObserverUrls() 125 std::vector<std::string> urls; in AddReceiver() local 126 urls.reserve(observers_by_url_.size()); in AddReceiver() 128 urls.push_back(url.first); in AddReceiver() [all …]
|
D | url_availability_requester.h | 41 void AddObserver(const std::vector<std::string>& urls, 48 void RemoveObserverUrls(const std::vector<std::string>& urls, 82 std::vector<std::string> urls; member 87 std::vector<std::string> urls; member 98 void RequestUrlAvailabilities(std::vector<std::string> urls); 100 const std::vector<std::string>& urls); 103 const std::vector<std::string>& urls,
|
/external/openscreen/osp/msgs/ |
D | messages_unittest.cc | 21 std::vector<std::string> urls; in TEST() local 23 PresentationUrlAvailabilityRequest{3, urls}, buffer, sizeof(buffer)); in TEST() 32 EXPECT_EQ(urls, decoded_request.urls); in TEST() 37 std::vector<std::string> urls{"https://example.com/receiver.html"}; in TEST() local 39 PresentationUrlAvailabilityRequest{7, urls}, buffer, sizeof(buffer)); in TEST() 48 EXPECT_EQ(urls, decoded_request.urls); in TEST() 53 std::vector<std::string> urls{"https://example.com/receiver.html", in TEST() local 57 PresentationUrlAvailabilityRequest{7, urls}, buffer, sizeof(buffer)); in TEST() 66 EXPECT_EQ(urls, decoded_request.urls); in TEST() 71 std::vector<std::string> urls{"https://example.com/receiver.html"}; in TEST() local [all …]
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
D | URLClassLoaderTest.java | 75 public URLClassLoaderExt(URL[] urls) { in URLClassLoaderExt() argument 76 super(urls); in URLClassLoaderExt() 122 URL[] urls = new URL[2]; in test_findResourcesLjava_lang_String() local 123 urls[0] = new URL(serverURL); in test_findResourcesLjava_lang_String() 124 urls[1] = new URL(serverURL + "/subdir1/"); in test_findResourcesLjava_lang_String() 125 ucl = new URLClassLoader(urls); in test_findResourcesLjava_lang_String() 152 URL[] urls = new URL[4]; in test_getURLs() local 153 urls[0] = new URL("http://" + Support_Configuration.HomeAddress); in test_getURLs() 154 urls[1] = new URL("http://" + Support_Configuration.TestResources + "/"); in test_getURLs() 155 urls[2] = new URL("ftp://" + Support_Configuration.TestResources + "/"); in test_getURLs() [all …]
|
/external/autotest/frontend/ |
D | urls.py | 2 from django.conf import urls 15 urlpatterns = urls.patterns( 17 (RE_PREFIX + r'admin/', urls.include(admin.site.urls)), 18 (RE_PREFIX, urls.include('frontend.afe.urls')), 19 (TKO_RE_PREFIX, urls.include('frontend.tko.urls')), 24 urlpatterns += urls.patterns( 25 '', (TKO_RE_PREFIX, urls.include('frontend.tko.site_urls'))) 27 debug_patterns = urls.patterns(
|
/external/autotest/server/ |
D | afe_urls_unittest.py | 30 urls = afe_urls.AfeUrls('http://localhost/afe/') 31 got = urls._geturl({'foo': 'bar', 'spam': 'eggs'}) 36 urls = afe_urls.AfeUrls('http://localhost/afe/') 37 got = urls.get_host_url(42) 44 urls = afe_urls.AfeUrls('http://localhost/afe/') 45 self.assertEqual(urls.root_url, 'http://localhost/afe/') 55 urls = afe_urls.AfeUrls.from_hostname('sharanohiar') 56 self.assertEqual(urls.root_url, 'http://sharanohiar/afe/')
|
/external/tensorflow/tensorflow/ |
D | workspace2.bzl | 135 …urls = tf_mirror_urls("https://github.com/google/XNNPACK/archive/8e3d3359f9bec608e09fac1f7054a2a14… 143 …urls = tf_mirror_urls("https://github.com/Maratyszcza/FXdiv/archive/63058eff77e11aa15bf531df5dd343… 150 …urls = tf_mirror_urls("https://github.com/Maratyszcza/pthreadpool/archive/b8374f80e42010941bda6c85… 157 …urls = tf_mirror_urls("https://github.com/pytorch/cpuinfo/archive/5e63739504f0f8e18e941bd63b2d6d42… 164 …urls = tf_mirror_urls("https://github.com/pytorch/cpuinfo/archive/5e63739504f0f8e18e941bd63b2d6d42… 173 … urls = tf_mirror_urls("https://github.com/NVIDIA/cudnn-frontend/archive/refs/tags/v0.6.2.zip"), 181 urls = tf_mirror_urls("https://github.com/oneapi-src/oneDNN/archive/v0.21.3.tar.gz"), 189 … urls = tf_mirror_urls("https://github.com/oneapi-src/oneDNN/archive/refs/tags/v2.6.1.tar.gz"), 197 …urls = tf_mirror_urls("https://github.com/oneapi-src/oneDNN/archive/70d1198de554e61081147c199d661d… 206 … urls = tf_mirror_urls("https://github.com/ARM-software/ComputeLibrary/archive/v22.05.tar.gz"), [all …]
|
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/ |
D | SandboxClassLoader.java | 26 private final ClassLoader urls; field in SandboxClassLoader 36 ClassLoader systemClassLoader, InstrumentationConfiguration config, URL... urls) { in SandboxClassLoader() argument 41 this.urls = new URLClassLoader(urls, null); in SandboxClassLoader() 42 for (URL url : urls) { in SandboxClassLoader() 66 ImmutableList.Builder<URL> urls = ImmutableList.builder(); in parseJavaClassPath() local 70 urls.add(new File(entry).toURI().toURL()); in parseJavaClassPath() 72 urls.add(new URL("file", null, new File(entry).getAbsolutePath())); in parseJavaClassPath() 78 return urls.build().toArray(new URL[0]); in parseJavaClassPath() 90 return urls.getResource(name); in getResource() 96 return urls.getResource(name); in getResource() [all …]
|
/external/XNNPACK/ |
D | WORKSPACE | 9 urls = ["https://github.com/bazelbuild/rules_cc/archive/main.zip"], 15 urls = [ 26 urls = ["https://github.com/google/googletest/archive/master.zip"], 33 urls = ["https://github.com/google/benchmark/archive/master.zip"], 41 urls = [ 52 …urls = ["https://github.com/Maratyszcza/FXdiv/archive/b408327ac2a15ec3e43352421954f5b1967701d1.zip… 60 …urls = ["https://github.com/Maratyszcza/pthreadpool/archive/b8374f80e42010941bda6c85b0e3f1a1bd77a1… 68 urls = [ 79 urls = [ 90 urls = [
|
/external/webrtc/sdk/objc/unittests/ |
D | RTCIceServerTest.mm | 32 EXPECT_EQ(1u, iceStruct.urls.size()); 33 EXPECT_EQ("stun:stun1.example.net", iceStruct.urls.front()); 43 EXPECT_EQ(2u, iceStruct.urls.size()); 44 EXPECT_EQ("turn1:turn1.example.net", iceStruct.urls.front()); 45 EXPECT_EQ("turn2:turn2.example.net", iceStruct.urls.back()); 56 EXPECT_EQ(1u, iceStruct.urls.size()); 57 EXPECT_EQ("turn1:turn1.example.net", iceStruct.urls.front()); 70 EXPECT_EQ(1u, iceStruct.urls.size()); 71 EXPECT_EQ("turn1:turn1.example.net", iceStruct.urls.front()); 86 EXPECT_EQ(1u, iceStruct.urls.size()); [all …]
|
/external/cronet/testing/unexpected_passes_common/ |
D | result_output_unittest.py | 628 urls = [ 635 result_output._OutputAffectedUrls(urls, orphaned_urls, self._file_handle) 656 urls = [ 660 result_output._OutputUrlsForClDescription(urls, [], self._file_handle) 668 urls = [ 676 result_output._OutputUrlsForClDescription(urls, [], self._file_handle) 685 urls = [ 689 result_output._OutputUrlsForClDescription(urls, [], self._file_handle) 699 urls = [ 704 result_output._OutputUrlsForClDescription(urls, [], f) [all …]
|
/external/autotest/utils/ |
D | external_packages.py | 98 urls = () variable in ExternalPackage 560 for url in self.urls: 614 urls = (_CHROMEOS_MIRROR + 'setuptools-%s.tar.gz' % (version,),) variable in SetuptoolsPackage 668 urls = ('http://commondatastorage.googleapis.com/chromeos-mirror/gentoo/' variable in MySQLdbPackage 693 urls = (_CHROMEOS_MIRROR + local_filename,) variable in DjangoPackage 713 urls = (_CHROMEOS_MIRROR + local_filename,) variable in NumpyPackage 726 urls = (_CHROMEOS_MIRROR + local_filename,) variable in GwtPackage 774 urls = (_CHROMEOS_MIRROR + local_filename,) variable in PyudevPackage 794 urls = (_CHROMEOS_MIRROR + url_filename,) variable in PyMoxPackage 816 urls = (_CHROMEOS_MIRROR + local_filename,) variable in PySeleniumPackage [all …]
|
/external/cronet/net/third_party/quiche/src/ |
D | WORKSPACE.bazel | 14 …urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar… 23 …urls = ["https://github.com/abseil/abseil-cpp/archive/32d314d0f5bb0ca3ff71ece49c71a728c128d43e.zip… 30 urls = ["https://github.com/protocolbuffers/protobuf/archive/refs/tags/v3.20.1.tar.gz"], 37 …urls = ["https://github.com/google/boringssl/archive/0acfcff4be10514aacb98eb8ab27bb60136d131b.tar.… 44 …urls = ["https://github.com/google/quic-trace/archive/c7b993eb750e60c307e82f75763600d9c06a6de1.tar… 50 …urls = ["https://storage.googleapis.com/quiche-envoy-integration/googleurl_9cdb1f4d1a365ebdbcbf179… 58 urls = ["https://github.com/madler/zlib/archive/refs/tags/v1.2.12.tar.gz"], 67 …urls = ["https://github.com/google/googletest/archive/12a5852e451baabc79c63a86c634912c563d57bc.zip… 76 urls = ["https://github.com/google/re2/archive/a276a8c738735a0fe45a6ee590fe2df69bcf4502.zip"],
|
/external/cronet/net/tools/quic/benchmark/ |
D | run_client.py | 80 urls = [url] 84 urls.append(url_dir + '/' + resource) 85 page_list.append(urls) 88 def DownloadOnePage(self, urls): argument 102 cmd_in_list.extend(urls) 129 header = [urls[0].rsplit('/', 1)[1] for urls in page_list] 138 for urls in page_list: 139 time_micros, num_packets = self.DownloadOnePage(urls)
|
/external/cronet/third_party/protobuf/ |
D | protobuf_deps.bzl | 24 urls = [ 36 urls = ["https://github.com/madler/zlib/archive/v1.2.11.tar.gz"], 44 …urls = ["https://github.com/bazelbuild/rules_cc/archive/818289e5613731ae410efb54218a4077fb9dbb03.t… 52 …urls = ["https://github.com/bazelbuild/rules_java/archive/981f06c3d2bd10225e85209904090eb7b5fb26bd… 60 …urls = ["https://github.com/bazelbuild/rules_proto/archive/f7a30f6f80006b591fa7c437fe5a951eb10bcbc… 67 …urls = ["https://github.com/bazelbuild/rules_python/releases/download/0.1.0/rules_python-0.1.0.tar… 75 …urls = ["https://github.com/bazelbuild/rules_jvm_external/archive/906875b0d5eaaf61a8ca2c9c3835bde6… 81 urls = [ 91 …urls = ["https://github.com/bazelbuild/rules_kotlin/releases/download/v1.5.0-beta-4/rules_kotlin_r…
|
/external/rust/crates/grpcio-sys/grpc/bazel/ |
D | grpc_deps.bzl | 161 urls = [ 173 urls = [ 184 urls = [ 197 urls = [ 209 urls = [ 221 urls = [ 232 urls = [ 244 urls = [ 255 urls = [ 267 urls = [ [all …]
|
/external/curl/tests/http/ |
D | test_02_download.py | 63 r = curl.http_download(urls=[url], alpn_proto=proto) 74 r = curl.http_download(urls=[url], alpn_proto=proto) 86 r = curl.http_download(urls=[urln], alpn_proto=proto) 101 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[ 121 r = curl.http_download(urls=[urln], alpn_proto=proto) 141 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[ 158 r = curl.http_download(urls=[urln], alpn_proto=proto, 174 r = curl.http_download(urls=[urln], alpn_proto=proto, 191 r = curl.http_download(urls=[urln], alpn_proto=proto) 203 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[ [all …]
|
D | test_06_eyeballs.py | 54 r = curl.http_download(urls=[urln], extra_args=['--http3-only']) 65 r = curl.http_download(urls=[urln], extra_args=['--http3-only']) 74 r = curl.http_download(urls=[urln], extra_args=['--http3']) 85 r = curl.http_download(urls=[urln], extra_args=['--http3']) 94 r = curl.http_download(urls=[urln]) 104 r = curl.http_download(urls=[urln], extra_args=[ 116 r = curl.http_download(urls=[urln], extra_args=[
|
/external/tflite-support/ |
D | WORKSPACE | 11 urls = [ 23 urls = [ 34 urls = [ 45 urls = [ 62 urls = [ 75 urls = [ 86 urls = [ 96 urls = [ 105 urls = [ 117 urls = [ [all …]
|
/external/angle/build/3pp/ |
D | fetch_github_release.py | 41 urls = [x['browser_download_url'] for x in json_dict['assets']] 44 urls = [x for x in urls if re.search(artifact_regex, x)] 46 if len(urls) != 1: 47 raise Exception('len(urls) != 1: \n' + '\n'.join(urls)) 50 'url': urls,
|
/external/webrtc/sdk/android/api/org/webrtc/ |
D | PeerConnection.java | 170 public final List<String> urls; field in PeerConnection.IceServer 211 private IceServer(String uri, List<String> urls, String username, String password, in IceServer() argument 214 if (uri == null || urls == null || urls.isEmpty()) { in IceServer() 217 for (String it : urls) { in IceServer() 219 throw new IllegalArgumentException("urls element is null: " + urls); in IceServer() 232 this.urls = urls; in IceServer() 243 return urls + " [" + username + ":" + password + "] [" + tlsCertPolicy + "] [" + hostname in toString() 259 return (uri.equals(other.uri) && urls.equals(other.urls) && username.equals(other.username) in equals() 267 Object[] values = {uri, urls, username, password, tlsCertPolicy, hostname, tlsAlpnProtocols, in hashCode() 276 public static Builder builder(List<String> urls) { in builder() argument [all …]
|
/external/python/oauth2client/oauth2client/contrib/django_util/ |
D | site.py | 17 from django.conf import urls 22 urls.url(r'oauth2callback/', views.oauth2_callback, name="callback"), 23 urls.url(r'oauth2authorize/', views.oauth2_authorize, name="authorize") 26 urls = (urlpatterns, "google_oauth", "google_oauth") variable
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/_includes/scripts/lib/ |
D | lazyload.js | 74 if (cur.urls.has(url)) { 75 qi = cur, val = qi.urls.values(); 93 var load = function(type, urls, callback) { 95 _urls = typeof urls === 'string' ? new Set([urls]) : new Set(urls), val, url; 100 if (_urls.is(cur.urls)) { 111 urls: _urls,
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/_includes/scripts/lib/ |
D | lazyload.js | 74 if (cur.urls.has(url)) { 75 qi = cur, val = qi.urls.values(); 93 var load = function(type, urls, callback) { 95 _urls = typeof urls === 'string' ? new Set([urls]) : new Set(urls), val, url; 100 if (_urls.is(cur.urls)) { 111 urls: _urls,
|
/external/cronet/third_party/quic_trace/src/ |
D | WORKSPACE | 10 …urls = ["https://github.com/bazelbuild/bazel-skylib/archive/2169ae1c374aab4a09aa90e65efe1a3aad4e27… 17 urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.14.0.tar.gz"], 31 urls = ["https://www.libsdl.org/release/SDL2-2.0.8.zip"], 39 urls = ["https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.zip"], 50 urls = ["https://download.savannah.gnu.org/releases/freetype/freetype-2.9.tar.gz"], 56 urls = [
|