Searched refs:host (Results 351 - 375 of 2743) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/extensions/common/permissions/
H A Dsocket_permission.h21 const std::string& host,
23 : request(type, host, port) {}
20 CheckParam(content::SocketPermissionRequest::OperationType type, const std::string& host, int port) argument
/external/chromium_org/net/data/proxy_resolver_v8_unittest/
H A Dpassthrough.js4 function FindProxyForURL(url, host) {
10 return "PROXY " + makePseudoHost(url + "." + host);
13 // Form a string that kind-of resembles a host. We will replace any
/external/chromium_org/ui/views/layout/
H A Dbox_layout.h27 // host's bounds provide insufficient space, child views will be clamped.
51 // This causes the child view to stretch to fit the host in the cross axis.
60 // view area and the host view border. |between_child_spacing| controls the
101 virtual void Installed(View* host) OVERRIDE;
102 virtual void Uninstalled(View* host) OVERRIDE;
103 virtual void ViewRemoved(View* host, View* view) OVERRIDE;
104 virtual void Layout(View* host) OVERRIDE;
105 virtual gfx::Size GetPreferredSize(const View* host) const OVERRIDE;
106 virtual int GetPreferredHeightForWidth(const View* host,
137 gfx::Size GetPreferredSizeForChildWidth(const View* host,
[all...]
/external/libedit/
H A DREADME.android12 Currently for linux x86 (32-bit) host only.
/external/llvm/lib/ExecutionEngine/
H A DAndroid.mk3 # For the host
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DAndroid.mk3 # For the host
/external/llvm/lib/ExecutionEngine/JIT/
H A DAndroid.mk3 # For the host
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DAndroid.mk3 # For the host
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DAndroid.mk3 # For the host
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_tcp_server_socket_message_filter.cc20 #include "ppapi/host/dispatch_host_message.h"
21 #include "ppapi/host/error_conversion.h"
22 #include "ppapi/host/ppapi_host.h"
23 #include "ppapi/host/resource_host.h"
30 using ppapi::host::NetErrorToPepperError;
42 BrowserPpapiHostImpl* host,
45 : ppapi_host_(host->GetPpapiHost()),
49 external_plugin_(host->external_plugin()),
56 if (!host->GetRenderFrameIDsForInstance(
86 ppapi::host
40 PepperTCPServerSocketMessageFilter( ContentBrowserPepperHostFactory* factory, BrowserPpapiHostImpl* host, PP_Instance instance, bool private_api) argument
273 scoped_ptr<ppapi::host::ResourceHost> host = local
[all...]
H A Dpepper_tcp_socket_message_filter.cc29 #include "ppapi/host/dispatch_host_message.h"
30 #include "ppapi/host/error_conversion.h"
31 #include "ppapi/host/ppapi_host.h"
32 #include "ppapi/host/resource_host.h"
38 using ppapi::host::NetErrorToPepperError;
53 BrowserPpapiHostImpl* host,
57 external_plugin_(host->external_plugin()),
60 ppapi_host_(host->GetPpapiHost()),
68 ssl_context_helper_(host->ssl_context_helper()),
70 DCHECK(host);
51 PepperTCPSocketMessageFilter( ContentBrowserPepperHostFactory* factory, BrowserPpapiHostImpl* host, PP_Instance instance, TCPSocketVersion version) argument
78 PepperTCPSocketMessageFilter( BrowserPpapiHostImpl* host, PP_Instance instance, TCPSocketVersion version, scoped_ptr<net::TCPSocket> socket) argument
196 OnMsgConnect( const ppapi::host::HostMessageContext* context, const std::string& host, uint16_t port) argument
560 DoConnect( const ppapi::host::ReplyMessageContext& context, const std::string& host, uint16_t port, ResourceContext* resource_context) argument
880 scoped_ptr<ppapi::host::ResourceHost> host = local
[all...]
/external/chromium_org/components/content_settings/core/common/
H A Dcontent_settings_pattern.cc32 // subdomain of "host.com".
95 virtual BuilderInterface* WithHost(const std::string& host) OVERRIDE;
144 const std::string& host) {
145 parts_.host = host;
225 // Canonicalize the host part.
226 const std::string host(parts->host);
228 std::string canonicalized_host(net::CanonicalizeHost(host, &host_info));
233 parts->host
143 WithHost( const std::string& host) argument
[all...]
/external/chromium_org/chrome/renderer/pepper/
H A Dpepper_uma_host.cc19 #include "ppapi/host/dispatch_host_message.h"
20 #include "ppapi/host/host_message_context.h"
21 #include "ppapi/host/ppapi_host.h"
54 PepperUMAHost::PepperUMAHost(content::RendererPpapiHost* host, argument
57 : ResourceHost(host->GetPpapiHost(), instance, resource),
58 document_url_(host->GetDocumentURL(instance)),
59 is_plugin_in_process_(host->IsRunningInProcess()) {
60 if (host->GetPluginInstance(instance)) {
62 host->GetPluginInstance(instance)->GetModulePath().BaseName();
77 ppapi::host
[all...]
/external/chromium_org/components/google/core/browser/
H A Dgoogle_util.cc43 // True if |host| is "[www.]<domain_in_lower_case>.<TLD>" with a valid TLD. If
44 // |subdomain_permission| is ALLOW_SUBDOMAIN, we check against host
46 bool IsValidHostName(const std::string& host, argument
50 host,
56 std::string host_minus_tld(host, 0, host.length() - tld_length - 1);
112 const std::string google_hostname = google_homepage_url.host();
167 bool IsGoogleHostname(const std::string& host, argument
170 if (base_url.is_valid() && (host == base_url.host()))
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dpepper_audio_input_host.cc16 #include "ppapi/host/dispatch_host_message.h"
17 #include "ppapi/host/ppapi_host.h"
42 PepperAudioInputHost::PepperAudioInputHost(RendererPpapiHostImpl* host, argument
45 : ResourceHost(host->GetPpapiHost(), instance, resource),
46 renderer_ppapi_host_(host),
50 host->GetRenderFrameForInstance(pp_instance())),
52 host->GetDocumentURL(instance)) {}
58 ppapi::host::HostMessageContext* context) {
86 int32_t PepperAudioInputHost::OnOpen(ppapi::host::HostMessageContext* context,
118 ppapi::host
[all...]
H A Dpepper_graphics_2d_host.h15 #include "ppapi/host/host_message_context.h"
16 #include "ppapi/host/resource_host.h"
43 : public ppapi::host::ResourceHost,
47 RendererPpapiHost* host,
56 // ppapi::host::ResourceHost override.
59 ppapi::host::HostMessageContext* context) OVERRIDE;
92 PepperGraphics2DHost(RendererPpapiHost* host,
101 int32_t OnHostMsgPaintImageData(ppapi::host::HostMessageContext* context,
106 int32_t OnHostMsgScroll(ppapi::host::HostMessageContext* context,
110 int32_t OnHostMsgReplaceContents(ppapi::host
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dprint_layout_test_times.py35 def main(host, argv):
57 port = host.port_factory.get()
61 times_ms_path = host.filesystem.join(port.results_directory(), 'times_ms.json')
63 times_trie = json.loads(host.filesystem.read_text_file(times_ms_path))
70 print_fastest(host, port, options, times)
72 print_times(host, options, times)
75 def print_times(host, options, times):
79 host.print_("%s %d" % (key, by_key[key]))
81 host.print_("%d" % by_key[key])
84 def print_fastest(host, por
[all...]
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_dialog.cc30 ExtensionViewViews* GetExtensionView(extensions::ExtensionViewHost* host) { argument
31 return static_cast<ExtensionViewViews*>(host->view());
36 ExtensionDialog::ExtensionDialog(extensions::ExtensionViewHost* host, argument
38 : host_(host),
44 content::Source<BrowserContext>(host->browser_context()));
48 content::Source<BrowserContext>(host->browser_context()));
52 content::Source<BrowserContext>(host->browser_context()));
70 extensions::ExtensionViewHost* host = local
72 if (!host)
76 ExtensionViewViews* view = GetExtensionView(host);
[all...]
H A Dextension_popup.cc29 ExtensionViewViews* GetExtensionView(extensions::ExtensionViewHost* host) { argument
30 return static_cast<ExtensionViewViews*>(host->view());
43 ExtensionPopup::ExtensionPopup(extensions::ExtensionViewHost* host, argument
48 host_(host),
57 AddChildView(GetExtensionView(host));
58 GetExtensionView(host)->set_container(this);
62 // Wait to show the popup until the contained host finishes loading.
64 content::Source<content::WebContents>(host->host_contents()));
70 content::Source<content::BrowserContext>(host->browser_context()));
73 GetExtensionView(host)
194 extensions::ExtensionViewHost* host = local
[all...]
/external/chromium_org/components/pdf/renderer/
H A Dpepper_pdf_host.cc15 #include "ppapi/host/dispatch_host_message.h"
16 #include "ppapi/host/host_message_context.h"
17 #include "ppapi/host/ppapi_host.h"
39 PepperPDFHost::PepperPDFHost(content::RendererPpapiHost* host, argument
42 : ppapi::host::ResourceHost(host->GetPpapiHost(), instance, resource),
43 host_(host) {}
49 ppapi::host::HostMessageContext* context) {
75 ppapi::host::HostMessageContext* context,
83 ppapi::host
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dmock_drt_unittest.py48 def make_port(self, host=None, options=mock_options):
49 host = host or MockSystemHost()
50 test.add_unit_tests_to_mock_filesystem(host.filesystem)
51 return mock_drt.MockDRTPort(host, port_name='mock-mac', options=options)
95 def make_drt(self, options, args, host, stdin, stdout, stderr):
96 return mock_drt.MockDRT(options, args, host, stdin, stdout, stderr)
124 def assertTest(self, test_name, pixel_tests, expected_checksum=None, drt_output=None, host=None, expected_text=None):
126 host = host o
[all...]
/external/chromium_org/remoting/webapp/
H A Dhost_list.js7 * Class representing the host-list portion of the home screen UI.
16 * Create a host list consisting of the specified HTML elements, which should
17 * have a common parent that contains only host-list UI as it will be hidden
18 * if the host-list is empty.
21 * @param {Element} table The HTML <div> to contain host-list.
27 * host list is being loaded. The first element of this span should be
106 * Load the host-list asynchronously from local storage.
111 // Load the cache of the last host-list, if present.
130 * Search the host list for a host wit
[all...]
H A Dhost_table_entry.js7 * Class representing an entry in the host-list portion of the home screen.
16 * An entry in the host table.
17 * @param {remoting.Host} host The host, as obtained from Apiary.
27 host, webappMajorVersion, onRename, opt_onDelete) {
29 this.host = host;
62 // Create the host icon cell.
64 hostIconDiv.classList.add('host-list-main-icon');
72 // Create the host nam
[all...]
/external/apache-http/src/org/apache/http/client/params/
H A DClientParamBean.java86 public void setVirtualHost (final HttpHost host) { argument
87 params.setParameter(ClientPNames.VIRTUAL_HOST, host);
94 public void setDefaultHost (final HttpHost host) { argument
95 params.setParameter(ClientPNames.DEFAULT_HOST, host);
/external/apache-http/src/org/apache/http/conn/scheme/
H A DLayeredSocketFactory.java54 * Returns a socket connected to the given host that is layered over an
59 * @param host the host name/IP
60 * @param port the port on the host
67 * @throws UnknownHostException if the IP address of the host cannot be
72 String host,
70 createSocket( Socket socket, String host, int port, boolean autoClose ) argument

Completed in 2252 milliseconds

<<11121314151617181920>>