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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/examples/tutorial/multi_platform/
multi_platform.cc 5 #include "ppapi/cpp/instance.h"
9 class Instance : public pp::Instance {
11 explicit Instance(PP_Instance instance) : pp::Instance(instance) {}
12 virtual ~Instance() {}
25 virtual pp::Instance* CreateInstance(PP_Instance instance) {
    [all...]
  /external/chromium_org/ppapi/cpp/
graphics_3d_client.h 16 class Instance;
20 // instance.
26 /// @param[in] instance The instance that will own the new
28 explicit Graphics3DClient(Instance* instance);
instance_handle.cc 7 #include "ppapi/cpp/instance.h"
11 InstanceHandle::InstanceHandle(Instance* instance)
12 : pp_instance_(instance->pp_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_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...]
instance.cc 5 #include "ppapi/cpp/instance.h"
47 Instance::Instance(PP_Instance instance) : pp_instance_(instance) {
50 Instance::~Instance() {
53 bool Instance::Init(uint32_t /*argc*/, const char* /*argn*/[],
58 void Instance::DidChangeView(const View& view) {
63 void Instance::DidChangeView(const pp::Rect& /*position*/
    [all...]
graphics_3d_client.cc 8 #include "ppapi/cpp/instance.h"
19 void Graphics3D_ContextLost(PP_Instance instance) {
21 Instance::GetPerInstanceObject(instance, kPPPGraphics3DInterface);
33 Graphics3DClient::Graphics3DClient(Instance* instance)
34 : associated_instance_(instance) {
37 instance->AddPerInstanceObject(kPPPGraphics3DInterface, this);
41 Instance::RemovePerInstanceObject(associated_instance_,
  /external/chromium_org/ppapi/tests/extensions/background_keepalive/
background.cc 8 #include "ppapi/cpp/instance.h"
14 class Instance : public pp::Instance {
16 explicit Instance(PP_Instance instance) :
17 pp::Instance(instance),
23 virtual ~Instance() {}
38 &Instance::DoSomething);
43 pp::CompletionCallbackFactory<Instance> callback_factory_
    [all...]
  /external/llvm/include/llvm/MC/
MCLabel.h 27 // Instance - the instance number of this Directional Local Label
28 unsigned Instance;
32 MCLabel(unsigned instance)
33 : Instance(instance) {}
38 /// getInstance - Get the current instance of this Directional Local Label.
39 unsigned getInstance() const { return Instance; }
41 /// incInstance - Increment the current instance of this Directional Local
43 unsigned incInstance() { return ++Instance; }
    [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);
  /dalvik/hit/src/com/android/hit/
Instance.java 23 public abstract class Instance {
26 // Id of the ClassObj of which this object is an instance
39 public boolean accept(Instance instance);
43 private ArrayList<Instance> mParents;
52 * for in a heap other than the one this Instance is in.
62 public abstract void visit(Set<Instance> resultSet, Filter filter);
69 HashSet<Instance> set = new HashSet<Instance>();
75 for (Instance instance: set)
    [all...]
  /frameworks/base/core/java/android/gesture/
Learner.java 25 private final ArrayList<Instance> mInstances = new ArrayList<Instance>();
28 * Add an instance to the learner
30 * @param instance
32 void addInstance(Instance instance) {
33 mInstances.add(instance);
41 ArrayList<Instance> getInstances() {
46 * Remove an instance based on its id
51 ArrayList<Instance> instances = mInstances
54 Instance instance = instances.get(i); local
73 final Instance instance = instances.get(i); local
    [all...]
  /external/chromium_org/native_client_sdk/src/getting_started/part1/
hello_tutorial.cc 18 /// this becomes a call to the HandleMessage() method of your pp::Instance
20 /// PostMessage() method on your pp::Instance. Note that these two methods
27 #include "ppapi/cpp/instance.h"
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 {
42 /// The constructor creates the plugin-side instance.
43 /// @param[in] instance the handle to the browser-side plugin instance
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps.cc 8 #include "ppapi/cpp/instance.h"
13 static pp::Instance* s_Instance = NULL;
25 // an instance of your NaCl module on the web page. The browser creates a new
26 // instance for each <embed> tag with type="application/x-nacl".
32 virtual pp::Instance* CreateInstance(PP_Instance instance) {
33 s_Instance = static_cast<pp::Instance*>(PSUserCreateInstance(instance));
43 // is one instance per <embed> tag on the page. This is the main binding
  /external/chromium_org/pdf/
number_image_generator.h 14 class Instance;
18 explicit NumberImageGenerator(Instance* instance);
28 Instance* instance_;
pdf.h 19 virtual pp::Instance* CreateInstance(PP_Instance instance);
  /external/chromium_org/ppapi/examples/stub/
stub.cc 5 #include "ppapi/cpp/instance.h"
11 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) {
30 return new MyInstance(instance);
  /external/clang/test/Sema/
overloaded-func-transparent-union.c 13 } Instance __attribute__((transparent_union));
15 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) {
20 __attribute__((overloadable)) void Class_Init(Instance this, char *str) {
  /cts/suite/audio_quality/lib/include/
Log.h 36 static Log* Instance(const char* dirName = NULL);
55 #define LOGE(x...) do { Log::Instance()->printf(Log::ELogE, x); \
56 Log::Instance()->printf(Log::ELogE, " file %s line %d", __FILE__, __LINE__); } while(0)
57 #define LOGW(x...) do { Log::Instance()->printf(Log::ELogW, x); } while(0)
58 #define LOGI(x...) do { Log::Instance()->printf(Log::ELogI, x); } while(0)
59 #define LOGD(x...) do { Log::Instance()->printf(Log::ELogD, x); } while(0)
60 #define LOGV(x...) do { Log::Instance()->printf(Log::ELogV, x); } while(0)
62 #define MSG(x...) do { Log::Instance()->printf(Log::ELogE, x); } while(0)
64 #define ASSERT(cond) if(!(cond)) { Log::Instance()->printf(Log::ELogE, \
  /external/chromium_org/ppapi/cpp/dev/
widget_client_dev.h 13 class Instance;
20 // instance.
23 explicit WidgetClient_Dev(Instance* instance);
zoom_dev.h 15 class Instance;
18 // interfaces with an object. It associates itself with the given instance, and
22 // You would typically use this either via inheritance on your instance:
23 // class MyInstance : public pp::Instance, public pp::Zoom_Dev {
34 // class MyInstance : public pp::Instance {
42 explicit Zoom_Dev(Instance* instance);
  /external/chromium_org/remoting/client/plugin/
pepper_audio_player.h 10 #include "ppapi/cpp/instance.h"
18 explicit PepperAudioPlayer(pp::Instance* instance);
27 pp::Instance* instance_;
pepper_module.cc 7 #include "ppapi/cpp/instance.h"
15 virtual pp::Instance* CreateInstance(PP_Instance instance) OVERRIDE {
16 pp::Instance* result = new ChromotingInstance(instance);
  /external/chromium_org/content/child/
worker_thread_task_runner.cc 17 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/
hello_tutorial.cc 5 #include "ppapi/cpp/instance.h"
19 class HelloTutorialInstance : public pp::Instance {
21 explicit HelloTutorialInstance(PP_Instance instance)
22 : pp::Instance(instance) {}
45 virtual pp::Instance* CreateInstance(PP_Instance instance) {
46 return new HelloTutorialInstance(instance);

Completed in 176 milliseconds

1 2 3 4 5 6 7 8 91011>>