Searched refs:pp (Results 26 - 50 of 1094) sorted by relevance

1234567891011>>

/external/chromium_org/pdf/
H A Dprogress_control.h32 const std::vector<pp::ImageData>& images,
33 const pp::ImageData& background,
35 void Reconfigure(const pp::ImageData& background,
36 const std::vector<pp::ImageData>& images,
39 static void CalculateLayout(pp::Instance* instance,
40 const std::vector<pp::ImageData>& images,
41 const pp::ImageData& background,
44 pp::Size* ctrl_size,
45 pp::Rect* image_rc,
46 pp
[all...]
H A Ddraw_utils.h19 void AlphaBlend(const pp::ImageData& src, const pp::Rect& src_rc,
20 pp::ImageData* dest, const pp::Point& dest_origin,
26 void GradientFill(pp::ImageData* image,
27 const pp::Rect& rc,
35 void GradientFill(pp::Instance* instance,
36 pp::ImageData* image,
37 const pp::Rect& dirty_rc,
38 const pp
[all...]
/external/chromium_org/native_client_sdk/src/examples/api/mouse_lock/
H A Dmouse_lock.h27 class MouseLockInstance : public pp::Instance, public pp::MouseLock {
30 : pp::Instance(instance),
31 pp::MouseLock(this),
45 virtual bool HandleInputEvent(const pp::InputEvent& event);
48 virtual void DidChangeView(const pp::View& view);
65 // pp::MouseLock.LockMouse().
69 // as a callback to pp::Graphics2D.Flush().
76 // Create a new pp::ImageData and paint the graphics that represent the mouse
77 // movement in it. Return the new pp
[all...]
/external/chromium_org/ppapi/cpp/
H A Dinstance_handle.cc9 namespace pp { namespace
15 } // namespace pp
H A Dpass_ref.h11 namespace pp { namespace
19 } // namespace pp
/external/chromium_org/remoting/client/plugin/
H A Dpepper_module.cc13 class ChromotingModule : public pp::Module {
15 virtual pp::Instance* CreateInstance(PP_Instance instance) OVERRIDE {
16 pp::Instance* result = new ChromotingInstance(instance);
25 namespace pp { namespace
32 } // namespace pp
H A Dpepper_util.h12 namespace pp { namespace
25 const pp::InstanceHandle& instance,
27 pp::NetAddress* pp_net_address,
29 bool SocketAddressToPpNetAddress(const pp::InstanceHandle& instance,
31 pp::NetAddress* pp_net_address);
32 void PpNetAddressToSocketAddress(const pp::NetAddress& pp_net_address,
/external/chromium_org/native_client_sdk/src/examples/demo/flock/
H A Dsprite.h23 Sprite(uint32_t* pixel_buffer, const pp::Size& size, int32_t stride = 0);
34 const pp::Size& size,
40 void CompositeFromRectToPoint(const pp::Rect& src_rect,
42 const pp::Rect& dest_bounds,
44 const pp::Point& dest_point) const;
47 const pp::Size& size() const {
53 pp::Size pixel_buffer_size_;
/external/chromium_org/ppapi/examples/printing/
H A Dprinting.cc46 class MyInstance : public pp::Instance, public pp::Printing_Dev {
49 : pp::Instance(instance),
50 pp::Printing_Dev(this) {
66 virtual pp::Resource PrintPages(
70 pp::Buffer_Dev buffer(this, pdf_len);
84 class MyModule : public pp::Module {
86 MyModule() : pp::Module() {}
90 virtual pp::Instance* CreateInstance(PP_Instance instance) {
95 namespace pp { namespace
[all...]
/external/chromium_org/ppapi/examples/threading/
H A Dthreading.cc12 class MyInstance : public pp::Instance {
14 MyInstance(PP_Instance instance) : pp::Instance(instance) {
15 thread_ = new pp::SimpleThread(this);
30 virtual void DidChangeView(const pp::View& view) {
37 pp::CompletionCallbackFactory<MyInstance> factory_;
39 pp::SimpleThread* thread_;
43 class MyModule : public pp::Module {
45 MyModule() : pp::Module() {}
48 virtual pp::Instance* CreateInstance(PP_Instance instance) {
53 namespace pp { namespace
[all...]
/external/libpng/arm/
H A Darm_init.c56 png_init_filter_functions_neon(png_structp pp, unsigned int bpp) argument
69 switch ((pp->options >> PNG_ARM_NEON) & 3)
83 no_neon = !png_have_neon(pp);
114 pp->read_filter[PNG_FILTER_VALUE_UP-1] = png_read_filter_row_up_neon;
118 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub3_neon;
119 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg3_neon;
120 pp->read_filter[PNG_FILTER_VALUE_PAETH-1] =
126 pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub4_neon;
127 pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg4_neon;
128 pp
[all...]
/external/chromium_org/ppapi/examples/mouse_cursor/
H A Dmouse_cursor.cc15 void FillRect(pp::ImageData* image, int left, int top, int width, int height,
23 *image->GetAddr32(pp::Point(x, y)) = color;
27 class MyInstance : public pp::Instance {
30 : pp::Instance(instance), width_(0), height_(0) {
37 virtual void DidChangeView(const pp::View& view) {
42 virtual bool HandleInputEvent(const pp::InputEvent& event) {
47 HandleMove(pp::MouseInputEvent(event));
56 void HandleMove(const pp::MouseInputEvent& event) {
57 pp::Point point = event.GetPosition();
61 pp
93 namespace pp { namespace
[all...]
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dppapi_entrypoints.cc24 pp::InternalSetModuleSingleton(module);
29 delete pp::Module::Get();
30 pp::InternalSetModuleSingleton(NULL);
34 if (!pp::Module::Get())
36 return pp::Module::Get()->GetPluginInterface(interface_name);
/external/chromium_org/ppapi/examples/enumerate_devices/
H A Denumerate_devices.cc32 class EnumerateDevicesDemoModule : public pp::Module {
34 EnumerateDevicesDemoModule() : pp::Module() {}
36 virtual pp::Instance* CreateInstance(PP_Instance instance);
39 class EnumerateDevicesDemoInstance : public pp::Instance,
40 public pp::VideoCaptureClient_Dev {
42 EnumerateDevicesDemoInstance(PP_Instance instance, pp::Module* module);
45 // pp::Instance implementation (see PPP_Instance).
46 virtual void HandleMessage(const pp::Var& message_data);
48 // pp::VideoCaptureClient_Dev implementation.
51 const std::vector<pp
122 namespace pp { namespace
[all...]
/external/chromium_org/ppapi/examples/scripting/
H A Dpost_message.cc21 class MyInstance : public pp::Instance {
23 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {}
25 virtual void HandleMessage(const pp::Var& message_data);
32 void MyInstance::HandleMessage(const pp::Var& message_data) {
38 PostMessage(pp::Var(is_palindrome));
44 class MyModule : public pp::Module {
46 MyModule() : pp::Module() {}
50 virtual pp::Instance* CreateInstance(PP_Instance instance) {
55 namespace pp { namespace
62 } // namespace pp
[all...]
/external/chromium_org/ppapi/tests/manual/
H A Ddelete_plugin.cc14 class MyInstance : public pp::Instance {
16 MyInstance(PP_Instance instance) : pp::Instance(instance) {
30 pp::Module::Get()->core()->CallOnMainThread(100,
44 pp::Var code("deletePlugin()");
49 (const PPB_Instance_Trusted*)pp::Module::Get()->GetBrowserInterface(
56 pp::CompletionCallbackFactory<MyInstance> factory_;
59 class MyModule : public pp::Module {
61 MyModule() : pp::Module() {}
64 virtual pp::Instance* CreateInstance(PP_Instance instance) {
69 namespace pp { namespace
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_console.cc22 pp::Module::Get()->GetBrowserInterface(PPB_CONSOLE_INTERFACE));
34 pp::Var source,
35 pp::Var message) {
49 pp::Var source(std::string("somewhere"));
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
[all...]
H A Dtest_udp_socket.h14 namespace pp { namespace
27 std::string GetLocalAddress(pp::NetAddress* address);
28 std::string SetBroadcastOptions(pp::UDPSocket* socket);
29 std::string BindUDPSocket(pp::UDPSocket* socket,
30 const pp::NetAddress& address);
31 std::string LookupPortAndBindUDPSocket(pp::UDPSocket* socket,
32 pp::NetAddress* address);
33 std::string ReadSocket(pp::UDPSocket* socket,
34 pp::NetAddress* address,
37 std::string PassMessage(pp
[all...]
H A Dtest_scrollbar.h14 public pp::WidgetClient_Dev {
25 virtual void InvalidateWidget(pp::Widget_Dev widget,
26 const pp::Rect& dirty_rect);
27 virtual void ScrollbarValueChanged(pp::Scrollbar_Dev scrollbar,
29 virtual void ScrollbarOverlayChanged(pp::Scrollbar_Dev scrollbar,
32 pp::Scrollbar_Dev scrollbar_;
/external/libnfc-nci/src/nfc/nci/
H A Dnci_hrcv.c49 UINT8 *pp, len, op_code; local
55 pp = p+1;
56 NCI_MSG_PRS_HDR1 (pp, op_code);
58 len = *pp++;
64 nfc_ncif_proc_reset_rsp (pp, FALSE);
77 nfc_ncif_set_config_status (pp, len);
85 nfc_ncif_report_conn_close_evt (*p_old, *pp);
108 UINT8 *pp, len, op_code; local
113 pp = p+1;
114 NCI_MSG_PRS_HDR1 (pp, op_cod
160 UINT8 *pp, len, op_code; local
226 UINT8 *pp, len, op_code; local
294 UINT8 *pp, len, op_code; local
354 UINT8 *pp, len, op_code; local
437 UINT8 *pp, len, op_code; local
464 UINT8 *pp, len, op_code; local
[all...]
/external/bluetooth/bluedroid/stack/hcic/
H A Dhciblecmds.c41 UINT8 *pp; local
46 pp = (UINT8 *)(p + 1);
51 UINT16_TO_STREAM (pp, HCI_BLE_SET_EVENT_MASK);
52 UINT8_TO_STREAM (pp, HCIC_PARAM_SIZE_SET_EVENT_MASK);
53 ARRAY8_TO_STREAM (pp, event_mask);
63 UINT8 *pp; local
68 pp = (UINT8 *)(p + 1);
73 UINT16_TO_STREAM (pp, HCI_BLE_READ_BUFFER_SIZE);
74 UINT8_TO_STREAM (pp, HCIC_PARAM_SIZE_READ_CMD);
83 UINT8 *pp; local
103 UINT8 *pp; local
123 UINT8 *pp; local
148 UINT8 *pp; local
176 UINT8 *pp; local
197 UINT8 *pp; local
228 UINT8 *pp; local
262 UINT8 *pp; local
285 UINT8 *pp; local
311 UINT8 *pp; local
341 UINT8 *pp; local
377 UINT8 *pp; local
397 UINT8 *pp; local
417 UINT8 *pp; local
437 UINT8 *pp; local
460 UINT8 *pp; local
486 UINT8 *pp; local
515 UINT8 *pp; local
537 UINT8 *pp; local
559 UINT8 *pp; local
584 UINT8 *pp; local
618 UINT8 *pp; local
643 UINT8 *pp; local
668 UINT8 *pp; local
691 UINT8 *pp; local
713 UINT8 *pp; local
733 UINT8 *pp; local
755 UINT8 *pp; local
779 UINT8 *pp; local
799 UINT8 *pp; local
819 UINT8 *pp; local
846 UINT8 *pp; local
874 UINT8 *pp; local
[all...]
/external/chromium_org/ppapi/tests/extensions/media_galleries/
H A Dtest_galleries.cc19 class FilePassingInstance : public pp::Instance {
31 virtual void HandleMessage(const pp::Var& var_message);
34 /// it into a pp::FileRef. On failure, returns a null FileRef.
35 pp::FileRef ParseMessage(const pp::Var& var_message, std::string* test_type);
37 void TestRead(pp::FileRef file_ref);
38 void TestWrite(pp::FileRef file_ref);
42 : pp::Instance(instance) {}
53 pp::FileRef FilePassingInstance::ParseMessage(const pp
160 namespace pp { namespace
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/cpp/
H A Dcpp-preproc.c97 cpp_build_cmdline(yasm_preproc_cpp *pp, const char *extra) argument
108 arg = TAILQ_FIRST(&pp->cpp_args);
127 APPEND(pp->filename);
134 cpp_invoke(yasm_preproc_cpp *pp) argument
138 cmdline = cpp_build_cmdline(pp, NULL);
141 pp->f = popen(cmdline, "r");
142 if (!pp->f)
153 cpp_destroy_args(yasm_preproc_cpp *pp) argument
157 while ( (arg = TAILQ_FIRST(&pp->cpp_args)) ) {
158 TAILQ_REMOVE(&pp
166 cpp_generate_deps(yasm_preproc_cpp *pp) argument
190 yasm_preproc_cpp *pp = yasm_xmalloc(sizeof(yasm_preproc_cpp)); local
219 yasm_preproc_cpp *pp = (yasm_preproc_cpp *)preproc; local
237 yasm_preproc_cpp *pp = (yasm_preproc_cpp *)preproc; local
296 yasm_preproc_cpp *pp = (yasm_preproc_cpp *)preproc; local
340 yasm_preproc_cpp *pp = (yasm_preproc_cpp *)preproc; local
352 yasm_preproc_cpp *pp = (yasm_preproc_cpp *)preproc; local
364 yasm_preproc_cpp *pp = (yasm_preproc_cpp *)preproc; local
[all...]
/external/chromium_org/ppapi/examples/file_chooser/
H A Dfile_chooser.cc16 class MyInstance : public pp::InstancePrivate {
19 : pp::InstancePrivate(instance) {
24 virtual bool HandleInputEvent(const pp::InputEvent& event) {
27 pp::MouseInputEvent mouse_event(event);
51 chooser_ = pp::FileChooser_Dev(this, mode, accept_types);
57 const std::vector<pp::FileRef>& files) {
65 pp::VarPrivate doc = GetWindowObject().GetProperty("document");
66 pp::VarPrivate body = doc.GetProperty("body");
76 void Log(const pp::Var& var) {
77 pp
98 namespace pp { namespace
[all...]
/external/chromium_org/native_client_sdk/src/examples/api/core/
H A Dcore.cc24 class CoreInstance : public pp::Instance {
29 : pp::Instance(instance), callback_factory_(this) {}
36 virtual void HandleMessage(const pp::Var& var_message) {
40 last_receive_time_ = pp::Module::Get()->core()->GetTimeTicks();
41 pp::Module::Get()->core()->CallOnMainThread(
45 pp::Var msg(0);
52 pp::Var msg(pp::Module::Get()->core()->GetTimeTicks() - last_receive_time_);
57 pp::CompletionCallbackFactory<CoreInstance> callback_factory_;
61 class CoreModule : public pp
71 namespace pp { namespace
[all...]

Completed in 516 milliseconds

1234567891011>>