Searched refs:Instance (Results 1 - 25 of 274) sorted by relevance

1234567891011

/external/chromium_org/native_client_sdk/src/examples/tutorial/multi_platform/
H A Dmulti_platform.cc9 class Instance : public pp::Instance { class in inherits:pp::Instance
11 explicit Instance(PP_Instance instance) : pp::Instance(instance) {} function in class:Instance
12 virtual ~Instance() {}
25 virtual pp::Instance* CreateInstance(PP_Instance instance) {
26 return new Instance(instance);
/external/chromium_org/ppapi/cpp/
H A Dinstance_handle.cc11 InstanceHandle::InstanceHandle(Instance* instance)
H A Dgraphics_3d_client.h16 class Instance;
28 explicit Graphics3DClient(Instance* instance);
H A Dgraphics_3d_client.cc21 Instance::GetPerInstanceObject(instance, kPPPGraphics3DInterface);
33 Graphics3DClient::Graphics3DClient(Instance* instance)
41 Instance::RemovePerInstanceObject(associated_instance_,
H A Dinstance_handle.h16 class Instance;
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.
37 /// implicit conversion from <code>pp::Instance*</code> for prettier code on
42 /// instead of a <code>pp::Instance</code>, and use them in resource
46 /// Implicit constructor for converting a <code>pp::Instance</code> to an
51 InstanceHandle(Instance* instance);
H A Dmouse_lock.h18 class Instance;
30 /// class MyInstance : public pp::Instance, public pp::MouseLock {
43 /// class MyInstance : public pp::Instance {
56 explicit MouseLock(Instance* instance);
H A Dinstance.cc82 Instance::Instance(PP_Instance instance) : pp_instance_(instance) { function in class:pp::Instance
85 Instance::~Instance() {
88 bool Instance::Init(uint32_t /*argc*/, const char* /*argn*/[],
93 void Instance::DidChangeView(const View& view) {
98 void Instance::DidChangeView(const pp::Rect& /*position*/,
102 void Instance::DidChangeFocus(bool /*has_focus*/) {
106 bool Instance::HandleDocumentLoad(const URLLoader& /*url_loader*/) {
110 bool Instance
[all...]
/external/chromium_org/ppapi/tests/extensions/background_keepalive/
H A Dbackground.cc14 class Instance : public pp::Instance { class in inherits:pp::Instance
16 explicit Instance(PP_Instance instance) : function in class:Instance
17 pp::Instance(instance),
23 virtual ~Instance() {}
38 &Instance::DoSomething);
43 pp::CompletionCallbackFactory<Instance> callback_factory_;
53 virtual pp::Instance* CreateInstance(PP_Instance instance) {
54 return new Instance(instance);
/external/chromium_org/native_client_sdk/src/examples/tutorial/load_progress/
H A Dload_progress.cc8 class LoadProgressInstance : public pp::Instance {
11 : pp::Instance(instance) {}
20 virtual pp::Instance* CreateInstance(PP_Instance instance) {
/external/chromium_org/native_client_sdk/src/getting_started/part1/
H A Dhello_tutorial.cc18 /// this becomes a call to the HandleMessage() method of your pp::Instance
20 /// PostMessage() method on your pp::Instance. Note that these two methods
31 /// The Instance class. One of these exists for each instance of your NaCl
33 /// a new Instance for each occurrence of the <embed> tag that has these
40 class HelloTutorialInstance : public pp::Instance {
44 explicit HelloTutorialInstance(PP_Instance instance) : pp::Instance(instance)
68 virtual pp::Instance* CreateInstance(PP_Instance instance) {
/external/chromium_org/ppapi/examples/stub/
H A Dstub.cc11 class MyInstance : public pp::Instance {
13 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {}
28 // Override CreateInstance to create your customized Instance object.
29 virtual pp::Instance* CreateInstance(PP_Instance instance) {
/external/llvm/include/llvm/MC/
H A DMCLabel.h27 // Instance - the instance number of this Directional Local Label
28 unsigned Instance; member in class:llvm::MCLabel
33 : Instance(instance) {}
39 unsigned getInstance() const { return Instance; }
43 unsigned incInstance() { return ++Instance; }
/external/chromium_org/ppapi/cpp/dev/
H A Dzoom_dev.h15 class Instance;
23 // class MyInstance : public pp::Instance, public pp::Zoom_Dev {
34 // class MyInstance : public pp::Instance {
42 explicit Zoom_Dev(Instance* instance);
H A Dselection_dev.cc20 pp::Instance::GetPerInstanceObject(instance, kPPPSelectionInterface);
33 Selection_Dev::Selection_Dev(Instance* instance)
40 Instance::RemovePerInstanceObject(associated_instance_,
H A Dwidget_client_dev.h13 class Instance;
23 explicit WidgetClient_Dev(Instance* instance);
H A Dvideo_capture_client_dev.cc24 Instance::GetPerInstanceObject(instance, kPPPVideoCaptureInterface));
38 Instance::GetPerInstanceObject(instance, kPPPVideoCaptureInterface));
45 Instance::GetPerInstanceObject(instance, kPPPVideoCaptureInterface));
54 Instance::GetPerInstanceObject(instance, kPPPVideoCaptureInterface));
68 VideoCaptureClient_Dev::VideoCaptureClient_Dev(Instance* instance)
76 Instance::RemovePerInstanceObject(instance_,
H A Dvideo_decoder_client_dev.cc26 void* object = Instance::GetPerInstanceObject(instance,
37 void* object = Instance::GetPerInstanceObject(instance,
48 void* object = Instance::GetPerInstanceObject(instance,
58 void* object = Instance::GetPerInstanceObject(instance,
74 VideoDecoderClient_Dev::VideoDecoderClient_Dev(Instance* instance)
82 Instance::RemovePerInstanceObject(associated_instance_,
H A Dwidget_client_dev.cc28 void* object = Instance::GetPerInstanceObject(instance, kPPPWidgetInterface);
47 Instance::GetPerInstanceObject(instance, kPPPScrollbarInterface);
58 Instance::GetPerInstanceObject(instance, kPPPScrollbarInterface);
72 WidgetClient_Dev::WidgetClient_Dev(Instance* instance)
82 Instance::RemovePerInstanceObject(associated_instance_,
84 Instance::RemovePerInstanceObject(associated_instance_,
/external/chromium_org/remoting/client/plugin/
H A Dpepper_module.cc15 virtual pp::Instance* CreateInstance(PP_Instance instance) OVERRIDE {
16 pp::Instance* result = new ChromotingInstance(instance);
H A Dpepper_audio_player.h18 explicit PepperAudioPlayer(pp::Instance* instance);
27 pp::Instance* instance_;
/external/chromium_org/content/child/
H A Dworker_thread_task_runner.cc17 int worker_thread_id = WorkerTaskRunner::Instance()->CurrentWorkerId();
29 return WorkerTaskRunner::Instance()->PostTask(worker_thread_id_, task);
33 return worker_thread_id_ == WorkerTaskRunner::Instance()->CurrentWorkerId();
/external/chromium_org/native_client_sdk/src/getting_started/part2/
H A Dhello_tutorial.cc19 class HelloTutorialInstance : public pp::Instance {
22 : pp::Instance(instance) {}
45 virtual pp::Instance* CreateInstance(PP_Instance instance) {
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
H A Dps.cc13 static pp::Instance* s_Instance = NULL;
37 virtual pp::Instance* CreateInstance(PP_Instance instance) {
38 s_Instance = static_cast<pp::Instance*>(PSUserCreateInstance(instance));
/external/chromium_org/pdf/
H A Dnumber_image_generator.h14 class Instance;
18 explicit NumberImageGenerator(Instance* instance);
28 Instance* instance_;
/external/clang/test/Sema/
H A Doverloaded-func-transparent-union.c13 } Instance __attribute__((transparent_union)); typedef in typeref:union:__anon19141
15 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) {
20 __attribute__((overloadable)) void Class_Init(Instance this, char *str) {

Completed in 6950 milliseconds

1234567891011