Searched refs:proxy (Results 1 - 25 of 4322) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DParserDebugger.cs21 DebugEventSocketProxy proxy = new DebugEventSocketProxy( parser, port, null );
22 DebugListener = proxy;
23 parser.TokenStream = new DebugTokenStream( parser.TokenStream, proxy );
26 proxy.handshake();
34 proxy.TreeAdaptor = adap;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammarParser.cs68 DebugEventSocketProxy proxy = new DebugEventSocketProxy( this, port, adaptor );
69 DebugListener = proxy;
70 TokenStream = new DebugTokenStream( input, proxy );
73 proxy.Handshake();
81 proxy.TreeAdaptor = adap;
H A DDebugTreeGrammar.cs67 DebugEventSocketProxy proxy = new DebugEventSocketProxy( this, port, input.TreeAdaptor );
68 DebugListener = proxy;
71 proxy.Handshake();
H A DProfileGrammarParser.cs72 proxy.TreeAdaptor = adap;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb12 A proxy debug event listener that forwards events over a socket to
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
H A DDbg.stg112 pANTLR3_DEBUG_EVENT_LISTENER proxy;
113 proxy = antlr3DebugListenerNew();
114 proxy->grammarFileName = INPUT->tokenSource->strFactory->newStr8(INPUT->tokenSource->strFactory, (pANTLR3_UINT8)ctx->getGrammarFileName());
117 proxy->adaptor = ADAPTOR;
119 PARSER->setDebugListener(PARSER, proxy);
123 proxy->handshake(proxy);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DASTDbg.stg61 DebugEventSocketProxy proxy = new DebugEventSocketProxy( this, port, <if(TREE_PARSER)>input.TreeAdaptor<else>adaptor<endif> );
62 DebugListener = proxy;
63 <inputStreamType> = new Debug<inputStreamType>( input, proxy );
66 proxy.Handshake();
77 proxy.TreeAdaptor = adap;
H A DDbg.stg151 DebugEventSocketProxy proxy = new DebugEventSocketProxy( this, port, input.TreeAdaptor );<\n>
153 DebugEventSocketProxy proxy = new DebugEventSocketProxy( this, port, null );<\n>
155 DebugListener = proxy;
158 proxy.Handshake();
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DASTDbg.stg65 DebugEventSocketProxy proxy = new DebugEventSocketProxy( this, port, <if(TREE_PARSER)>input.TreeAdaptor<else>adaptor<endif> );
66 DebugListener = proxy;
67 <inputStreamType> = new Debug<inputStreamType>( input, proxy );
70 proxy.Handshake();
81 proxy.TreeAdaptor = adap;
H A DDbg.stg150 DebugEventSocketProxy proxy = new DebugEventSocketProxy( this, port, input.TreeAdaptor );<\n>
152 DebugEventSocketProxy proxy = new DebugEventSocketProxy( this, port, null );<\n>
154 DebugListener = proxy;
157 proxy.Handshake();
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DASTDbg.stg53 DebugEventSocketProxy proxy =
55 setDebugListener(proxy);
56 set<inputStreamType>(new Debug<inputStreamType>(input,proxy));
58 proxy.handshake();
68 proxy.setTreeAdaptor(adap);
H A DDbg.stg141 DebugEventSocketProxy proxy =
144 DebugEventSocketProxy proxy =
147 setDebugListener(proxy);
149 proxy.handshake();
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
H A DASTDbg.stg58 ANTLRDebugEventSocketProxy proxy =
60 [self setDebugListener:proxy];
61 [self set<inputStreamType>:[ANTLRANTLRDebug<inputStreamType> newANTLRDebug<inputStreamType>:input with:proxy]];
63 [proxy handshake];
73 [proxy setTreeAdaptor:adap];
79 [proxy setTreeAdaptor:adap];
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DASTDbg.stg50 proxy = DebugEventSocketProxy(self, adaptor=<if(TREE_PARSER)>self.input.getTreeAdaptor()<else>self._adaptor<endif>,
52 self.setDebugListener(proxy)
53 self.adaptor.setDebugListener(proxy)
54 self.input.setDebugListener(proxy)
55 #self.set<inputStreamType>(Debug<inputStreamType>(self.input, proxy))
56 proxy.handshake()
H A DDbg.stg52 proxy = DebugEventSocketProxy(self, adaptor=self.input.getTreeAdaptor(),
55 proxy = DebugEventSocketProxy(self, debug=debug_socket, port=port)<\n>
57 self.setDebugListener(proxy)
58 proxy.handshake()
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
H A DPropertyChangeListenerProxyTest.java31 PropertyChangeListenerProxy proxy; field in class:PropertyChangeListenerProxyTest
42 proxy = new PropertyChangeListenerProxy(name, listener);
46 proxy = new PropertyChangeListenerProxy(null, listener);
47 assertSame(listener, proxy.getListener());
48 assertNull(proxy.getPropertyName());
51 proxy.propertyChange(newevent);
53 proxy = new PropertyChangeListenerProxy(name, null);
54 assertSame(name, proxy.getPropertyName());
55 assertNull(proxy.getListener());
57 proxy
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpServer.java72 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) {
514 * Sets the proxy.
516 * @param proxy The proxy to set
518 public void setProxy(boolean proxy) { argument
519 this.proxy = proxy;
[all...]
/external/apache-http/src/org/apache/http/conn/params/
H A DConnRouteParams.java89 * @return the default proxy set in the argument parameters, or
96 HttpHost proxy = (HttpHost)
98 if ((proxy != null) && NO_HOST.equals(proxy)) {
100 proxy = null;
102 return proxy;
111 * @param proxy the value to set, may be <code>null</code>.
117 HttpHost proxy) {
121 params.setParameter(DEFAULT_PROXY, proxy);
116 setDefaultProxy(HttpParams params, HttpHost proxy) argument
/external/apache-http/src/org/apache/http/conn/routing/
H A DHttpRoute.java67 /** The proxy servers, if any. */
70 /** Whether the the route is tunnelled through the proxy. */
82 * This constructor does <i>not</i> clone the proxy chain array,
91 * @param proxies the proxy chain to use, or
134 * @param proxies the proxy chain to use, or
148 * Creates a new route with at most one proxy.
153 * @param proxy the proxy to use, or
158 * via the proxy,
164 public HttpRoute(HttpHost target, InetAddress local, HttpHost proxy, argument
208 HttpRoute(HttpHost target, InetAddress local, HttpHost proxy, boolean secure) argument
227 toChain(HttpHost proxy) argument
[all...]
H A DRouteTracker.java72 /** The proxy chain, if any. */
132 * Tracks connecting to the first proxy.
134 * @param proxy the proxy connected to
138 public final void connectProxy(HttpHost proxy, boolean secure) { argument
139 if (proxy == null) {
146 this.proxyChain = new HttpHost[]{ proxy };
162 throw new IllegalStateException("No tunnel without proxy.");
170 * Tracks tunnelling to a proxy in a proxy chai
178 tunnelProxy(HttpHost proxy, boolean secure) argument
[all...]
/external/apache-http/src/org/apache/http/impl/auth/
H A DAuthSchemeBase.java58 * Flag whether authenticating against a proxy.
60 private boolean proxy; field in class:AuthSchemeBase
82 this.proxy = false;
84 this.proxy = true;
123 * Returns <code>true</code> if authenticating against a proxy, <code>false</code>
126 * @return <code>true</code> if authenticating against a proxy, <code>false</code>
130 return this.proxy;
H A DBasicScheme.java162 boolean proxy) {
179 if (proxy) {
159 authenticate( final Credentials credentials, final String charset, boolean proxy) argument
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultRequestDirector.java146 /** The proxy authentication handler. */
398 HttpHost proxy = route.getProxyHost();
404 proxy);
646 // The most simple example for this case is a proxy chain
652 this.log.debug("Tunnel to proxy created.");
684 * The connection must be established to the (last) proxy.
685 * A CONNECT request for tunnelling through the proxy will
705 HttpHost proxy = route.getProxyHost();
768 updateAuthState(this.proxyAuthState, proxy, credsProvider);
788 // Reset proxy aut
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DAbstractPoolEntry.java167 final HttpHost proxy = route.getProxyHost();
171 (proxy != null) ? proxy : route.getTargetHost(),
183 if (proxy == null) {
186 localTracker.connectProxy(proxy, this.connection.isSecure());
195 * request to the (last) proxy.
211 //@@@ check for proxy in planned route?
230 * Tracks tunnelling of the connection to a chained proxy.
232 * request to the previous proxy.
234 * @param next the proxy t
[all...]

Completed in 2360 milliseconds

1234567891011>>