/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/ |
D | swap.hpp | 30 void swap_impl(T& left, T& right) in swap_impl() argument 33 swap(left,right); in swap_impl() 37 void swap_impl(T (& left)[N], T (& right)[N]) in swap_impl() 41 ::boost_swap_impl::swap_impl(left[i], right[i]); in swap_impl() 49 void swap(T1& left, T2& right) in swap() argument 51 ::boost_swap_impl::swap_impl(left, right); in swap()
|
/ndk/sources/cxx-stl/system/include/ |
D | typeinfo | 20 bool operator==(type_info const & right) const; 21 bool operator!=(type_info const & right) const; 22 bool before(type_info const & right) const; 25 type_info(type_info const & right); 26 type_info & operator=(type_info const & right);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
D | test_tools.hpp | 534 predicate_result equal_impl( Left const& left, Right const& right ) in BOOST_PP_REPEAT() 536 return left == right; in BOOST_PP_REPEAT() 541 predicate_result BOOST_TEST_DECL equal_impl( char const* left, char const* right ); 542 …_impl( char* left, char const* right ) { return equal_impl( static_cast<char const*>(left), static… in equal_impl() argument 543 …_impl( char const* left, char* right ) { return equal_impl( static_cast<char const*>(left), static… in equal_impl() argument 544 …ual_impl( char* left, char* right ) { return equal_impl( static_cast<char const*>(left), sta… in equal_impl() argument 547 predicate_result BOOST_TEST_DECL equal_impl( wchar_t const* left, wchar_t const* right ); 548 …har_t* left, wchar_t const* right ) { return equal_impl( static_cast<wchar_t const*>(left), static… in equal_impl() argument 549 …har_t const* left, wchar_t* right ) { return equal_impl( static_cast<wchar_t const*>(left), static… in equal_impl() argument 550 … wchar_t* left, wchar_t* right ) { return equal_impl( static_cast<wchar_t const*>(left), sta… in equal_impl() argument [all …]
|
D | floating_point_comparison.hpp | 185 predicate_result operator()( FPT left, FPT right ) const in operator ()() 187 FPT diff = tt_detail::fpt_abs( left - right ); in operator ()() 188 FPT d1 = tt_detail::safe_fpt_division( diff, tt_detail::fpt_abs( right ) ); in operator ()() 221 operator()( FPT1 left, FPT2 right, percent_tolerance_t<ToleranceBaseType> tolerance, in operator ()() 233 return pred( left, right ); in operator ()() 237 operator()( FPT1 left, FPT2 right, fraction_tolerance_t<ToleranceBaseType> tolerance, in operator ()() 246 return pred( left, right ); in operator ()()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/ |
D | setf_fmtflags_mask.pass.cpp | 33 test::fmtflags f = t.setf(test::hex | test::right, test::dec | test::right); in main() 35 assert(t.flags() == (test::skipws | test::right)); in main()
|
D | flags_fmtflags.pass.cpp | 33 test::fmtflags f = t.flags(test::hex | test::right); in main() 35 assert(t.flags() == (test::hex | test::right)); in main()
|
D | setf_fmtflags.pass.cpp | 33 test::fmtflags f = t.setf(test::hex | test::right); in main() 35 assert(t.flags() == (test::skipws | test::dec | test::hex | test::right)); in main()
|
D | unsetf_mask.pass.cpp | 33 t.unsetf(test::dec | test::right); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/adjustfield.manip/ |
D | right.pass.cpp | 26 std::ios_base& r = std::right(ios); in main() 28 assert(ios.flags() & std::ios::right); in main()
|
/ndk/docs/Getting_Started/html/ |
D | doxygen.css | 41 margin-right: 15px; 103 margin-right: 15px; 212 padding-right: 4px; 213 text-align: right; 214 border-right: 2px solid #0F0; 264 margin-right: 8px; 312 text-align: right; 313 padding-right: 12px; 498 margin-right: 15px; 509 margin-right: 5px; [all …]
|
/ndk/docs/Programmers_Guide/html/ |
D | doxygen.css | 41 margin-right: 15px; 103 margin-right: 15px; 212 padding-right: 4px; 213 text-align: right; 214 border-right: 2px solid #0F0; 264 margin-right: 8px; 312 text-align: right; 313 padding-right: 12px; 498 margin-right: 15px; 509 margin-right: 5px; [all …]
|
D | navtree.css | 97 background:url("ftv2splitbar.png") repeat scroll right center transparent; 100 right:0; 126 right:24px;
|
/ndk/docs/Additional_library_docs/renderscript/ |
D | doxygen.css | 83 margin-right: 15px; 192 margin-right: 8px; 238 text-align: right; 239 padding-right: 12px; 395 margin-right: 15px; 406 margin-right: 5px; 418 border-right: 1px solid #A8B8D9; 425 border-top-right-radius: 8px; 433 -webkit-border-top-right-radius: 8px; 444 border-right: 1px solid #A8B8D9; [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/ |
D | fmtflags.pass.cpp | 45 assert(std::ios_base::right); in main() 63 & std::ios_base::right in main() 74 | std::ios_base::right in main()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/ |
D | binary_search.hpp | 144 ForwardIter middle, left, right; in equal_range() local 160 right = boost::detail::upper_bound(++middle, first, val); in equal_range() 161 return std::pair<ForwardIter, ForwardIter>(left, right); in equal_range() 176 ForwardIter middle, left, right; in equal_range() local 192 right = boost::detail::upper_bound(++middle, first, val, comp); in equal_range() 193 return std::pair<ForwardIter, ForwardIter>(left, right); in equal_range()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/ |
D | put_double.pass.cpp | 83 right(ios); in test1() 117 right(ios); in test1() 154 right(ios); in test1() 188 right(ios); in test1() 228 right(ios); in test1() 262 right(ios); in test1() 299 right(ios); in test1() 333 right(ios); in test1() 376 right(ios); in test1() 410 right(ios); in test1() [all …]
|
D | put_long_double.pass.cpp | 83 right(ios); in test1() 117 right(ios); in test1() 154 right(ios); in test1() 188 right(ios); in test1() 228 right(ios); in test1() 262 right(ios); in test1() 299 right(ios); in test1() 333 right(ios); in test1() 376 right(ios); in test1() 410 right(ios); in test1() [all …]
|
/ndk/sources/host-tools/make-3.81/po/ |
D | en@quot.header | 8 # left single quotation mark (U+2018) and right single quotation mark (U+2019). 10 # left single quotation mark (U+2018) and right single quotation mark (U+2019) 12 # left double quotation mark (U+201C) and right double quotation mark (U+201D).
|
D | en@boldquot.header | 8 # left single quotation mark (U+2018) and right single quotation mark (U+2019). 10 # left single quotation mark (U+2018) and right single quotation mark (U+2019) 12 # left double quotation mark (U+201C) and right double quotation mark (U+201D).
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _ios_base.h | 70 _STLP_STATIC_CONSTANT(int, right = 0x0002); 84 _STLP_STATIC_CONSTANT(int, adjustfield = left | right | internal); 319 inline ios_base& _STLP_CALL right(ios_base& __s) in right() function 320 { __s.setf(ios_base::right, ios_base::adjustfield); return __s; } in right()
|
/ndk/sources/host-tools/nawk-20071023/ |
D | b.c | 43 #define right(v) (v)->narg[1] macro 198 penter(right(p)); in penter() 200 parent(right(p)) = p; in penter() 222 freetr(right(p)); in freetr() 348 f->re[info(v)].lval.np = right(v); in cfoll() 374 cfoll(f,right(v)); in cfoll() 405 if (type(p) == CCL && (*(char *) right(p)) == '\0') in first() 416 if (first(left(p)) == 0 && first(right(p)) == 0) return(0); in first() 419 b = first(right(p)); in first() 448 if (first(right(p)) == 0) { in follow()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
D | test_tools.ipp | 381 equal_impl( char const* left, char const* right ) 383 return (left && right) ? std::strcmp( left, right ) == 0 : (left == right); 391 equal_impl( wchar_t const* left, wchar_t const* right ) 393 return (left && right) ? std::wcscmp( left, right ) == 0 : (left == right);
|
/ndk/sources/host-tools/make-3.81/config/ |
D | compile | 46 right script to run: please start by reading the file `INSTALL'.
|
/ndk/sources/cxx-stl/stlport/stlport/using/ |
D | ios | 29 using _STLP_NEW_IO_NAMESPACE::right;
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | num_put_get_test.cpp | 615 CHECK_COMPLETE(type, val, base, noshowbase, noshowpos, nouppercase, 0, right, expected) 665 CHECK_COMPLETE(short, 0, oct, showbase, noshowpos, nouppercase, 0, right, "0") in num_put_integer() 666 CHECK_COMPLETE(short, 0, oct, showbase, showpos, nouppercase, 6, right, " 0") in num_put_integer() 668 CHECK_COMPLETE(short, 1, oct, showbase, noshowpos, nouppercase, 6, right, " 01") in num_put_integer() 708 CHECK_COMPLETE(short, 0, dec, showbase, showpos, nouppercase, 0, right, "+0") in num_put_integer() 709 CHECK_COMPLETE(short, 0, dec, showbase, showpos, nouppercase, 6, right, " +0") in num_put_integer() 710 CHECK_COMPLETE(short, 1, dec, showbase, showpos, nouppercase, 6, right, " +1") in num_put_integer() 759 CHECK_COMPLETE(short, 0, hex, showbase, showpos, nouppercase, 0, right, "0") in num_put_integer() 760 CHECK_COMPLETE(short, 0, hex, showbase, noshowpos, nouppercase, 6, right, " 0") in num_put_integer() 763 CHECK_COMPLETE(short, 1, hex, showbase, noshowpos, nouppercase, 6, right, " 0x1") in num_put_integer()
|