Searched refs:pp (Results 1 - 25 of 979) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
H A DDirectiveHandlerBase.cpp9 namespace pp namespace
16 } // namespace pp
H A DLexer.cpp9 namespace pp namespace
16 } // namespace pp
/external/clang/test/CodeGen/
H A D2002-01-23-LoadQISIReloadFailure.c5 unsigned char *pp; local
8 w_cnt += *pp;
/external/blktrace/btt/
H A Dplat.c33 struct plat_info *pp; local
37 pp = malloc(sizeof(*pp));
38 pp->nl = 0;
39 pp->first_ts = pp->last_ts = pp->tl = -1.0;
43 if ((pp->fp = my_fopen(oname, "w")) == NULL) {
47 add_file(pp->fp, oname);
49 return pp;
54 struct plat_info *pp = info; local
71 struct plat_info *pp = info; local
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dreconintra4x4.c147 unsigned char pp[9]; local
149 pp[0] = Left[3];
150 pp[1] = Left[2];
151 pp[2] = Left[1];
152 pp[3] = Left[0];
153 pp[4] = top_left;
154 pp[5] = Above[0];
155 pp[6] = Above[1];
156 pp[7] = Above[2];
157 pp[
181 unsigned char pp[9]; local
216 unsigned char *pp = Above; local
239 unsigned char pp[9]; local
273 unsigned char *pp = Left; local
[all...]
/external/chromium_org/remoting/protocol/
H A Dppapi_module_stub.cc7 namespace pp { namespace
14 } // namespace pp
/external/clang/test/Parser/
H A Dnamelookup-bug-1.c6 struct Object *pp; variable in typeref:struct:Object
/external/chromium_org/native_client_sdk/src/examples/tutorial/load_progress/
H A Dload_progress.cc8 class LoadProgressInstance : public pp::Instance {
11 : pp::Instance(instance) {}
15 class LoadProgressModule : public pp::Module {
17 LoadProgressModule() : pp::Module() {}
20 virtual pp::Instance* CreateInstance(PP_Instance instance) {
25 namespace pp { namespace
27 } // namespace pp
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dscriptable_plugin.h25 class ScriptablePlugin : public pp::deprecated::ScriptableObject {
31 pp::VarPrivate* var() { return var_; }
40 // handled via pp::Var's, we create the var() here if not created already.
48 // ------ Methods inherited from pp::deprecated::ScriptableObject:
52 virtual bool HasProperty(const pp::Var& name, pp::Var* exception);
55 virtual bool HasMethod(const pp::Var& name, pp::Var* exception);
59 virtual pp::Var GetProperty(const pp
[all...]
/external/chromium_org/third_party/angle_dx11/tests/preprocessor_tests/
H A Doperator_test.cpp27 pp::Token token;
55 {"++", pp::Token::OP_INC},
56 {"--", pp::Token::OP_DEC},
57 {"<<", pp::Token::OP_LEFT},
58 {">>", pp::Token::OP_RIGHT},
59 {"<=", pp::Token::OP_LE},
60 {">=", pp::Token::OP_GE},
61 {"==", pp::Token::OP_EQ},
62 {"!=", pp::Token::OP_NE},
63 {"&&", pp
[all...]
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
H A Dps.cc13 static pp::Instance* s_Instance = NULL;
20 return pp::Module::Get()->GetBrowserInterface(name);
27 class PSModule : public pp::Module {
29 PSModule() : pp::Module() {}
32 virtual pp::Instance* CreateInstance(PP_Instance instance) {
33 s_Instance = static_cast<pp::Instance*>(PSUserCreateInstance(instance));
38 namespace pp { namespace
49 } // namespace pp
/external/chromium_org/ppapi/examples/stub/
H A Dstub.cc11 class MyInstance : public pp::Instance {
13 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {}
23 class MyModule : public pp::Module {
25 MyModule() : pp::Module() {}
29 virtual pp::Instance* CreateInstance(PP_Instance instance) {
34 namespace pp { namespace
41 } // namespace pp
/external/chromium_org/ppapi/cpp/
H A Dmodule_embedder.h12 namespace pp { namespace
16 /// This function creates the <code>pp::Module</code> object associated with
23 pp::Module* CreateModule();
38 } // namespace pp
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/ppapi/examples/font/
H A Dsimple_font.cc19 class MyInstance : public pp::Instance {
22 : pp::Instance(instance) {
25 virtual void DidChangeView(const pp::Rect& position, const pp::Rect& clip) {
30 pp::ImageData image(this, PP_IMAGEDATAFORMAT_BGRA_PREMUL, last_size_, true);
31 pp::Graphics2D graphics(this, last_size_, false);
34 pp::BrowserFontDescription desc;
37 pp::BrowserFont_Trusted font(this, desc);
40 pp::Rect text_clip(position.size()); // Use entire bounds for clip.
42 pp
112 namespace pp { namespace
[all...]
/external/clang/test/SemaCXX/
H A Dqualification-conversion.cpp3 int* quals2(int const * const * pp);
6 void test_quals(int * p, int * * pp, int * * * ppp) { argument
7 int const * const * pp2 = pp;
9 quals2(pp);
15 void mquals2(int const A::* const A::*pp);
18 void test_mquals(int A::*p, int A::* A::*pp, int A::* A::* A::*ppp) {
19 int const A::* const A::* pp2 = pp;
21 mquals2(pp);
26 void aquals2(int * const (*pp)[1]);
29 void test_aquals(int (*p)[1], int * (*pp)[ argument
[all...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DParsePositionTest.java23 ParsePosition pp; field in class:ParsePositionTest
43 assertTrue("equals failed.", !pp.equals(pp2));
44 pp.setErrorIndex(56);
45 pp.setIndex(43);
46 assertTrue("equals failed.", pp.equals(pp2));
54 pp.setErrorIndex(56);
55 assertEquals("getErrorIndex failed.", 56, pp.getErrorIndex());
63 assertTrue("getIndex failed.", pp.getIndex() == Integer.MAX_VALUE);
71 assertTrue("Wrong hashCode returned", (pp.hashCode() == 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/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/chromium_org/ppapi/examples/mouse_cursor/
H A Dmouse_cursor.cc13 void FillRect(pp::ImageData* image, int left, int top, int width, int height,
21 *image->GetAddr32(pp::Point(x, y)) = color;
25 class MyInstance : public pp::Instance {
28 : pp::Instance(instance), width_(0), height_(0) {
35 virtual void DidChangeView(const pp::View& view) {
40 virtual bool HandleInputEvent(const pp::InputEvent& event) {
45 HandleMove(pp::MouseInputEvent(event));
54 void HandleMove(const pp::MouseInputEvent& event) {
55 pp::Point point = event.GetPosition();
59 pp
91 namespace pp { namespace
[all...]
/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...]

Completed in 1541 milliseconds

1234567891011>>