Searched defs:right (Results 1 - 14 of 14) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
H A Dswap.hpp30 void swap_impl(T& left, T& right) argument
33 swap(left,right);
37 void swap_impl(T (& left)[N], T (& right)[N])
41 ::boost_swap_impl::swap_impl(left[i], right[i]);
49 void swap(T1& left, T2& right) argument
51 ::boost_swap_impl::swap_impl(left, right);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
H A Dbinary_search.hpp144 ForwardIter middle, left, right; local
160 right = boost::detail::upper_bound(++middle, first, val);
161 return std::pair<ForwardIter, ForwardIter>(left, right);
176 ForwardIter middle, left, right; local
192 right = boost::detail::upper_bound(++middle, first, val, comp);
193 return std::pair<ForwardIter, ForwardIter>(left, right);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
H A Dfloating_point_comparison.hpp185 predicate_result operator()( FPT left, FPT right ) const
187 FPT diff = tt_detail::fpt_abs( left - right );
188 FPT d1 = tt_detail::safe_fpt_division( diff, tt_detail::fpt_abs( right ) );
221 operator()( FPT1 left, FPT2 right, percent_tolerance_t<ToleranceBaseType> tolerance, argument
233 return pred( left, right );
237 operator()( FPT1 left, FPT2 right, fraction_tolerance_t<ToleranceBaseType> tolerance, argument
246 return pred( left, right );
H A Dtest_tools.hpp71 // R - right argument
534 predicate_result equal_impl( Left const& left, Right const& right )
536 return left == right;
541 predicate_result BOOST_TEST_DECL equal_impl( char const* left, char const* right );
542 inline predicate_result equal_impl( char* left, char const* right ) { return equal_impl( static_cast<char const*>(left), static_cast<char const*>(right) ); }
543 inline predicate_result equal_impl( char const* left, char* right ) { return equal_impl( static_cast<char const*>(left), static_cast<char const*>(right) ); }
544 inline predicate_result equal_impl( char* left, char* right ) { return equal_impl( static_cast<char const*>(left), static_cast<char const*>(right) ); }
558 call_impl( Left const& left, Right const& right, mpl::false_ ) const argument
565 call_impl( Left const& left, Right const& right, mpl::true_ ) const argument
[all...]
/ndk/sources/cxx-stl/stlport/src/
H A Dios.cpp47 const ios_base::fmtflags ios_base::right; member in class:ios_base
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dios.cpp99 const ios_base::fmtflags ios_base::right; member in class:ios_base
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A 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) function
320 { __s.setf(ios_base::right, ios_base::adjustfield); return __s; }
/ndk/sources/host-tools/nawk-20071023/
H A Db.c43 #define right(v) (v)->narg[1] macro
52 left is index, right contains value or pointer to value
53 unary (STAR, PLUS, QUEST): left is child, right is null
54 binary (CAT, OR): left and right are children
198 penter(right(p));
200 parent(right(p)) = p;
222 freetr(right(p));
348 f->re[info(v)].lval.np = right(v);
374 cfoll(f,right(v));
405 if (type(p) == CCL && (*(char *) right(
[all...]
/ndk/sources/host-tools/sed-4.2.1/lib/
H A Dquotearg.c250 char const *right = gettext_quote (N_("'"), quoting_style); local
255 quote_string = right;
H A Dregex_internal.c1375 __re_size_t idx, right, mid;
1381 right = set->nelem - 1;
1382 while (idx < right)
1384 mid = (idx + right) / 2;
1388 right = mid;
1373 __re_size_t idx, right, mid; local
H A Dregcomp.c116 bin_tree_t *left, bin_tree_t *right,
119 bin_tree_t *left, bin_tree_t *right,
1217 /* Descend down the tree, preferably to the left (or to the right
1219 while (node->left || node->right)
1223 node = node->right;
1235 /* Go up while we have a node that is reached from the right. */
1236 while (node->right == prev || node->right == NULL);
1237 node = node->right;
1253 /* Go to the left node, or up and to the right
1421 Idx left, right; local
3730 create_tree(re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right, re_token_type_t type) argument
3739 create_token_tree(re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right, const re_token_t *token) argument
[all...]
H A Dregex_internal.h488 struct bin_tree_t *right; member in struct:bin_tree_t
H A Dregexec.c1590 subexpression. Accept this right away. */
4152 does not have the right size. */
4328 Idx left, right, mid, last;
4329 last = right = mctx->nbkref_ents;
4330 for (left = 0; left < right;)
4332 mid = (left + right) / 2;
4336 right = mid;
4323 Idx left, right, mid, last; local
/ndk/tests/build/issue20862-libpng-O0/jni/
H A Dpngrtran.c375 png_byte right; member in struct:png_dsort_struct
597 t->right = (png_byte)j;
616 (int)png_ptr->index_to_palette[p->right]
624 next_j = p->right;
628 j = p->right;
2065 * right itself.

Completed in 123 milliseconds