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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/cpp/
instance_handle.cc 7 #include "ppapi/cpp/instance.h"
11 InstanceHandle::InstanceHandle(Instance* instance)
12 : pp_instance_(instance->pp_instance()) {
  /external/chromium_org/ui/linux_ui/
linux_ui.cc 17 void LinuxUI::SetInstance(LinuxUI* instance) {
19 g_linux_ui = instance;
21 LinuxShellDialog::SetInstance(instance);
24 const LinuxUI* LinuxUI::instance() { function in class:ui::LinuxUI
  /external/chromium-trace/trace-viewer/src/tracing/tracks/
object_instance_track.css 6 .object-instance-track {
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptInstance.cpp 36 V8ScriptInstance::V8ScriptInstance(v8::Handle<v8::Object> instance)
37 : m_instance(instance)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementInstanceList.cpp 41 for (SVGElementInstance* instance = m_rootInstance->firstChild(); instance; instance = instance->nextSibling())
49 SVGElementInstance* instance = m_rootInstance->firstChild(); local
50 while (instance && pos < index) {
51 instance = instance->nextSibling();
54 return instance;
  /external/chromium_org/ppapi/cpp/dev/
cursor_control_dev.h 24 bool SetCursor(const InstanceHandle& instance,
28 bool LockCursor(const InstanceHandle& instance);
29 bool UnlockCursor(const InstanceHandle& instance);
30 bool HasCursorLock(const InstanceHandle& instance);
31 bool CanLockCursor(const InstanceHandle& instance);
  /external/chromium_org/third_party/WebKit/Source/web/
WebImageCache.cpp 42 ImageDecodingStore::instance()->setCacheLimitInBytes(size);
47 if (ImageDecodingStore::instance())
48 ImageDecodingStore::instance()->clear();
53 return ImageDecodingStore::instance()->memoryUsageInBytes();
58 return ImageDecodingStore::instance()->cacheEntries();
  /external/chromium_org/ppapi/c/dev/
ppp_find_dev.h 21 PP_Bool (*StartFind)(PP_Instance instance,
26 void (*SelectFindResult)(PP_Instance instance,
31 void (*StopFind)(PP_Instance instance);
  /external/chromium_org/ui/shell_dialogs/
linux_shell_dialog.cc 15 void LinuxShellDialog::SetInstance(LinuxShellDialog* instance) {
16 g_linux_shell_dialog = instance;
19 const LinuxShellDialog* LinuxShellDialog::instance() { function in class:ui::LinuxShellDialog
  /external/valgrind/main/memcheck/tests/x86/
fpeflags.c 3 struct instance struct
8 static struct instance* myInstance;
14 myInstance = malloc(sizeof(struct instance));
  /external/chromium_org/ppapi/thunk/
ppb_zoom_dev_thunk.cc 20 void ZoomChanged(PP_Instance instance, double factor) {
22 EnterInstance enter(instance);
25 enter.functions()->ZoomChanged(instance, factor);
28 void ZoomLimitsChanged(PP_Instance instance,
32 EnterInstance enter(instance);
35 enter.functions()->ZoomLimitsChanged(instance,
ppb_instance_api.h 48 virtual PP_Bool BindGraphics(PP_Instance instance, PP_Resource device) = 0;
49 virtual PP_Bool IsFullFrame(PP_Instance instance) = 0;
53 virtual const ViewData* GetViewData(PP_Instance instance) = 0;
55 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) = 0;
58 virtual PP_Var GetWindowObject(PP_Instance instance) = 0;
59 virtual PP_Var GetOwnerElementObject(PP_Instance instance) = 0;
60 virtual PP_Var ExecuteScript(PP_Instance instance,
65 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) = 0;
66 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) = 0;
69 virtual PP_Var GetDefaultCharSet(PP_Instance instance) = 0
    [all...]
ppb_content_decryptor_private_thunk.cc 21 void NeedKey(PP_Instance instance,
26 EnterInstance enter(instance);
29 enter.functions()->NeedKey(instance, key_system, session_id, init_data);
32 void KeyAdded(PP_Instance instance,
36 EnterInstance enter(instance);
39 enter.functions()->KeyAdded(instance, key_system, session_id);
42 void KeyMessage(PP_Instance instance,
48 EnterInstance enter(instance);
51 enter.functions()->KeyMessage(instance,
58 void KeyError(PP_Instance instance,
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-abi-methods.cpp 17 C instance; local
19 instance.simple_method();
30 C instance; local
31 instance.cdecl_method();
42 C instance; local
43 instance.vararg_method("Hello");
  /external/chromium_org/content/browser/geolocation/
wifi_data_provider_unittest_win.cc 16 scoped_refptr<Win32WifiDataProvider> instance(new Win32WifiDataProvider);
17 instance = NULL;
  /external/chromium_org/content/renderer/pepper/
mock_resource.h 17 MockResource(PP_Instance instance)
18 : Resource(ppapi::OBJECT_IS_IMPL, instance) {}
pepper_in_process_resource_creation.cc 45 PepperPluginInstanceImpl* instance)
46 : ResourceCreationImpl(instance),
54 PP_Instance instance,
59 host_impl_->GetRenderViewForInstance(instance)->GetWebkitPreferences());
61 host_impl_->in_process_router()->GetPluginConnection(instance),
62 instance,
68 PP_Instance instance,
75 host_impl_->in_process_router()->GetPluginConnection(instance),
76 instance,
82 PP_Instance instance) {
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
nacl_io.cc 14 void nacl_io_init_ppapi(PP_Instance instance,
16 ki_init_ppapi(NULL, instance, get_interface);
  /external/chromium_org/content/test/plugin/
plugin_test_factory.cc 32 NPP instance,
37 new_test = new PluginArgumentsTest(instance, host_functions);
42 new_test = new PluginGetURLTest(instance, host_functions);
44 new_test = new NPObjectIdentityTest(instance, host_functions);
46 new_test = new NPObjectProxyTest(instance, host_functions);
59 new_test = new WindowlessPluginTest(instance, host_functions);
61 new_test = new ExecuteGetJavascriptUrlTest(instance, host_functions);
63 new_test = new ExecuteGetJavascriptUrl2Test(instance, host_functions);
67 new_test = new PluginWindowSizeTest(instance, host_functions);
70 new_test = new DeletePluginInStreamTest(instance, host_functions)
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/tutorial/load_progress/
load_progress.cc 5 #include "ppapi/cpp/instance.h"
8 class LoadProgressInstance : public pp::Instance {
10 explicit LoadProgressInstance(PP_Instance instance)
11 : pp::Instance(instance) {}
20 virtual pp::Instance* CreateInstance(PP_Instance instance) {
21 return new LoadProgressInstance(instance);
  /external/chromium_org/ppapi/shared_impl/
host_resource.cc 13 HostResource HostResource::MakeInstanceOnly(PP_Instance instance) {
15 resource.SetHostResource(instance, 0);
19 void HostResource::SetHostResource(PP_Instance instance, PP_Resource resource) {
20 instance_ = instance;
  /external/chromium_org/remoting/host/win/
core.cc 8 extern "C" BOOL WINAPI PsDllMain(HINSTANCE instance,
12 BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, void* reserved) {
14 DisableThreadLibraryCalls(instance);
17 return PsDllMain(instance, reason, reserved);
  /external/chromium_org/ui/native_theme/
native_theme_win_unittest.cc 12 ASSERT_TRUE(NativeThemeWin::instance() != NULL);
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/
TimezoneGetter.java 25 private static TimezoneGetter instance; field in class:TimezoneGetter
28 * Retrieves the singleton instance of this class.
30 * @return TimezoneGetter the single instance of this class.
33 return instance;
37 * Sets the singleton instance of this class.
39 * @param instance
40 * TimezoneGetter the single instance of this class.
43 if (instance != null) {
44 throw new UnsupportedOperationException("TimezoneGetter instance already set");
46 instance = getter
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServerSocket.java 30 private ServerSocket instance = null; field in class:Support_HttpServerSocket
45 if (instance == null) {
48 instance.setSoTimeout(timeout);
49 Socket s = instance.accept();
69 instance = new ServerSocket(port);
76 if (instance != null) {
77 instance.close();

Completed in 495 milliseconds

1 2 3 4 5 6 7 8 91011>>