HomeSort by relevance Sort by last modified time
    Searched defs:proxy (Results 251 - 275 of 820) sorted by null

<<11121314151617181920>>

  /external/v8/src/parsing/
pattern-rewriter.cc 136 VariableProxy* proxy = local
139 proxy, descriptor_->scope, descriptor_->declaration_pos);
155 DCHECK(proxy->is_resolved());
178 MarkLoopVariableAsAssigned(var_init_scope, proxy->var());
233 proxy = var_init_scope->NewUnresolved(factory(), name);
235 DCHECK_NOT_NULL(proxy);
236 DCHECK_NOT_NULL(proxy->var());
241 factory()->NewAssignment(Token::INIT, proxy, value, pos);
537 Expression* proxy = factory()->NewVariableProxy(completion); local
539 Token::ASSIGN, proxy,
549 Expression* proxy = factory()->NewVariableProxy(completion); local
    [all...]
  /external/webrtc/webrtc/p2p/base/
portallocator.h 58 // Disallow use of UDP when connecting to a relay server. Since proxy servers
200 const rtc::ProxyInfo& proxy() const { return proxy_; } function in class:cricket::PortAllocator
201 void set_proxy(const std::string& agent, const rtc::ProxyInfo& proxy) {
203 proxy_ = proxy;
  /frameworks/base/core/jni/
android_view_Surface.cpp 554 RenderProxy* proxy = new RenderProxy(false, rootNode, &factory); local
555 proxy->loadSystemProperties();
557 proxy->setWideGamut(true);
559 proxy->setSwapBehavior(SwapBehavior::kSwap_discardBuffer);
560 proxy->initialize(surface);
563 proxy->setup(0, 0, 0);
564 proxy->setLightCenter((Vector3){0, 0, 0});
565 return (jlong) proxy;
569 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(rendererPtr); local
571 proxy->updateSurface(surface)
575 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(rendererPtr); local
584 RenderProxy* proxy = reinterpret_cast<RenderProxy*>(rendererPtr); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
RecentsAnimation.java 133 final AssistDataReceiverProxy proxy = new AssistDataReceiverProxy( local
136 mWindowManager, appOpsManager, proxy, this, OP_ASSIST_STRUCTURE, OP_NONE);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ProxySelectorTest.java 21 import java.net.Proxy;
112 // no proxy, return a proxyList only contains NO_PROXY
114 assertProxyEquals(proxyList, Proxy.NO_PROXY);
116 // set http proxy
119 // set https proxy
122 // set ftp proxy
125 // set socks proxy
130 assertProxyEquals(proxyList, Proxy.Type.HTTP, HTTP_PROXY_HOST, HTTP_PROXY_PORT);
133 assertProxyEquals(proxyList, Proxy.Type.HTTP, HTTPS_PROXY_HOST, HTTPS_PROXY_PORT);
136 assertProxyEquals(proxyList, Proxy.Type.HTTP, FTP_PROXY_HOST, FTP_PROXY_PORT)
527 Proxy proxy = new Proxy(type, sa); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/beans/
PropertyChangeSupportTest.java 196 PropertyChangeListenerProxy proxy = new PropertyChangeListenerProxy("a", listener); local
197 support.addPropertyChangeListener("b", proxy);
199 // this proxy sets us up to receive 'b' events
205 // there's no more proxy on 'a'.
260 PropertyChangeListenerProxy proxy = (PropertyChangeListenerProxy) listener; local
261 return proxy.getPropertyName() + " to " + describe(proxy.getListener());
  /external/guice/extensions/persist/lib/
cglib-nodep-3.0.jar 
  /prebuilts/devtools/tools/lib/
cglib-nodep-3.1.jar 
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/3.1/
cglib-nodep-3.1.jar 
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/2.2.2/
cglib-nodep-2.2.2.jar 
  /art/test/004-JniTest/src/
Main.java 22 import java.lang.reflect.Proxy;
250 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
257 SimpleInterface proxy = local
258 (SimpleInterface) Proxy.newProxyInstance(SimpleInterface.class.getClassLoader(),
263 if (testGetMethodID(proxy.getClass()) == 0) {
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServer.java 72 private boolean proxy = false; field in class:Support_HttpServer
282 // redirection to a proxy passes an absolute URI to the
283 // proxy server
395 if (!proxy) {
396 print(os, "HTTP/1.1 " + 305 + " Use Proxy\r\n");
400 print(os, "\r\nNOT PROXY");
514 * Sets the proxy.
516 * @param proxy The proxy to set
518 public void setProxy(boolean proxy) {
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_structures.h 67 struct Proxy;
75 struct Proxy *proxies_head;
76 struct Proxy *proxies_tail;
103 struct Proxy
110 struct Proxy *next;
111 struct Proxy *prev;
134 struct Proxy * proxy; member in struct:HTTP_URI
182 #define SPDY_HTTP_HEADER_PROXY_CONNECTION "proxy-connection"
286 free_proxy(struct Proxy *proxy)
    [all...]
  /external/netcat/
netcat.c 78 char *Pflag; /* Proxy username */
86 int xflag; /* Socks proxy */
131 char *proxy; local
157 socksv = -1; /* HTTP proxy CONNECT */
163 errx(1, "unsupported proxy protocol");
236 if ((proxy = strdup(optarg)) == NULL)
342 errx(1, "no proxy support for UDP mode");
345 errx(1, "no proxy support for listen");
348 errx(1, "no proxy support for unix sockets");
350 /* XXX IPv6 transport to proxy would probably work *
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
OkHttpClient.java 28 import java.net.Proxy;
122 private Proxy proxy; field in class:OkHttpClient
156 this.proxy = okHttpClient.proxy;
239 * Sets the HTTP proxy that will be used by connections created by this
241 * only honored when this proxy is null (which it is by default). To disable
242 * proxy use completely, call {@code setProxy(Proxy.NO_PROXY)}.
244 public OkHttpClient setProxy(Proxy proxy)
    [all...]
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
HttpURLConnectionImpl.java 53 import java.net.Proxy;
518 * <li>A specific proxy was explicitly configured for this connection.
519 * <li>The response has already been retrieved, and a proxy was {@link
527 Proxy proxy = route != null local
530 return proxy != null && proxy.type() != Proxy.Type.DIRECT;
  /external/skia/src/effects/
SkDisplacementMapEffect.cpp 483 OptimizationFlags(that.fColorSampler.proxy()->config()))
620 GrSurfaceProxy* proxy = displacementMap.textureSampler(1).proxy(); local
621 GrTexture* colorTex = proxy->priv().peekTexture();
626 proxy->origin() == kTopLeft_GrSurfaceOrigin ?
628 fGLDomain.setData(pdman, displacementMap.domain(), proxy);
SkMorphologyImageFilter.cpp 146 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, Direction dir,
149 new GrMorphologyEffect(std::move(proxy), dir, radius, type, nullptr));
152 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, Direction dir,
155 new GrMorphologyEffect(std::move(proxy), dir, radius, type, bounds));
294 GrSurfaceProxy* proxy = m.textureSampler(0).proxy(); local
295 GrTexture& texture = *proxy->priv().peekTexture();
313 proxy->origin() == kBottomLeft_GrSurfaceOrigin) {
323 GrMorphologyEffect::GrMorphologyEffect(sk_sp<GrTextureProxy> proxy,
328 : INHERITED(kGrMorphologyEffect_ClassID, ModulateByConfigOptimizationFlags(proxy->config())
383 sk_sp<GrTextureProxy> proxy = d->textureProxy(texIdx); local
    [all...]
SkTableColorFilter.cpp 347 ColorTableEffect(sk_sp<GrTextureProxy> proxy, GrTextureStripAtlas* atlas, int row);
457 sk_sp<GrTextureProxy> proxy; local
468 proxy = GrMakeCachedImageProxy(context->contextPriv().proxyProvider(), std::move(srcImage));
470 proxy = atlas->asTextureProxyRef();
473 if (!proxy) {
477 return std::unique_ptr<GrFragmentProcessor>(new ColorTableEffect(std::move(proxy), atlas, row));
480 ColorTableEffect::ColorTableEffect(sk_sp<GrTextureProxy> proxy, GrTextureStripAtlas* atlas, int row)
483 , fTextureSampler(std::move(proxy))
498 new ColorTableEffect(sk_ref_sp(fTextureSampler.proxy()), fAtlas, fRow));
  /external/skia/src/image/
SkImage_Lazy.cpp 107 // Returns the texture proxy. If the cacherator is generating the texture and wants to cache it,
264 // works, so we require that the formats we choose are renderable (as a proxy for being readable).
700 GrTextureProxy* proxy, GrTextureProxy* originalProxy,
703 SkASSERT(proxy->origin() == kTopLeft_GrSurfaceOrigin);
706 SkASSERT(GrMipMapped::kYes == proxy->mipMapped() &&
708 // If we had an originalProxy with a valid key, that means there already is a proxy in
710 // Thus we must remove the unique key from that proxy.
713 proxyProvider->assignUniqueKeyToProxy(key, proxy);
766 sk_sp<GrTextureProxy> proxy; local
770 proxy = proxyProvider->findOrCreateProxyByUniqueKey(key, kTopLeft_GrSurfaceOrigin)
    [all...]
  /external/skia/tests/
ReadPixelsTest.cpp 466 sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(desc, SkBudgeted::kNo, local
471 std::move(proxy));
  /external/skqp/src/effects/
SkDisplacementMapEffect.cpp 483 OptimizationFlags(that.fColorSampler.proxy()->config()))
620 GrSurfaceProxy* proxy = displacementMap.textureSampler(1).proxy(); local
621 GrTexture* colorTex = proxy->priv().peekTexture();
626 proxy->origin() == kTopLeft_GrSurfaceOrigin ?
628 fGLDomain.setData(pdman, displacementMap.domain(), proxy);
SkMorphologyImageFilter.cpp 146 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, Direction dir,
149 new GrMorphologyEffect(std::move(proxy), dir, radius, type, nullptr));
152 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy, Direction dir,
155 new GrMorphologyEffect(std::move(proxy), dir, radius, type, bounds));
294 GrSurfaceProxy* proxy = m.textureSampler(0).proxy(); local
295 GrTexture& texture = *proxy->priv().peekTexture();
313 proxy->origin() == kBottomLeft_GrSurfaceOrigin) {
323 GrMorphologyEffect::GrMorphologyEffect(sk_sp<GrTextureProxy> proxy,
328 : INHERITED(kGrMorphologyEffect_ClassID, ModulateByConfigOptimizationFlags(proxy->config())
383 sk_sp<GrTextureProxy> proxy = d->textureProxy(texIdx); local
    [all...]
SkTableColorFilter.cpp 347 ColorTableEffect(sk_sp<GrTextureProxy> proxy, GrTextureStripAtlas* atlas, int row);
453 sk_sp<GrTextureProxy> proxy; local
457 proxy = GrMakeCachedBitmapProxy(context->contextPriv().proxyProvider(), bitmap);
459 proxy = atlas->asTextureProxyRef();
462 if (!proxy) {
466 return std::unique_ptr<GrFragmentProcessor>(new ColorTableEffect(std::move(proxy), atlas, row));
469 ColorTableEffect::ColorTableEffect(sk_sp<GrTextureProxy> proxy, GrTextureStripAtlas* atlas, int row)
472 , fTextureSampler(std::move(proxy))
487 new ColorTableEffect(sk_ref_sp(fTextureSampler.proxy()), fAtlas, fRow));
  /external/skqp/src/gpu/
GrContext.cpp 79 GrDDLContext(GrContextThreadSafeProxy* proxy) : INHERITED(proxy) {}
206 sk_sp<GrContext> GrContextPriv::MakeDDL(GrContextThreadSafeProxy* proxy) {
207 sk_sp<GrContext> context(new GrDDLContext(proxy));
211 if (!context->init(proxy->fOptions)) {
226 GrContext::GrContext(GrContextThreadSafeProxy* proxy)
227 : fCaps(proxy->fCaps)
228 , fUniqueID(proxy->fContextUniqueID)
229 , fBackend(proxy->fBackend) {
450 void GrContextPriv::flush(GrSurfaceProxy* proxy) {
717 sk_sp<GrTextureProxy> proxy = src->asTextureProxyRef(); local
834 sk_sp<GrTextureProxy> proxy; local
858 sk_sp<GrSurfaceProxy> proxy = this->proxyProvider()->createWrappedTextureProxy(tex, origin); local
892 sk_sp<GrSurfaceProxy> proxy = this->proxyProvider()->createWrappedRenderTargetProxy(backendRT, local
    [all...]

Completed in 1370 milliseconds

<<11121314151617181920>>