HomeSort by relevance Sort by last modified time
    Searched defs:pp_instance (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/ppapi/cpp/
instance_handle.h 8 #include "ppapi/c/pp_instance.h"
30 /// 2. <code>PP_Instance</code> would be a good identifier to use for this case.
31 /// However, using <code>PP_Instance</code> in the constructor to resources is
35 /// be ambiguous. Having this wrapper around a <code>PP_Instance</code>
53 /// This constructor explicitly converts a <code>PP_Instance</code> to an
55 /// resource constructors ambiguous. <code>PP_Instance</code> is just a
59 /// @param[in] pp_instance The instance with which this
61 explicit InstanceHandle(PP_Instance pp_instance)
62 : pp_instance_(pp_instance) {}
67 PP_Instance pp_instance() const { return pp_instance_; } function in class:pp::InstanceHandle
    [all...]
instance.h 14 #include "ppapi/c/pp_instance.h"
49 explicit Instance(PP_Instance instance);
57 /// The <code>PP_Instance</code> identifier will still be valid during this
59 /// returns, the <code>PP_Instance</code> handle will be invalid. This means
65 /// returns, the <code>PP_Instance</code> handle will be invalid. This means
70 /// This function returns the <code>PP_Instance</code> identifying this
73 /// @return A <code>PP_Instance</code> identifying this object.
74 PP_Instance pp_instance() const { return pp_instance_; } function in class:pp::Instance
521 /// Then whenever it gets updates with a PP_Instance parameter, it ca
    [all...]
  /external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
internal_utils.cc 10 PP_Instance global_pp_instance = 0;
18 void set_pp_instance(PP_Instance instance) { global_pp_instance = instance; }
22 PP_Instance pp_instance() { return global_pp_instance; } function
  /external/chromium_org/ppapi/tests/
test_console.cc 33 PP_Instance instance,
51 PP_Instance pp_instance = instance()->pp_instance(); local
53 TestConsoleSub(interface, pp_instance, source, pp::Var());
54 TestConsoleSub(interface, pp_instance, source, pp::Var(pp::Var::Null()));
55 TestConsoleSub(interface, pp_instance, source, pp::Var(false));
56 TestConsoleSub(interface, pp_instance, source, pp::Var(12345678));
57 TestConsoleSub(interface, pp_instance, source, pp::Var(-0.0));
58 TestConsoleSub(interface, pp_instance, source, pp::Var("Hello World!"))
    [all...]
  /external/chromium_org/content/renderer/pepper/
mock_renderer_ppapi_host.h 24 PP_Instance instance);
28 PP_Instance pp_instance() const { return pp_instance_; } function in class:content::MockRendererPpapiHost
35 virtual bool IsValidInstance(PP_Instance instance) const OVERRIDE;
37 PP_Instance instance) const OVERRIDE;
39 PP_Instance instance) const OVERRIDE;
41 PP_Instance instance) const OVERRIDE;
43 virtual bool HasUserGesture(PP_Instance instance) const OVERRIDE;
44 virtual int GetRoutingIDForWidget(PP_Instance instance) const OVERRIDE;
46 PP_Instance instance
    [all...]
