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

1 2 3 4 5 6 7 8 91011

  /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"
46 Instance::Instance(PP_Instance instance) : pp_instance_(instance) {
49 Instance::~Instance() {
52 bool Instance::Init(uint32_t /*argc*/, const char* /*argn*/[],
57 void Instance::DidChangeView(const View& view) {
62 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/third_party/libjingle/source/talk/base/
messagehandler.cc 34 MessageQueueManager::Instance()->Clear(this);
  /external/chromium_org/third_party/libjingle/source/talk/base/
messagehandler.cc 34 MessageQueueManager::Instance()->Clear(this);
  /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...]
Queries.java 45 * parent object, this will give you an Instance.
50 * in question, this will give you an Instance.
135 public static Instance[] instancesOf(State state, String baseClassName) {
143 Instance[] instances = new Instance[theClass.mInstances.size()];
152 public static Instance[] allInstancesOf(State state, String baseClassName) {
165 ArrayList<Instance> instanceList = new ArrayList<Instance>();
171 Instance[] result = new Instance[instanceList.size()]
    [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/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/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) {
nonnull.c 10 } Instance __attribute__((transparent_union));
12 __attribute__((nonnull(1))) void Class_init(Instance this, char *str) {
  /external/chromium_org/ppapi/cpp/private/
network_monitor_private.h 14 class Instance;
18 NetworkMonitorPrivate(const InstanceHandle& instance,
  /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/
find_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::Find_Dev {
34 // class MyInstance : public pp::Instance {
42 // The instance parameter must outlive this class.
43 Find_Dev(Instance* instance);
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);
selection_dev.cc 7 #include "ppapi/cpp/instance.h"
18 PP_Var GetSelectedText(PP_Instance instance, PP_Bool html) {
20 pp::Instance::GetPerInstanceObject(instance, kPPPSelectionInterface);
33 Selection_Dev::Selection_Dev(Instance* instance)
34 : associated_instance_(instance) {
36 instance->AddPerInstanceObject(kPPPSelectionInterface, this);
40 Instance::RemovePerInstanceObject(associated_instance_,
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);
  /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_;

Completed in 4297 milliseconds

1 2 3 4 5 6 7 8 91011