Home
last modified time | relevance | path

Searched refs:right (Results 1 – 25 of 113) sorted by relevance

12345

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
Dswap.hpp30 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/
Dtypeinfo20 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/
Dtest_tools.hpp534 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 …]
Dfloating_point_comparison.hpp185 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/
Dsetf_fmtflags_mask.pass.cpp33 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()
Dflags_fmtflags.pass.cpp33 test::fmtflags f = t.flags(test::hex | test::right); in main()
35 assert(t.flags() == (test::hex | test::right)); in main()
Dsetf_fmtflags.pass.cpp33 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()
Dunsetf_mask.pass.cpp33 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/
Dright.pass.cpp26 std::ios_base& r = std::right(ios); in main()
28 assert(ios.flags() & std::ios::right); in main()
/ndk/docs/renderscript/
Ddoxygen.css83 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/
Dfmtflags.pass.cpp45 assert(std::ios_base::right); in main()
63 & std::ios_base::right in main()
74 | std::ios_base::right in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
Dput_double.pass.cpp83 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 …]
Dput_long_double.pass.cpp83 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/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
Dbinary_search.hpp144 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/host-tools/sed-4.2.1/po/
Den@quot.header8 # 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).
Den@boldquot.header8 # 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/host-tools/make-3.81/po/
Den@quot.header8 # 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).
Den@boldquot.header8 # 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/host-tools/sed-4.2.1/testsuite/
Dmanis.sed4 # Protect against being on the right side of a sed subst in config.status.
Dreadin.good4 I have as much right as the other fellow has
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_ios_base.h70 _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/sed-4.2.1/lib/
Dregcomp.c116 bin_tree_t *left, bin_tree_t *right,
119 bin_tree_t *left, bin_tree_t *right,
1212 while (node->left || node->right) in postorder()
1216 node = node->right; in postorder()
1229 while (node->right == prev || node->right == NULL); in postorder()
1230 node = node->right; in postorder()
1252 while (node->right == prev || node->right == NULL) in preorder()
1259 node = node->right; in preorder()
1310 if (node->right && node->right->token.type == SUBEXP) in lower_subexps()
1312 node->right = lower_subexp (&err, preg, node->right); in lower_subexps()
[all …]
/ndk/sources/host-tools/nawk-20071023/
Db.c43 #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/
Dtest_tools.ipp381 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/
Dcompile46 right script to run: please start by reading the file `INSTALL'.

12345