/third_party/skia/tests/ |
H A D | LazyProxyTest.cpp | 29 // This test verifies that lazy proxy callbacks get invoked during flush, after onFlush callbacks, 30 // but before Ops are executed. It also ensures that lazy proxy callbacks are invoked both for 294 sk_sp<GrTextureProxy> proxy = proxyProvider->createLazyProxy( in DEF_GPUTEST() local 300 REPORTER_ASSERT(reporter, proxy.get()); in DEF_GPUTEST() 304 proxy->priv().doLazyInstantiation(ctx->priv().resourceProvider()); in DEF_GPUTEST() 312 proxy.reset(); in DEF_GPUTEST() 315 proxy.reset(); in DEF_GPUTEST() 401 // Test that when a lazy proxy fails to instantiate during flush that we drop the Op that it was
|
H A D | ProgramsTest.cpp | 253 auto proxy = proxyProvider->createProxy(format, kDims, GrRenderable::kYes, 1, in ProgramUnitTest() local 257 views[0] = {{std::move(proxy), kBottomLeft_GrSurfaceOrigin, swizzle}, in ProgramUnitTest() 264 auto proxy = proxyProvider->createProxy(format, kDims, GrRenderable::kNo, 1, mipMapped, in ProgramUnitTest() local 268 views[1] = {{std::move(proxy), kTopLeft_GrSurfaceOrigin, swizzle}, in ProgramUnitTest()
|
H A D | ImageFilterCacheTest.cpp | 217 if (!srcView.proxy()) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 221 if (!srcView.proxy()->instantiate(dContext->priv().resourceProvider())) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 224 GrTexture* tex = srcView.proxy()->peekTexture(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 258 if (!srcView.proxy()) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
/third_party/nghttp2/src/ |
H A D | shrpx_http2_session.cc | 389 const auto &proxy = get_config()->downstream_http_proxy; in initiate_connection() local 390 if (!proxy.host.empty() && state_ == Http2SessionState::DISCONNECTED) { in initiate_connection() 392 SSLOG(INFO, this) << "Connecting to the proxy " << proxy.host << ":" in initiate_connection() 393 << proxy.port; in initiate_connection() 396 conn_.fd = util::create_nonblock_socket(proxy.addr.su.storage.ss_family); in initiate_connection() 400 SSLOG(WARN, this) << "Backend proxy socket() failed; addr=" in initiate_connection() 401 << util::to_numeric_addr(&proxy.addr) in initiate_connection() 408 rv = connect(conn_.fd, &proxy.addr.su.sa, proxy in initiate_connection() 704 const auto &proxy = get_config()->downstream_http_proxy; downstream_connect_proxy() local 2206 const auto &proxy = get_config()->downstream_http_proxy; should_hard_fail() local [all...] |
/third_party/googletest/googletest/include/gtest/internal/ |
H A D | gtest-type-util.h | 176 using proxy = typename std::conditional<is_proxy_type_list<T>::value, T, 180 using type = typename proxy::type;
|
/third_party/jsframework/runtime/main/reactivity/ |
H A D | state.js | 6 proxy 36 proxy(vm, keys[i], data);
|
/third_party/skia/src/gpu/ |
H A D | GrYUVATextureProxies.cpp | 84 num_channels(views[i].proxy()->backendFormat().channelMask())); in GrYUVATextureProxies() 90 if (views[i].proxy()->asTextureProxy()->mipmapped() == GrMipmapped::kNo) { in GrYUVATextureProxies() 102 // Run each location through the proxy view's swizzle to get the actual texture format channel. in GrYUVATextureProxies()
|
H A D | GrProxyProvider.h | 34 * Assigns a unique key to a proxy. The proxy will be findable via this key using 35 * findProxyByUniqueKey(). It is an error if an existing proxy already has a key. 40 * Sets the unique key of the provided proxy to the unique key of the surface. The surface must 43 void adoptUniqueKeyFromSurface(GrTextureProxy* proxy, const GrSurface*); 46 * Removes a unique key from a proxy. If the proxy has already been instantiated, it will 52 * Finds a proxy by unique key. 57 * Finds a proxy by unique key or creates a new one that wraps a resource matching the unique 64 * A helper that uses findOrCreateProxyByUniqueKey() to find a proxy an [all...] |
H A D | GrPipeline.h | 133 * GrXferProcessor does not use the dst color then the proxy on the GrSurfaceProxyView will be 182 if (this->dstProxyView().proxy()) { in allProxiesInstantiated() 183 return this->dstProxyView().proxy()->isInstantiated(); in allProxiesInstantiated()
|
/third_party/skia/include/ports/ |
H A D | SkFontMgr_indirect.h | 30 SkFontMgr_Indirect(sk_sp<SkFontMgr> impl, sk_sp<SkRemotableFontMgr> proxy) in SkFontMgr_Indirect() argument 31 : fImpl(std::move(impl)), fProxy(std::move(proxy)) in SkFontMgr_Indirect()
|
/third_party/skia/src/gpu/v1/ |
H A D | SurfaceDrawContext.cpp | 130 sk_sp<GrSurfaceProxy> proxy, in Make() 135 if (!rContext || !proxy || colorType == GrColorType::kUnknown) { in Make() 139 const GrBackendFormat& format = proxy->backendFormat(); in Make() 143 GrSurfaceProxyView readView ( proxy, origin, readSwizzle); in Make() 144 GrSurfaceProxyView writeView(std::move(proxy), origin, writeSwizzle); in Make() 177 sk_sp<GrTextureProxy> proxy = rContext->priv().proxyProvider()->createProxy( in Make() local 186 if (!proxy) { in Make() 190 GrSurfaceProxyView readView ( proxy, origin, readSwizzle); in Make() 191 GrSurfaceProxyView writeView(std::move(proxy), origin, writeSwizzle); in Make() 223 sk_sp<GrTextureProxy> proxy in Make() local 128 Make(GrRecordingContext* rContext, GrColorType colorType, sk_sp<GrSurfaceProxy> proxy, sk_sp<SkColorSpace> colorSpace, GrSurfaceOrigin origin, const SkSurfaceProps& surfaceProps, bool flushTimeOpsTask) Make() argument [all...] |
/third_party/python/Lib/urllib/ |
H A D | request.py | 185 In addition, if proxy settings are detected (for example, when a *_proxy 187 installed and makes sure the requests are handled through the proxy. 758 def _parse_proxy(proxy): 765 scheme, r_scheme = _splittype(proxy) 769 authority = proxy 773 raise ValueError("proxy URL with no authority: %r" % proxy) 803 lambda r, proxy=url, type=type, meth=self.proxy_open: 804 meth(r, proxy, type)) 806 def proxy_open(self, req, proxy, typ [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | keys.cc | 221 Maybe<bool> KeyAccumulator::AddKeysFromJSProxy(Handle<JSProxy> proxy, in AddKeysFromJSProxy() argument 227 FilterProxyKeys(this, proxy, keys, filter_, skip_indices_), in AddKeysFromJSProxy() 230 // https://tc39.es/ecma262/#sec-proxy-object-internal-methods-and-internal-slots-ownpropertykeys in AddKeysFromJSProxy() 1183 // ES6 #sec-proxy-object-internal-methods-and-internal-slots-ownpropertykeys 1186 Handle<JSProxy> proxy) { in CollectOwnJSProxyKeys() 1191 handle(proxy->property_dictionary_swiss(), isolate_), this)); in CollectOwnJSProxyKeys() 1194 handle(proxy->property_dictionary(), isolate_), this)); in CollectOwnJSProxyKeys() 1200 Handle<Object> handler(proxy->handler(), isolate_); in CollectOwnJSProxyKeys() 1203 if (proxy->IsRevoked()) { in CollectOwnJSProxyKeys() 1209 Handle<JSReceiver> target(JSReceiver::cast(proxy in CollectOwnJSProxyKeys() 1185 CollectOwnJSProxyKeys(Handle<JSReceiver> receiver, Handle<JSProxy> proxy) CollectOwnJSProxyKeys() argument 1357 CollectOwnJSProxyTargetKeys( Handle<JSProxy> proxy, Handle<JSReceiver> target) CollectOwnJSProxyTargetKeys() argument [all...] |
/third_party/curl/lib/ |
H A D | http_aws_sigv4.h | 29 CURLcode Curl_output_aws_sigv4(struct Curl_easy *data, bool proxy);
|
/third_party/skia/src/gpu/text/ |
H A D | GrAtlasManager.cpp | 221 * Write the contents of the surface proxy to a PNG. Returns true if successful. 226 if (!view.proxy()) { 230 auto ii = SkImageInfo::Make(view.proxy()->dimensions(), kRGBA_8888_SkColorType, 274 SkASSERT(views[pageIdx].proxy());
|
/third_party/node/deps/googletest/include/gtest/internal/ |
H A D | gtest-type-util.h | 206 using proxy = typename std::conditional<is_proxy_type_list<T>::value, T, 210 using type = typename proxy::type;
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-forin.cc | 68 // Continue lookup on the proxy's prototype. in HasEnumerableProperty() 69 Handle<JSProxy> proxy = it.GetHolder<JSProxy>(); in HasEnumerableProperty() local 72 JSProxy::GetPrototype(proxy), Object); in HasEnumerableProperty()
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
H A D | mhd2spdy_structures.h | 134 struct Proxy * proxy; member 182 #define SPDY_HTTP_HEADER_PROXY_CONNECTION "proxy-connection" 286 free_proxy(struct Proxy *proxy);
|
H A D | mhd2spdy_http.h | 20 * @brief HTTP part of the proxy. libmicrohttpd is used for the server side. 45 http_create_response(struct Proxy* proxy, char **nv);
|
/third_party/skia/gm/ |
H A D | bc1_transparency.cpp | 125 GrTextureProxy* proxy = sk_gpu_test::GetTextureImageProxy(image.get(), in draw_image() local 127 isCompressed = caps->isFormatCompressed(proxy->backendFormat()); in draw_image()
|
/third_party/skia/src/gpu/ops/ |
H A D | AtlasTextOp.cpp | 217 SkASSERT(views[0].proxy()); in onPrepareDraws() 225 primProcProxies[i] = views[i].proxy(); in onPrepareDraws() 228 target->sampledProxyArray()->push_back(views[i].proxy()); in onPrepareDraws() 355 flushInfo->fPrimProcProxies[i] = views[i].proxy(); in createDrawForGeneratedGlyphs() 358 target->sampledProxyArray()->push_back(views[i].proxy()); in createDrawForGeneratedGlyphs()
|
/third_party/skia/src/image/ |
H A D | SkImage_Lazy.cpp | 302 // DDL TODO: Currently we end up creating a lazy proxy that will hold onto a ref to the in textureProxyViewFromPlanes() 304 // life time of the proxy and not just upload. For non-DDL draws we should look into in textureProxyViewFromPlanes() 450 auto proxy = proxyProvider->findOrCreateProxyByUniqueKey(key); in lockTextureProxyView() local 451 if (proxy) { in lockTextureProxyView() 452 GrSwizzle swizzle = caps->getReadSwizzle(proxy->backendFormat(), ct); in lockTextureProxyView() 453 GrSurfaceProxyView view(std::move(proxy), kTopLeft_GrSurfaceOrigin, swizzle); in lockTextureProxyView() 458 // We need a mipped proxy, but we found a cached proxy that wasn't mipped. Thus we in lockTextureProxyView() 459 // generate a new mipped surface and copy the original proxy into the base layer. We in lockTextureProxyView() 463 // We failed to make a mipped proxy wit in lockTextureProxyView() [all...] |
/third_party/skia/src/effects/imagefilters/ |
H A D | SkArithmeticImageFilter.cpp | 351 SkASSERT(backgroundView.proxy()); in filterImageGPU() 352 isProtected = backgroundView.proxy()->isProtected(); in filterImageGPU() 357 SkASSERT(foregroundView.proxy()); in filterImageGPU() 358 isProtected = foregroundView.proxy()->isProtected(); in filterImageGPU()
|
/third_party/python/Tools/gdb/ |
H A D | libpython.py | 20 process, we can generate a "proxy value" within the gdb process. For example, 23 generate a proxy value within the gdb process that is a list of bytes 306 # Default implementation: generate a proxy value and write its repr 406 Placeholder proxy to use when protecting against infinite recursion due to 909 proxy = self.proxyval(visited) 910 out.write("%s" % proxy) 1296 proxy = self.proxyval(visited) 1301 if "'" in proxy and not '"' in proxy: 1305 for byte in proxy [all...] |
/third_party/lwip/src/include/lwip/apps/ |
H A D | altcp_proxyconnect.h | 3 * Application layered TCP connection API that executes a proxy-connect. 5 * This file provides a starting layer that executes a proxy-connect e.g. to 6 * set up TLS connections through a http proxy. 67 struct altcp_proxyconnect_config proxy; member
|