/ndk/docs/renderscript/ |
D | doxygen.css | 5 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 …]
|
D | tabs.css | 5 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);
|
D | jquery.js | 12 …{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/ |
D | scoped_ptr.hpp | 43 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 …]
|
D | scoped_array.hpp | 42 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 …]
|
D | shared_ptr.hpp | 178 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 …]
|
D | shared_array.hpp | 58 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/ |
D | operator_bool.hpp | 13 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 !()
|
D | sp_counted_impl.hpp | 45 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/ |
D | delete1.cpp | 16 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/ |
D | delete1.cpp | 16 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/ |
D | lex.c | 403 { 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/ |
D | exception.hpp | 51 adopt( T * px ) in adopt() argument 54 px_=px; in adopt()
|
/ndk/sources/android/support/src/stdio/ |
D | strtod.c | 667 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/ |
D | valarray | 30 valarray(const value_type* px, size_t n);
|