Searched defs:instance (Results 51 - 75 of 1075) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/shared_impl/
H A Dhost_resource.cc12 HostResource HostResource::MakeInstanceOnly(PP_Instance instance) { argument
14 resource.SetHostResource(instance, 0);
18 void HostResource::SetHostResource(PP_Instance instance, PP_Resource resource) { argument
19 instance_ = instance;
/external/chromium_org/ppapi/tests/
H A Dtest_cursor_control.cc13 TestCursorControl::TestCursorControl(TestingInstance* instance) argument
14 : TestCase(instance),
H A Dtest_empty.cc12 TestEmpty::TestEmpty(TestingInstance* instance) argument
13 : TestCase(instance) {
H A Dtest_file_mapping.h16 explicit TestFileMapping(TestingInstance* instance) argument
17 : TestCase(instance),
H A Dtest_network_proxy.cc7 #include "ppapi/cpp/instance.h"
14 TestNetworkProxy::TestNetworkProxy(TestingInstance* instance) argument
15 : TestCase(instance) {
H A Dtest_var_deprecated.h16 explicit TestVarDeprecated(TestingInstance* instance) : TestCase(instance) {} argument
H A Dtest_var_resource.h16 explicit TestVarResource(TestingInstance* instance) : TestCase(instance) {} argument
H A Dtest_websocket.h19 explicit TestWebSocket(TestingInstance* instance) : TestCase(instance) {} argument
/external/chromium_org/ppapi/thunk/
H A Dppb_flash_print_thunk.cc16 void InvokePrinting(PP_Instance instance) { argument
17 EnterInstanceAPI<PPB_Flash_Functions_API> enter(instance);
20 enter.functions()->InvokePrinting(instance);
H A Dppb_gamepad_thunk.cc21 void Sample(PP_Instance instance, struct PP_GamepadsSampleData* data) { argument
23 EnterInstanceAPI<PPB_Gamepad_API> enter(instance);
28 enter.functions()->Sample(instance, data);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DCompositorAnimations.h46 static CompositorAnimations* instance() { return instance(0); } function in class:blink::CompositorAnimations
47 static void setInstanceForTesting(CompositorAnimations* newInstance) { instance(newInstance); }
61 static CompositorAnimations* instance(CompositorAnimations* newInstance) function in class:blink::CompositorAnimations
63 static CompositorAnimations* instance = new CompositorAnimations(); local
65 instance = newInstance;
67 return instance;
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
H A DScreenOrientationDispatcher.cpp12 ScreenOrientationDispatcher& ScreenOrientationDispatcher::instance() function in class:blink::ScreenOrientationDispatcher
/external/chromium_org/ui/base/touch/
H A Dtouch_editing_controller.cc22 TouchSelectionControllerFactory* instance) {
23 g_shared_instance = instance;
21 SetInstance( TouchSelectionControllerFactory* instance) argument
/external/chromium_org/ui/native_theme/
H A Dnative_theme_android.cc14 NativeTheme* NativeTheme::instance() { function in class:ui::NativeTheme
15 return NativeThemeAndroid::instance();
20 NativeThemeAndroid* NativeThemeAndroid::instance() { function in class:ui::NativeThemeAndroid
/external/chromium_org/ui/views/examples/
H A Dexamples_with_content_main_exe.cc38 int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t*, int) { argument
41 ui::ViewsContentClient views_content_client(instance, &sandbox_info);
/external/chromium_org/ui/views_content_client/
H A Dviews_content_client.cc14 HINSTANCE instance, sandbox::SandboxInterfaceInfo* sandbox_info)
15 : instance_(instance), sandbox_info_(sandbox_info) {
31 params.instance = instance_;
13 ViewsContentClient( HINSTANCE instance, sandbox::SandboxInterfaceInfo* sandbox_info) argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
H A DRobolectricForMaps.java13 public static ShadowGeoPoint shadowOf(GeoPoint instance) { argument
14 return (ShadowGeoPoint) Robolectric.shadowOf_(instance);
17 public static ShadowMapView shadowOf(MapView instance) { argument
18 return (ShadowMapView) Robolectric.shadowOf_(instance);
21 public static ShadowMapController shadowOf(MapController instance) { argument
22 return (ShadowMapController) Robolectric.shadowOf_(instance);
25 public static ShadowItemizedOverlay shadowOf(ItemizedOverlay instance) { argument
26 return (ShadowItemizedOverlay) Robolectric.shadowOf_(instance);
H A DRobolectricShadowOfLevel9.java13 public static ShadowNdefMessage shadowOf(NdefMessage instance) { argument
14 return (ShadowNdefMessage) Robolectric.shadowOf_(instance);
17 public static ShadowNdefRecord shadowOf(NdefRecord instance) { argument
18 return (ShadowNdefRecord) Robolectric.shadowOf_(instance);
21 public static ShadowNfcAdapter shadowOf(NfcAdapter instance) { argument
22 return (ShadowNfcAdapter) Robolectric.shadowOf_(instance);
/external/valgrind/main/memcheck/tests/x86/
H A Dfpeflags.c3 struct instance struct
8 static struct instance* myInstance;
14 myInstance = malloc(sizeof(struct instance));
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpSocket.java30 private final Socket instance; field in class:Support_HttpSocket
35 instance = socket;
40 return instance.getInputStream();
45 return instance.getOutputStream();
49 if (!streamOpen && instance != null) {
50 instance.close();
/external/chromium_org/ash/test/
H A Dtest_shelf_delegate.h32 static TestShelfDelegate* instance() { return instance_; } function in class:ash::test::TestShelfDelegate
/external/chromium_org/athena/extensions/
H A Dextensions_delegate.cc12 ExtensionsDelegate* instance = NULL; member in namespace:athena::__anon2123
17 DCHECK(!instance);
18 instance = this;
22 DCHECK(instance);
23 instance = NULL;
28 DCHECK(instance);
29 DCHECK_EQ(context, instance->GetBrowserContext());
30 return instance;
35 DCHECK(instance);
36 delete instance;
[all...]
/external/chromium_org/chrome/app/
H A Dchrome_main.cc18 DLLEXPORT int __cdecl ChromeMain(HINSTANCE instance,
29 DLLEXPORT int __cdecl ChromeMain(HINSTANCE instance, argument
41 params.instance = instance;
/external/chromium_org/chrome/browser/autofill/
H A Dvalidation_rules_storage_factory.cc22 static base::LazyInstance<ValidationRulesStorageFactory> instance = local
25 new ChromeStorageImpl(instance.Get().json_pref_store_.get()));
/external/chromium_org/chrome/browser/renderer_host/pepper/
H A Dchrome_browser_pepper_host_factory.cc38 PP_Instance instance,
42 // Make sure the plugin is giving us a valid instance for this resource.
43 if (!host_->IsValidInstance(instance))
52 new PepperBrokerMessageFilter(instance, host_));
55 instance,
62 new PepperPlatformVerificationMessageFilter(host_, instance));
64 host_->GetPpapiHost(), instance, params.pp_resource(), pv_filter));
69 new PepperTalkHost(host_, instance, params.pp_resource()));
73 new PepperOutputProtectionMessageFilter(host_, instance));
76 instance,
35 CreateResourceHost( ppapi::host::PpapiHost* host, const ppapi::proxy::ResourceMessageCallParams& params, PP_Instance instance, const IPC::Message& message) argument
[all...]

Completed in 445 milliseconds

1234567891011>>