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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/cpp/dev/
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);
printing_dev.h 15 class Instance;
17 // You would typically use this either via inheritance on your instance or
21 // The instance parameter must outlive this class.
22 explicit Printing_Dev(Instance* instance);
text_input_dev.h 16 class Instance;
20 // with the given instance, and registers as the global handler for handling the
23 // You would typically use this either via inheritance on your instance:
24 // class MyInstance : public pp::Instance, public pp::TextInput_Dev {
35 // class MyInstance : public pp::Instance {
43 explicit TextInput_Dev(Instance* instance);
video_capture_client_dev.h 17 class Instance;
21 explicit VideoCaptureClient_Dev(Instance* instance);
video_decoder_client_dev.h 14 class Instance;
20 // instance.
23 VideoDecoderClient_Dev(Instance* instance);
video_decoder_client_dev.cc 9 #include "ppapi/cpp/instance.h"
21 void ProvidePictureBuffers(PP_Instance instance,
26 void* object = Instance::GetPerInstanceObject(instance,
34 void DismissPictureBuffer(PP_Instance instance,
37 void* object = Instance::GetPerInstanceObject(instance,
45 void PictureReady(PP_Instance instance,
48 void* object = Instance::GetPerInstanceObject(instance,
    [all...]
widget_client_dev.cc 11 #include "ppapi/cpp/instance.h"
25 void Widget_Invalidate(PP_Instance instance,
28 void* object = Instance::GetPerInstanceObject(instance, kPPPWidgetInterface);
43 void Scrollbar_ValueChanged(PP_Instance instance,
47 Instance::GetPerInstanceObject(instance, kPPPScrollbarInterface);
54 void Scrollbar_OverlayChanged(PP_Instance instance,
58 Instance::GetPerInstanceObject(instance, kPPPScrollbarInterface)
    [all...]
printing_dev.cc 8 #include "ppapi/cpp/instance.h"
23 uint32_t QuerySupportedFormats(PP_Instance instance) {
25 Instance::GetPerInstanceObject(instance, kPPPPrintingInterface);
31 int32_t Begin(PP_Instance instance,
34 Instance::GetPerInstanceObject(instance, kPPPPrintingInterface);
40 PP_Resource PrintPages(PP_Instance instance,
44 pp::Instance::GetPerInstanceObject(instance, kPPPPrintingInterface)
    [all...]
zoom_dev.cc 8 #include "ppapi/cpp/instance.h"
19 void Zoom(PP_Instance instance,
22 void* object = Instance::GetPerInstanceObject(instance, kPPPZoomInterface);
38 Zoom_Dev::Zoom_Dev(Instance* instance) : associated_instance_(instance) {
40 instance->AddPerInstanceObject(kPPPZoomInterface, this);
44 Instance::RemovePerInstanceObject(associated_instance_,
  /dalvik/hit/src/com/android/hit/
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...]
  /external/chromium_org/ppapi/cpp/
module.h 23 class Instance;
26 /// an instance of your module on the web page. The browser creates a new
27 /// instance for each <code>\<embed></code> tag with
31 typedef std::map<PP_Instance, Instance*> InstanceMap;
39 /// Get() returns the global instance of this module object, or NULL if the
42 /// @return The global instance of the module object.
90 /// be called from the main thread! This instance object may be destroyed at
94 /// @param[in] instance This <code>PP_Instance</code>.
98 Instance* InstanceForPPInstance(PP_Instance instance);
    [all...]
network_monitor.h 13 class Instance;
20 explicit NetworkMonitor(const InstanceHandle& instance);
mouse_lock.cc 10 #include "ppapi/cpp/instance.h"
21 void MouseLockLost(PP_Instance instance) {
23 Instance::GetPerInstanceObject(instance, kPPPMouseLockInterface);
39 MouseLock::MouseLock(Instance* instance)
40 : associated_instance_(instance) {
42 instance->AddPerInstanceObject(kPPPMouseLockInterface, this);
46 Instance::RemovePerInstanceObject(associated_instance_,
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
module_ppapi.h 20 virtual pp::Instance* CreateInstance(PP_Instance pp_instance);
  /external/chromium_org/ppapi/cpp/private/
find_private.h 16 class Instance;
20 // interfaces with an object. It associates itself with the given instance, and
24 // You would typically use this either via inheritance on your instance:
25 // class MyInstance : public pp::Instance, public pp::Find_Private {
36 // class MyInstance : public pp::Instance {
44 // The instance parameter must outlive this class.
45 Find_Private(Instance* instance);
  /external/chromium_org/third_party/libjingle/source/talk/base/
profiler_unittest.cc 49 ASSERT_TRUE(Profiler::Instance()->Clear());
53 const ProfilerEvent* event = Profiler::Instance()->GetEvent(function_name);
75 ASSERT_TRUE(Profiler::Instance()->Clear());
78 event1 = Profiler::Instance()->GetEvent(kEvent1Name);
91 event2 = Profiler::Instance()->GetEvent(kEvent2Name);
121 ASSERT_TRUE(Profiler::Instance()->Clear());
123 EXPECT_FALSE(Profiler::Instance()->Clear());
124 EXPECT_TRUE(Profiler::Instance()->GetEvent("event") != NULL);
126 EXPECT_TRUE(Profiler::Instance()->Clear());
127 EXPECT_EQ(NULL, Profiler::Instance()->GetEvent("event"))
    [all...]
  /external/chromium_org/third_party/webrtc/base/
profiler_unittest.cc 32 ASSERT_TRUE(Profiler::Instance()->Clear());
36 const ProfilerEvent* event = Profiler::Instance()->GetEvent(function_name);
58 ASSERT_TRUE(Profiler::Instance()->Clear());
61 event1 = Profiler::Instance()->GetEvent(kEvent1Name);
74 event2 = Profiler::Instance()->GetEvent(kEvent2Name);
104 ASSERT_TRUE(Profiler::Instance()->Clear());
106 EXPECT_FALSE(Profiler::Instance()->Clear());
107 EXPECT_TRUE(Profiler::Instance()->GetEvent("event") != NULL);
109 EXPECT_TRUE(Profiler::Instance()->Clear());
110 EXPECT_EQ(NULL, Profiler::Instance()->GetEvent("event"))
    [all...]
  /cts/suite/audio_quality/executable/src/
main.cpp 42 Settings::Instance()->getSetting(Settings::EREPORT_FILE).getPathDir();
94 if (Settings::Instance() == NULL) {
100 Settings::Instance()->addSetting(Settings::EADB, strSerial);
102 if (Log::Instance(dirName.string()) == NULL) {
106 Log::Instance()->setLogLevel((Log::LogLevel)logLevel);
108 if (Report::Instance(dirName.string()) == NULL) {
120 if (!client->init(Settings::Instance()->getSetting(Settings::EADB))) {
130 Settings::Instance()->addSetting(Settings::EDEVICE_INFO, deviceInfo);
138 Settings::Instance()->addSetting(Settings::ETEST_XML, xmlFile);
  /external/chromium_org/ash/test/
test_metro_viewer_process_host.cc 27 aura::RemoteWindowTreeHostWin::Instance()->Disconnected();
36 aura::RemoteWindowTreeHostWin::Instance()->SetRemoteWindowHandle(hwnd);
37 aura::RemoteWindowTreeHostWin::Instance()->Connected(this);
  /external/chromium_org/native_client_sdk/src/examples/api/url_loader/
url_loader_handler.h 10 #include "ppapi/cpp/instance.h"
29 // URLLoaderHandler* handler* = URLLoaderHandler::Create(instance,url);
34 // Creates instance of URLLoaderHandler on the heap.
37 static URLLoaderHandler* Create(pp::Instance* instance_,
43 URLLoaderHandler(pp::Instance* instance_, const std::string& url);
76 pp::Instance* instance_; // Weak pointer.
  /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/tests/manual/
delete_plugin.cc 10 #include "ppapi/cpp/instance.h"
14 class MyInstance : public pp::Instance {
16 MyInstance(PP_Instance instance) : pp::Instance(instance) {
46 When scripting is removed from instance, this is the code that will do the
64 virtual pp::Instance* CreateInstance(PP_Instance instance) {
65 return new MyInstance(instance);

Completed in 502 milliseconds

12 3 4 5 6 7 8 91011>>