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

1 2 3 4 5 6 7 8 91011>>

  /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_handle.cc 12 : pp_instance_(instance->pp_instance()) {
fullscreen.cc 33 instance_.pp_instance());
40 instance_.pp_instance(), PP_FromBool(fullscreen)));
47 instance_.pp_instance(), &size->pp_size()));
text_input_controller.cc 32 instance_.pp_instance(), type);
39 instance_.pp_instance(), &caret.pp_rect());
46 instance_.pp_instance());
55 instance_.pp_instance(),
module.cc 28 #include "ppapi/c/pp_instance.h"
45 PP_Bool InputEvent_HandleEvent(PP_Instance pp_instance, PP_Resource resource) {
49 Instance* instance = module_singleton->InstanceForPPInstance(pp_instance);
62 PP_Bool Instance_DidCreate(PP_Instance pp_instance,
70 Instance* instance = module_singleton->CreateInstance(pp_instance);
73 module_singleton->current_instances_[pp_instance] = instance;
77 void Instance_DidDestroy(PP_Instance instance) {
92 void Instance_DidChangeView(PP_Instance pp_instance
    [all...]
instance.cc 53 void HandleMessage(PP_Instance pp_instance,
57 message_handler->HandleMessage(InstanceHandle(pp_instance), Var(*var));
60 void HandleBlockingMessage(PP_Instance pp_instance,
66 message_handler->HandleBlockingMessage(InstanceHandle(pp_instance),
71 void Destroy(PP_Instance pp_instance, void* user_data) {
73 message_handler->WasUnregistered(InstanceHandle(pp_instance));
82 Instance::Instance(PP_Instance instance) : pp_instance_(instance)
    [all...]
audio_config.cc 38 instance.pp_instance(), sample_rate, sample_frame_count));
42 instance.pp_instance(), sample_rate, sample_frame_count));
51 RecommendSampleRate(instance.pp_instance());
63 RecommendSampleFrameCount(instance.pp_instance(),
mouse_cursor.cc 27 instance.pp_instance(), type, image.pp_resource(),
  /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...]
test_mouse_cursor.cc 31 instance_->pp_instance(), PP_MOUSECURSOR_TYPE_POINTER, 0, NULL)));
33 instance_->pp_instance(), static_cast<PP_MouseCursor_Type>(-2),
45 instance_->pp_instance(), PP_MOUSECURSOR_TYPE_CUSTOM,
50 instance_->pp_instance(), PP_MOUSECURSOR_TYPE_CUSTOM, 0, NULL)));
54 instance_->pp_instance(), PP_MOUSECURSOR_TYPE_POINTER,
61 instance_->pp_instance(), PP_MOUSECURSOR_TYPE_CUSTOM,
73 instance_->pp_instance(), PP_MOUSECURSOR_TYPE_CUSTOM,
79 instance_->pp_instance(), PP_MOUSECURSOR_TYPE_CUSTOM,
test_video_decoder_dev.cc 25 testing_interface_->QuitMessageLoop(instance_->pp_instance());
30 instance_->pp_instance(), 0, static_cast<PP_VideoDecoder_Profile>(-1));
test_mouse_lock.cc 16 nested_event_(instance->pp_instance()) {
42 TestCompletionCallback callback(instance_->pp_instance(), callback_type());
57 TestCompletionCallback callback(instance_->pp_instance(), callback_type());
77 testing_interface_->SimulateInputEvent(instance_->pp_instance(),
test_output_protection_private.cc 30 TestCompletionCallback callback(instance_->pp_instance(), callback_type());
33 Create(instance_->pp_instance());
48 TestCompletionCallback callback(instance_->pp_instance(), callback_type());
51 Create(instance_->pp_instance());
  /external/chromium_org/ppapi/cpp/dev/
cursor_control_dev.cc 29 instance.pp_instance(), type, custom_image.pp_resource(),
38 instance.pp_instance()));
46 instance.pp_instance()));
54 instance.pp_instance()));
62 instance.pp_instance()));
text_input_dev.cc 19 void RequestSurroundingText(PP_Instance instance,
63 instance_.pp_instance(), type);
66 instance_.pp_instance(), type);
74 instance_.pp_instance(), &caret.pp_rect(), &bounding_box.pp_rect());
77 instance_.pp_instance(), &caret.pp_rect(), &bounding_box.pp_rect());
84 instance_.pp_instance());
87 instance_.pp_instance());
94 instance_.pp_instance());
103 instance_.pp_instance(), text.c_str(), caret, anchor);
url_util_dev.cc 84 instance.pp_instance(),
91 instance.pp_instance(),
120 instance.pp_instance(),
126 instance.pp_instance(),
138 active.pp_instance(),
139 target.pp_instance()));
144 active.pp_instance(),
145 target.pp_instance()));
155 instance.pp_instance(),
161 instance.pp_instance(),
    [all...]
  /external/chromium_org/ppapi/cpp/private/
