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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/host/
instance_message_filter.cc 5 #include "ppapi/host/instance_message_filter.h"
7 #include "ppapi/host/ppapi_host.h"
10 namespace host { namespace in namespace:ppapi
12 InstanceMessageFilter::InstanceMessageFilter(PpapiHost* host) : host_(host) {
18 } // namespace host
  /external/chromium_org/net/data/proxy_resolver_v8_tracing_unittest/
simple.js 1 function FindProxyForURL(url, host) {
2 return "PROXY " + host + ":99";
  /external/chromium/net/data/proxy_resolver_v8_unittest/
return_empty_string.js 1 function FindProxyForURL(url, host) {
return_integer.js 1 function FindProxyForURL(url, host) {
direct.js 1 function FindProxyForURL(url, host) {
return_function.js 1 function FindProxyForURL(url, host) {
return_null.js 1 function FindProxyForURL(url, host) {
return_undefined.js 1 function FindProxyForURL(url, host) {
  /external/chromium-libpac/test/js-unittest/
return_empty_string.js 1 function FindProxyForURL(url, host) {
return_integer.js 1 function FindProxyForURL(url, host) {
direct.js 1 function FindProxyForURL(url, host) {
return_function.js 1 function FindProxyForURL(url, host) {
return_null.js 1 function FindProxyForURL(url, host) {
return_undefined.js 1 function FindProxyForURL(url, host) {
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
return_empty_string.js 1 function FindProxyForURL(url, host) {
return_integer.js 1 function FindProxyForURL(url, host) {
direct.js 1 function FindProxyForURL(url, host) {
  /external/chromium_org/ui/views/layout/
fill_layout.cc 15 void FillLayout::Layout(View* host) {
16 if (!host->has_children())
19 View* frame_view = host->child_at(0);
20 frame_view->SetBoundsRect(host->GetContentsBounds());
23 gfx::Size FillLayout::GetPreferredSize(View* host) {
24 DCHECK_EQ(1, host->child_count());
25 gfx::Rect rect(host->child_at(0)->GetPreferredSize());
26 rect.Inset(-host->GetInsets());
layout_manager.cc 14 void LayoutManager::Installed(View* host) {
17 void LayoutManager::Uninstalled(View* host) {
20 int LayoutManager::GetPreferredHeightForWidth(View* host, int width) {
21 return GetPreferredSize(host).height();
24 void LayoutManager::ViewAdded(View* host, View* view) {
27 void LayoutManager::ViewRemoved(View* host, View* view) {
layout_manager.h 31 // host.
32 virtual void Installed(View* host);
35 // host.
36 virtual void Uninstalled(View* host);
38 // Lay out the children of |host| according to implementation-specific
41 virtual void Layout(View* host) = 0;
45 virtual gfx::Size GetPreferredSize(View* host) = 0;
49 virtual int GetPreferredHeightForWidth(View* host, int width);
52 virtual void ViewAdded(View* host, View* view);
55 virtual void ViewRemoved(View* host, View* view)
    [all...]
  /external/iproute2/etc/iproute2/
rt_scopes 6 254 host
  /external/apache-http/src/org/apache/http/conn/
HttpHostConnectException.java 45 private final HttpHost host; field in class:HttpHostConnectException
47 public HttpHostConnectException(final HttpHost host, final ConnectException cause) {
48 super("Connection to " + host + " refused");
49 this.host = host;
54 return this.host;
  /external/chromium_org/chrome/renderer/pepper/
pepper_helper.cc 10 #include "ppapi/host/ppapi_host.h"
21 void PepperHelper::DidCreatePepperPlugin(content::RendererPpapiHost* host) {
22 // TODO(brettw) figure out how to hook up the host factory. It needs some
24 host->GetPpapiHost()->AddHostFactoryFilter(
25 scoped_ptr<ppapi::host::HostFactory>(
26 new ChromeRendererPepperHostFactory(host)));
27 host->GetPpapiHost()->AddInstanceMessageFilter(
28 scoped_ptr<ppapi::host::InstanceMessageFilter>(
29 new PepperSharedMemoryMessageFilter(host)));
  /frameworks/support/v4/ics/android/support/v4/view/
AccessibilityDelegateCompatIcs.java 31 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event);
32 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event);
33 public void onInitializeAccessibilityNodeInfo(View host, Object info);
34 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event);
35 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child,
37 public void sendAccessibilityEvent(View host, int eventType);
38 public void sendAccessibilityEventUnchecked(View host, AccessibilityEvent event);
48 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) {
49 return bridge.dispatchPopulateAccessibilityEvent(host, event);
53 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event)
    [all...]
  /external/chromium_org/chrome/test/functional/chromoting/
auth.py 20 self.host.LaunchApp(webapp)
25 self.host.ContinueAuth()
26 self.host.SignIn(self.account['username'], self.account['password'])
27 self.host.DenyAccess()
28 self.host.ContinueAuth()
29 self.host.AllowAccess()
33 self.host.ContinueAuth()
34 self.host.SignIn(self.account['username'], self.account['password'])
35 self.host.AllowAccess()
36 self.host.SignOut(
    [all...]

Completed in 449 milliseconds

1 2 3 4 5 6 7 8 91011>>