HomeSort by relevance Sort by last modified time
    Searched refs:Direct (Results 1 - 25 of 34) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/network/
ProxyServer.h 17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
41 Direct,
48 : m_type(Direct)
ProxyServer.cpp 17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
36 case ProxyServer::Direct:
37 builder.append("DIRECT");
61 return "DIRECT";
  /external/clang/lib/CodeGen/
ABIInfo.h 41 /// Direct - Pass the argument directly using the normal converted LLVM
47 Direct,
49 /// Extend - Valid only for integer argument types. Same as 'direct'
67 KindFirst=Direct, KindLast=Expand
73 llvm::Type *PaddingType; // Currently allowed only for Direct.
84 ABIArgInfo() : TheKind(Direct), TypeData(0), UIntData(0) {}
88 return ABIArgInfo(Direct, T, Offset, false, false, Padding);
105 bool isDirect() const { return TheKind == Direct; }
112 return TheKind == Direct || TheKind == Extend;
115 // Direct/Extend accessor
    [all...]
CGCall.cpp 374 // them are direct or extend without a specified coerce type, specify the
793 case ABIArgInfo::Direct:
829 case ABIArgInfo::Direct: {
    [all...]
  /external/chromium/net/proxy/
proxy_info.cc 22 proxy_list_.SetSingleProxyServer(ProxyServer::Direct());
proxy_server.h 48 // Returns true if this ProxyServer is actually just a DIRECT connection.
80 // "direct://" {scheme=DIRECT}
99 // "DIRECT" {scheme=DIRECT}
107 // Returns a ProxyServer representing DIRECT connections.
108 static ProxyServer Direct() {
134 // |scheme| can be one of http, https, socks, socks4, socks5, direct.
proxy_list.cc 101 // DIRECT (this basically means an error in the PAC script).
103 proxies_.push_back(ProxyServer::Direct());
proxy_server_unittest.cc 181 // Test parsing of the special URI form "direct://". Analagous to the "DIRECT"
183 TEST(ProxyServerTest, Direct) {
185 net::ProxyServer::FromURI("direct://", net::ProxyServer::SCHEME_HTTP);
188 EXPECT_EQ("direct://", uri.ToURI());
189 EXPECT_EQ("DIRECT", uri.ToPacString());
200 "direct://xyz", // direct is not allowed a host/port.
269 " direct ",
270 "direct://"
    [all...]
proxy_resolver_v8_unittest.cc 125 TEST(ProxyResolverV8Test, Direct) {
127 int result = resolver.SetPacScriptFromDisk("direct.js");
211 // TODO(eroman): Should 'null' be considered equivalent to "DIRECT" ?
366 result = resolver.SetPacScriptFromDisk("direct.js");
384 result = resolver.SetPacScriptFromDisk("direct.js");
  /external/webkit/Source/WebCore/platform/network/qt/
ProxyServerQt.cpp 17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
63 proxyType = ProxyServer::Direct;
  /external/webkit/Source/WebCore/platform/network/cf/
ProxyServerCFNet.cpp 17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
54 ProxyServer::Type type = ProxyServer::Direct;
62 proxyServers.append(ProxyServer(ProxyServer::Direct, String(), -1));
SocketStreamHandle.h 23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
104 enum ConnectionType { Unknown, Direct, SOCKSProxy, CONNECTProxy };
SocketStreamHandleCFNet.cpp 23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
183 m_connectionType = Direct;
197 m_connectionType = Direct;
238 ASSERT(m_connectionType != Direct);
250 m_connectionType = Direct;
266 m_connectionType = Direct;
300 m_connectionType = Direct;
327 case Direct:
  /external/chromium/net/spdy/
spdy_http_stream_unittest.cc 28 HostPortProxyPair pair(host_port_pair, ProxyServer::Direct());
69 HostPortProxyPair pair(host_port_pair, ProxyServer::Direct());
125 HostPortProxyPair pair(host_port_pair, ProxyServer::Direct());
183 HostPortProxyPair pair(host_port_pair, ProxyServer::Direct());
spdy_session_unittest.cc 130 HostPortProxyPair pair(test_host_port_pair, ProxyServer::Direct());
201 HostPortProxyPair pair(test_host_port_pair, ProxyServer::Direct());
329 HostPortProxyPair pair(test_host_port_pair, ProxyServer::Direct());
413 HostPortProxyPair pair(test_host_port_pair, ProxyServer::Direct());
518 HostPortProxyPair pair(test_host_port_pair, ProxyServer::Direct());
579 HostPortPair(test_hosts[i].name, kTestPort), ProxyServer::Direct());
spdy_stream_unittest.cc 119 HostPortProxyPair pair(host_port_pair, ProxyServer::Direct());
spdy_session_pool.cc 204 // We should only be checking aliases when there is no direct session.
273 ProxyServer::Direct());
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
InlineMethodResolver.java 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
38 import static org.jf.dexlib.Code.Analysis.DeodexUtil.Direct;
111 fastIndexOfMethod = deodexUtil.new InlineMethod(Direct, "Ljava/lang/String;", "fastIndexOf", "II", "I");
DeodexUtil.java 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
40 public static final int Direct = 1;
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeBase.h 32 template<size_t DIRECT>
36 template<size_t DIRECT>
45 enum Direct {
68 template<size_t DIRECT>
70 proxy::move<DIRECT>(m_pNode);
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 103 ATTRIBUTE Ascend-IP-Direct 209 ipaddr
113 ATTRIBUTE Ascend-FR-Direct 219 integer
114 ATTRIBUTE Ascend-FR-Direct-Profile 220 string
115 ATTRIBUTE Ascend-FR-Direct-DLCI 221 integer
169 VALUE Ascend-FR-Direct FR-Direct-No 0
170 VALUE Ascend-FR-Direct FR-Direct-Yes 1
  /external/chromium/net/http/
http_proxy_client_socket_pool.cc 214 ProxyServer::Direct());
320 ProxyServer::Direct());
332 // Create a session direct to the proxy itself
http_stream_factory_impl_unittest.cc 294 HostPortProxyPair pair(host_port_pair, ProxyServer::Direct());
http_stream_factory_impl_job.cc 481 // No proxies/direct to choose from. This happens when we don't support
538 ProxyServer::Direct());
740 bool direct = true; local
746 // We have a SPDY session to the origin server. This might be a direct
750 // If we don't have a direct SPDY session, and we're using an HTTPS
753 ProxyServer::Direct());
757 direct = false;
776 spdy_session_direct_ = direct;
788 bool use_relative_url = direct || request_info_.url.SchemeIs("https");
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 43 enum Kind { Direct = 0x0, Default = 0x1 };
52 bool isDirect() const { return P.getInt() == Direct; }
100 << ',' << (K.isDirect() ? "direct" : "default")
281 return removeBinding(removeBinding(B, R, BindingKey::Direct), R,
293 assert(!lookup(B, R, BindingKey::Direct));
463 // don't have direct bindings but are super regions of those that do.
741 B = RM.addBinding(B, baseR, BindingKey::Direct, V);
    [all...]

Completed in 572 milliseconds

1 2