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

<<11121314151617181920>>

  /external/chromium_org/ppapi/api/
ppb_console.idl 27 * given plugin instance with the given logging level. The name of the plugin
32 [in] PP_Instance instance,
47 [in] PP_Instance instance,
  /external/chromium_org/ppapi/api/private/finish_writing_these/
ppb_pdf.idl 76 [in] PP_Instance instance,
81 [in] PP_Instance instance,
90 [in] PP_Instance instance,
107 [in] PP_Instance instance,
119 [in] PP_Instance instance);
121 [in] PP_Instance instance);
127 [in] PP_Instance instance,
140 [in] PP_Instance instance);
  /external/chromium_org/ppapi/api/private/
ppb_nacl_private.idl 39 PP_ExternalPluginResult LaunchSelLdr([in] PP_Instance instance,
52 * LaunchSelLdr wasn't called with the instance.
54 * initialized. PP_EXTERNAL_PLUGIN_ERROR_INSTANCE is returned if the instance
57 PP_ExternalPluginResult StartPpapiProxy(PP_Instance instance);
87 int32_t EnsurePnaclInstalled([in] PP_Instance instance,
99 PP_FileHandle CreateTemporaryFile([in] PP_Instance instance);
114 int32_t GetNexeFd([in] PP_Instance instance,
124 /* Report to the browser that translation of the pexe for |instance|
127 * must first have called GetNexeFd for the same instance. (The browser is
133 void ReportTranslationFinished([in] PP_Instance instance,
    [all...]
  /external/chromium_org/ppapi/c/dev/
ppb_printing_dev.h 38 * @param[in] instance A <code>PP_Instance</code> identifying one instance
44 PP_Resource (*Create)(PP_Instance instance);
ppp_widget_dev.h 37 * Informs the instance that the given rectangle needs to be repainted.
39 void (*Invalidate)(PP_Instance instance,
  /external/chromium_org/ppapi/c/
ppb_audio_config.h 98 * @param[in] instance A <code>PP_Instance</code> identifying one instance
110 PP_Resource (*CreateStereo16Bit)(PP_Instance instance,
129 * @param[in] instance
140 PP_Instance instance,
185 * @param[in] instance
190 PP_AudioSampleRate (*RecommendSampleRate)(PP_Instance instance);
196 PP_Resource (*CreateStereo16Bit)(PP_Instance instance,
ppb_network_proxy.h 46 * @param[in] instance A <code>PP_Instance</code> identifying one instance
63 int32_t (*GetProxyForURL)(PP_Instance instance,
  /external/chromium_org/ppapi/c/private/
ppb_ext_crx_file_system_private.h 48 int32_t (*Open)(PP_Instance instance,
ppb_flash_device_id.h 35 PP_Resource (*Create)(PP_Instance instance);
  /external/chromium_org/ppapi/cpp/dev/
selection_dev.h 19 // You would typically use this either via inheritance on your instance:
20 // class MyInstance : public pp::Instance, public pp::Selection_Dev {
31 // class MyInstance : public pp::Instance {
39 explicit Selection_Dev(Instance* instance);
url_util_dev.h 20 // instance of this interface. This may return NULL if the browser doesn't
31 Var ResolveRelativeToDocument(const InstanceHandle& instance,
36 bool DocumentCanRequest(const InstanceHandle& instance, const Var& url) const;
39 Var GetDocumentURL(const InstanceHandle& instance,
42 Var GetPluginInstanceURL(const InstanceHandle& instance,
  /external/chromium_org/ppapi/cpp/
fullscreen.h 11 /// This file defines the API for handling transitions of a module instance to
23 /// @param[in] instance The instance with which this resource will be
25 explicit Fullscreen(const InstanceHandle& instance);
30 /// IsFullscreen() checks whether the module instance is currently in
33 /// @return <code>true</code> if the module instance is in fullscreen mode,
34 /// <code>false</code> if the module instance is not in fullscreen mode.
37 /// SetFullscreen() switches the module instance to and from fullscreen
56 /// GetScreenSize() gets the size of the screen in pixels. The module instance
instance_handle.h 12 /// This file defines an instance handle used to identify an instance in a
16 class Instance;
18 /// An instance handle identifies an instance in a constructor for a resource.
21 /// 1. A pp::Instance object's lifetime is managed by the system on the main
24 /// safe to refer to a <code>pp::Instance</code> object on a background thread.
26 /// so that they may safely be used on background threads. If the instance
37 /// implicit conversion from <code>pp::Instance*</code> for prettier code on
39 /// instance objects)
    [all...]
mouse_cursor.h 18 /// the mouse is over the given instance until it is set again by another
29 /// @param[in] instance A handle identifying the instance that the mouse
46 /// @return true on success, or false if the instance or cursor type
48 static bool SetCursor(const InstanceHandle& instance,
mouse_lock.h 13 /// specific module instance.
18 class Instance;
22 /// itself with the given instance, and registers as the global handler for
25 /// You would typically use this class by inheritance on your instance or by
30 /// class MyInstance : public pp::Instance, public pp::MouseLock {
43 /// class MyInstance : public pp::Instance {
54 /// @param[in] instance The instance with which this resource will be
56 explicit MouseLock(Instance* instance);
    [all...]
network_proxy.h 31 /// @param[in] instance An <code>InstanceHandle</code> identifying one
32 /// instance of a module.
42 const InstanceHandle& instance,
  /external/chromium_org/ppapi/cpp/private/
ext_crx_file_system_private.h 20 explicit ExtCrxFileSystemPrivate(const InstanceHandle& instance);
file_io_private.h 21 explicit FileIO_Private(const InstanceHandle& instance);
flash_device_id.h 17 DeviceID(const InstanceHandle& instance);
flash_fullscreen.h 16 FlashFullscreen(const InstanceHandle& instance);
flash_message_loop.h 19 explicit MessageLoop(const InstanceHandle& instance);
  /external/chromium_org/ppapi/examples/printing/
printing.cc 10 #include "ppapi/cpp/instance.h"
46 class MyInstance : public pp::Instance, public pp::Printing_Dev {
48 explicit MyInstance(PP_Instance instance)
49 : pp::Instance(instance),
89 // Override CreateInstance to create your customized Instance object.
90 virtual pp::Instance* CreateInstance(PP_Instance instance) {
91 return new MyInstance(instance);
  /external/chromium_org/ppapi/examples/scripting/
post_message.cc 7 #include "ppapi/cpp/instance.h"
21 class MyInstance : public pp::Instance {
23 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {}
29 // associated with this plugin instance.
49 // Override CreateInstance to create your customized Instance object.
50 virtual pp::Instance* CreateInstance(PP_Instance instance) {
51 return new MyInstance(instance);
    [all...]
  /external/chromium_org/ppapi/examples/threading/
threading.cc 7 #include "ppapi/cpp/instance.h"
12 class MyInstance : public pp::Instance {
14 MyInstance(PP_Instance instance) : pp::Instance(instance) {
48 virtual pp::Instance* CreateInstance(PP_Instance instance) {
49 return new MyInstance(instance);
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
sel_ldr_launcher_chrome.h 16 virtual bool Start(PP_Instance instance,

Completed in 386 milliseconds

<<11121314151617181920>>