Home
last modified time | relevance | path

Searched refs:px (Results 1 – 15 of 15) sorted by relevance

/ndk/docs/renderscript/
Ddoxygen.css5 font-size: 12px;
17 margin: 10px 2px;
40 margin-top: 2px;
44 margin-bottom: 0px;
48 margin-bottom: 4px;
52 margin-bottom: 2px;
73 border: 1px solid #A3B4D7;
83 margin-right: 15px;
110 border: 1px double #869DCA;
144 border: 1px solid #C4CFE5;
[all …]
Dtabs.css5 font-size: 13px;
9 font-size: 10px;
12 font-size: 9px;
25 line-height: 36px;
31 padding: 0 20px;
37 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
43 padding: 0 10px;
50 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
58 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
Djquery.js12 …{return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.…
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/
Dscoped_ptr.hpp43 T * px; member in boost::scoped_ptr
57 explicit scoped_ptr( T * p = 0 ): px( p ) // never throws in scoped_ptr()
60 boost::sp_scalar_constructor_hook( px ); in scoped_ptr()
66 explicit scoped_ptr( std::auto_ptr<T> p ): px( p.release() ) // never throws in scoped_ptr()
69 boost::sp_scalar_constructor_hook( px ); in scoped_ptr()
78 boost::sp_scalar_destructor_hook( px ); in ~scoped_ptr()
80 boost::checked_delete( px ); in ~scoped_ptr()
85 BOOST_ASSERT( p == 0 || p != px ); // catch self-reset errors in reset()
91 BOOST_ASSERT( px != 0 ); in operator *()
92 return *px; in operator *()
[all …]
Dscoped_array.hpp42 T * px; member in boost::scoped_array
56 explicit scoped_array( T * p = 0 ) : px( p ) // never throws in scoped_array()
59 boost::sp_array_constructor_hook( px ); in scoped_array()
66 boost::sp_array_destructor_hook( px ); in ~scoped_array()
68 boost::checked_array_delete( px ); in ~scoped_array()
73 BOOST_ASSERT( p == 0 || p != px ); // catch self-reset errors in reset()
79 BOOST_ASSERT( px != 0 ); in operator []()
81 return px[i]; in operator []()
86 return px; in get()
94 T * tmp = b.px; in swap()
[all …]
Dshared_ptr.hpp178 shared_ptr(): px(0), pn() // never throws in 1.30+ in shared_ptr()
183 explicit shared_ptr( Y * p ): px( p ), pn( p ) // Y must be complete in shared_ptr()
194 template<class Y, class D> shared_ptr(Y * p, D d): px(p), pn(p, d) in shared_ptr()
201 template<class Y, class D, class A> shared_ptr( Y * p, D d, A a ): px( p ), pn( p, d, a ) in shared_ptr()
212 shared_ptr( shared_ptr const & r ): px( r.px ), pn( r.pn ) // never throws in shared_ptr()
222 px = r.px; in shared_ptr()
226 …shared_ptr( weak_ptr<Y> const & r, boost::detail::sp_nothrow_tag ): px( 0 ), pn( r.pn, boost::deta… in shared_ptr()
230 px = r.px; in shared_ptr()
244 : px( r.px ), pn( r.pn ) // never throws in shared_ptr()
250 shared_ptr( shared_ptr<Y> const & r, T * p ): px( p ), pn( r.pn ) // never throws in shared_ptr()
[all …]
Dshared_array.hpp58 explicit shared_array(T * p = 0): px(p), pn(p, deleter()) in shared_array()
68 template<class D> shared_array(T * p, D d): px(p), pn(p, d) in shared_array()
78 shared_array( shared_array const & r ): px( r.px ), pn( r.pn ) // never throws in shared_array()
94 BOOST_ASSERT(p == 0 || p != px); in reset()
105 BOOST_ASSERT(px != 0); in operator []()
107 return px[i]; in operator []()
112 return px; in get()
130 std::swap(px, other.px); in swap()
141 T * px; // contained pointer member in boost::shared_array
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
Doperator_bool.hpp13 return px != 0; in operator bool()
26 return px == 0? 0: unspecified_bool; in operator unspecified_bool_type()
38 return px == 0? 0: &this_type::get; in operator unspecified_bool_type()
47 return px == 0? 0: &this_type::px; in operator unspecified_bool_type()
55 return px == 0; in operator !()
Dsp_counted_impl.hpp45 void sp_scalar_constructor_hook( void * px, std::size_t size, void * pn );
46 void sp_scalar_destructor_hook( void * px, std::size_t size, void * pn );
66 explicit sp_counted_impl_p( X * px ): px_( px ) in sp_counted_impl_p() argument
69 boost::sp_scalar_constructor_hook( px, sizeof(X), this ); in sp_counted_impl_p()
/ndk/tests/device/test-stlport_static-exception/jni/
Ddelete1.cpp16 X (*px) [10]; in main() local
18 px = new X[5][10]; in main()
20 delete [] px; in main()
/ndk/tests/device/test-stlport_shared-exception/jni/
Ddelete1.cpp16 X (*px) [10]; in main() local
18 px = new X[5][10]; in main()
20 delete [] px; in main()
/ndk/sources/host-tools/nawk-20071023/
Dlex.c403 { char xbuf[100], *px; in string() local
404 for (px = xbuf; (c = input()) != 0 && px-xbuf < 100-2; ) { in string()
408 *px++ = c; in string()
412 *px = 0; in string()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/exception/
Dexception.hpp51 adopt( T * px ) in adopt() argument
54 px_=px; in adopt()
/ndk/sources/android/support/src/stdio/
Dstrtod.c667 Bcopy_ptr(Bigint **px, Bigint *y) in Bcopy_ptr() argument
669 if (*px == BIGINT_INVALID) in Bcopy_ptr()
672 Bfree(*px); /* invalid input */ in Bcopy_ptr()
673 *px = BIGINT_INVALID; in Bcopy_ptr()
675 Bcopy_valid(*px,y); in Bcopy_ptr()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dvalarray30 valarray(const value_type* px, size_t n);