pdf.cc 34 instance.pp_instance(), string_id));
45 instance.pp_instance(), image_id));
57 instance.pp_instance(), description, charset);
82 get_interface<PPB_PDF>()->SearchString(instance.pp_instance(), string,
90 get_interface<PPB_PDF>()->DidStartLoading(instance.pp_instance());
96 get_interface<PPB_PDF>()->DidStopLoading(instance.pp_instance());
103 get_interface<PPB_PDF>()->SetContentRestriction(instance.pp_instance(),
112 get_interface<PPB_PDF>()->HistogramPDFPageCount(instance.pp_instance(),
120 get_interface<PPB_PDF>()->UserMetricsRecordAction(instance.pp_instance(),
128 get_interface<PPB_PDF>()->HasUnsupportedFeature(instance.pp_instance());
    [all...]
flash_fullscreen.cc 37 instance_.pp_instance()));
41 instance_.pp_instance()));
49 instance_.pp_instance(), PP_FromBool(fullscreen)));
53 instance_.pp_instance(), PP_FromBool(fullscreen)));
61 instance_.pp_instance(), &size->pp_size()));
65 instance_.pp_instance(), &size->pp_size()));
instance_private.cc 20 PP_Var GetInstanceObject(PP_Instance pp_instance) {
25 module_singleton->InstanceForPPInstance(pp_instance));
37 InstancePrivate::InstancePrivate(PP_Instance instance) : Instance(instance) {
54 get_interface<PPB_Instance_Private>()->GetWindowObject(pp_instance()));
62 pp_instance()));
70 pp_instance(),
flash.cc 93 instance.pp_instance(), PP_FromBool(on_top));
96 instance.pp_instance(), PP_FromBool(on_top));
115 instance.pp_instance(),
129 instance.pp_instance(),
150 instance.pp_instance(), url.c_str()));
154 instance.pp_instance(), url.c_str()));
185 instance.pp_instance(), t);
189 instance.pp_instance(), t);
223 instance.pp_instance(), &rect.pp_rect()));
227 instance.pp_instance(), &rect.pp_rect()))
    [all...]
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
module_ppapi.h 20 virtual pp::Instance* CreateInstance(PP_Instance pp_instance);
module_ppapi.cc 67 pp::Instance* ModulePpapi::CreateInstance(PP_Instance pp_instance) {
68 MODULE_PRINTF(("ModulePpapi::CreateInstance (pp_instance=%" NACL_PRId32
70 pp_instance));
71 Plugin* plugin = new Plugin(pp_instance);
  /external/chromium_org/content/renderer/pepper/
url_response_info_util.h 9 #include "ppapi/c/pp_instance.h"
26 PP_Instance pp_instance,
  /external/chromium_org/ppapi/c/trusted/
ppb_url_loader_trusted.h 11 #include "ppapi/c/pp_instance.h"
33 PP_Instance pp_instance,
  /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

Completed in 185 milliseconds

1 2 3 4 5 6 7 8 91011>>