npobject_var.h 11 #include "ppapi/c/pp_instance.h"
35 NPObjectVar(PP_Instance instance, NPObject* np_object);
50 PP_Instance pp_instance() const { return pp_instance_; } function in class:ppapi::NPObjectVar
60 PP_Instance pp_instance_;
pepper_file_chooser_host_unittest.cc 48 PP_Instance pp_instance() const { return pp_instance_; } function in class:content::__anon10451::PepperFileChooserHostTest
51 PP_Instance pp_instance_;
71 MockRendererPpapiHost host(view_, pp_instance());
72 PepperFileChooserHost chooser(&host, pp_instance(), pp_resource);
136 MockRendererPpapiHost host(view_, pp_instance());
137 PepperFileChooserHost chooser(&host, pp_instance(), pp_resource);
pepper_plugin_instance_impl.h 30 #include "ppapi/c/pp_instance.h"
111 // Note: to get from a PP_Instance to a PepperPluginInstance*, use the
134 // Returns the PP_Instance uniquely identifying this instance. Guaranteed
136 PP_Instance pp_instance() const { return pp_instance_; } function in class:content::PepperPluginInstanceImpl
369 virtual PP_Bool BindGraphics(PP_Instance instance,
371 virtual PP_Bool IsFullFrame(PP_Instance instance) OVERRIDE;
372 virtual const ppapi::ViewData* GetViewData(PP_Instance instance) OVERRIDE;
373 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE;
374 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE
    [all...]
  /external/chromium_org/ppapi/host/
resource_host.h 33 ResourceHost(PpapiHost* host, PP_Instance instance, PP_Resource resource);
37 PP_Instance pp_instance() const { return pp_instance_; } function in class:ppapi::host::ResourceHost
81 PP_Instance pp_instance_;
  /external/chromium_org/ppapi/proxy/
plugin_var_tracker_unittest.cc 194 PP_Instance pp_instance = 0x12345; local
204 pp_instance, plugin_var, &mark_on_deallocate_class, user_data);
213 var_tracker().DidDeleteInstance(pp_instance);
223 PP_Instance pp_instance = 0x12345; local
233 pp_instance, plugin_var, &mark_on_deallocate_class, user_data);
237 var_tracker().DidDeleteInstance(pp_instance);
ppapi_proxy_test.h 15 #include "ppapi/c/pp_instance.h"
49 PP_Instance pp_instance() const { return pp_instance_; } function in class:ppapi::proxy::ProxyTestHarnessBase
87 PP_Instance pp_instance_;
142 virtual std::set<PP_Instance>* GetGloballySeenInstanceIDSet() OVERRIDE;
153 PP_Instance instance,
160 std::set<PP_Instance> instance_id_set_;
325 PP_Instance pp_instance() const { return host_.pp_instance(); } function in class:ppapi::proxy::TwoWayTest
    [all...]
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_printing_host_unittest.cc 72 PP_Instance pp_instance = 12345; local
89 pp_instance, pp_resource, manager.Pass());
pepper_gamepad_host_unittest.cc 136 PP_Instance pp_instance = 12345; local
139 pp_instance, pp_resource); local
  /external/chromium_org/ppapi/shared_impl/
resource.h 14 #include "ppapi/c/pp_instance.h"
127 Resource(ResourceObjectType type, PP_Instance instance);
151 PP_Instance pp_instance() const { return host_resource_.instance(); } function in class:ppapi::Resource
tracked_callback_unittest.cc 26 PP_Instance pp_instance() const { return pp_instance_; } function in class:ppapi::__anon11938::TrackedCallbackTest
38 PP_Instance pp_instance_;
92 scoped_refptr<Resource> resource(new Resource(OBJECT_IS_IMPL, pp_instance()));
121 PpapiGlobals::Get()->GetCallbackTrackerForInstance(pp_instance())->AbortAll();
145 CallbackMockResource(PP_Instance instance)
261 new CallbackMockResource(pp_instance()));
267 new CallbackMockResource(pp_instance()));
297 new CallbackMockResource(pp_instance()));
  /external/chromium_org/ppapi/examples/2d/
graphics_2d_example.c 10 #include "ppapi/c/pp_instance.h"
34 PP_Instance pp_instance; member in struct:InstanceInfo
44 PP_Resource MakeAndBindGraphics2D(PP_Instance instance,
71 instance->pp_instance, PP_IMAGEDATAFORMAT_BGRA_PREMUL, size, PP_TRUE);
87 graphics = MakeAndBindGraphics2D(instance->pp_instance, size);
102 struct InstanceInfo* FindInstance(PP_Instance instance) {
105 if (cur->pp_instance == instance)
112 PP_Bool Instance_DidCreate(PP_Instance instance,
118 info->pp_instance = instance
    [all...]
  /external/chromium_org/chrome/browser/nacl_host/
pnacl_host.cc 161 int pp_instance,
177 pp_instance,
186 TranslationID id(render_process_id, pp_instance);
368 int pp_instance,
373 TranslationID id(render_process_id, pp_instance);
377 << "," << pp_instance << " not found."; local

Completed in 350 milliseconds