Searched defs:P1 (Results 1 - 25 of 44) sorted by path

12

/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2hints.c1549 FT_Vector P0, P1; local
1567 P1.x = x + xOffset;
1568 P1.y = y + yOffset;
1578 glyphpath->offsetStart1 = P1; /* record second point */
1588 P1,
1596 glyphpath->prevElemP1 = P1;
1622 FT_Vector P0, P1, P2, P3; local
1648 P1.x = x1 + xOffset1;
1649 P1.y = y1 + yOffset1;
1664 glyphpath->offsetStart1 = P1; /* recor
[all...]
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dpower_monitor_controller_unittest.py14 class P1(power_monitor.PowerMonitor): class in function:PowerMonitorControllerTest.testComposition
32 [P1(), P2(1), P2(2)])
/external/chromium_org/v8/test/webkit/
H A Ddfg-patchable-get-by-id-after-watchpoint.js42 function P1() { function
45 P1.prototype.g = 42;
52 var p1 = new P1();
65 P1.prototype.h = 58; // Reset the GetById.
43 P1.prototype.g = 42; class
/external/clang/include/clang/Analysis/
H A DProgramPoint.h90 ProgramPoint(const void *P1, argument
95 : Data1(P1),
/external/clang/test/Analysis/
H A Dregion-store.cpp7 class P1 { class
22 class Derived: public P1, public P2 {
/external/clang/test/CodeGenCXX/
H A DPR5863-unreachable-block.cpp6 void P1() { function
/external/clang/test/Modules/Inputs/
H A Dredecl-merge-bottom.h14 @protocol P1; variable
H A Dredecl-merge-left.h13 @protocol P1; variable
H A Dredecl-merge-right.h12 @protocol P1
16 @protocol P1; variable
H A Dredecl-merge-top.h9 @protocol P1; variable
/external/fdlibm/
H A De_exp.c34 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
35 * (where z=r*r, and the values of P1 to P5 are listed below)
38 * | 2.0+P1*z+...+P5*z - R(z) | <= 2
49 * R1(r) = r - (P1*r + P2*r + ... + P5*r ).
94 P1 = 1.66666666666666019037e-01, /* 0x3FC55555, 0x5555553E */ variable
146 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
H A De_pow.c84 P1 = 1.66666666666666019037e-01, /* 0x3FC55555, 0x5555553E */ variable
301 t1 = z - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
/external/freetype/src/cff/
H A Dcf2hints.c1624 FT_Vector P0, P1; local
1678 P1.x = x + xOffset;
1679 P1.y = y + yOffset;
1689 glyphpath->offsetStart1 = P1; /* record second point */
1699 P1,
1707 glyphpath->prevElemP1 = P1;
1733 FT_Vector P0, P1, P2, P3; local
1759 P1.x = x1 + xOffset1;
1760 P1.y = y1 + yOffset1;
1775 glyphpath->offsetStart1 = P1; /* recor
[all...]
/external/libcxx/test/utilities/utility/pairs/pair.astuple/
H A Dtuple_element.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 static_assert((std::is_same<std::tuple_element<0, P1>::type, int>::value), "");
23 static_assert((std::is_same<std::tuple_element<1, P1>::type, short>::value), "");
26 typedef std::pair<int*, char> P1; typedef
27 static_assert((std::is_same<std::tuple_element<0, P1>::type, int*>::value), "");
28 static_assert((std::is_same<std::tuple_element<1, P1>::type, char>::value), "");
H A Dtuple_size.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 static_assert((std::tuple_size<P1>::value == 2), "");
/external/libcxx/test/utilities/utility/pairs/pairs.pair/
H A Dassign_const_pair_U_V.pass.cpp22 typedef std::pair<int, short> P1; typedef
24 P1 p1(3, 4);
H A Dassign_rv_pair_U_V.pass.cpp34 typedef std::pair<std::unique_ptr<Derived>, short> P1; typedef
36 P1 p1(std::unique_ptr<Derived>(), 4);
H A Dconst_pair_U_V.pass.cpp22 typedef std::pair<int, short> P1; typedef
24 P1 p1(3, 4);
32 typedef std::pair<int, short> P1; typedef
34 constexpr P1 p1(3, 4);
H A Dcopy_ctor.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, 4);
24 P1 p2 = p1;
33 typedef std::pair<int, short> P1; typedef
34 constexpr P1 p1(3, 4);
35 constexpr P1 p2 = p1;
H A Dpiecewise.pass.cpp26 typedef std::pair<int, int*> P1; typedef
28 typedef std::pair<P1, P2> P3;
31 assert(p3.first == P1(3, nullptr));
H A Drv_pair_U_V.pass.cpp34 typedef std::pair<std::unique_ptr<Derived>, short> P1; typedef
36 P1 p1(std::unique_ptr<Derived>(), 4);
H A Dswap.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, 4);
24 P1 p2(5, 6);
/external/libcxx/test/utilities/utility/pairs/pairs.spec/
H A Dmake_pair.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 P1 p1 = std::make_pair(3, 4);
29 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
30 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), 4);
35 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
36 P1 p1 = std::make_pair(nullptr, 4);
44 typedef std::pair<int, short> P1; typedef
45 constexpr P1 p1 = std::make_pair(3, 4);
H A Dnon_member_swap.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, 4);
24 P1 p2(5, 6);

Completed in 592 milliseconds

12