Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 77) sorted by relevance

1234

/ndk/tests/device/b16355858/jni/
Dsample.c3 typedef unsigned (*VP8LPredictorFunc)(unsigned left, const unsigned* const top);
8 const unsigned left = 0xff7b7b7b; in main() local
9 const unsigned pred = kPredictorsC[0](left, top + 1); in main()
11 top[0], top[1], left, pred); in main()
12 if (pred == left) in main()
Dsample_lib.c18 static unsigned Predictor11(unsigned left, const unsigned* const top) { in Predictor11() argument
19 const unsigned pred = Select(top[0], left, top[-1]); in Predictor11()
23 typedef unsigned (*VP8LPredictorFunc)(unsigned left, const unsigned* const top);
/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/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 …ne predicate_result equal_impl( char* left, char const* right ) { return equal_impl( static_cast<c… in equal_impl() argument
543 …predicate_result equal_impl( char const* left, char* right ) { return equal_impl( static_cast<char… in equal_impl() argument
544 …ne predicate_result equal_impl( char* left, char* right ) { return equal_impl( static_cast<c… in equal_impl() argument
547 predicate_result BOOST_TEST_DECL equal_impl( wchar_t const* left, wchar_t const* right );
548 …dicate_result equal_impl( wchar_t* left, wchar_t const* right ) { return equal_impl( static_cast<w… in equal_impl() argument
549 …ate_result equal_impl( wchar_t const* left, wchar_t* right ) { return equal_impl( static_cast<wcha… in equal_impl() argument
550 …dicate_result equal_impl( wchar_t* left, wchar_t* right ) { return equal_impl( static_cast<w… in equal_impl() argument
[all …]
Dfloating_point_comparison.hpp185 predicate_result operator()( FPT left, FPT right ) const in operator ()() argument
187 FPT diff = tt_detail::fpt_abs( left - right ); in operator ()()
189 FPT d2 = tt_detail::safe_fpt_division( diff, tt_detail::fpt_abs( left ) ); 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/build/core/
Ddefinitions-utils.mk214 left-justify-quoted-15 = $(call -left-justify,$1,xxxxxxxxxxxxxxx)
216 -test-left-justify-quoted-15 = \
217 $(call test-expect," ",$(call left-justify-quoted-15,))\
218 $(call test-expect,"Foo Bar ",$(call left-justify-quoted-15,Foo Bar))\
220 $(call left-justify-quoted-15,Very long string over 15 characters wide)))
226 -left-justify = $(strip \
231 -test-left-justify = \
232 $(call test-expect,"",$(call -left-justify,,))\
233 $(call test-expect,"foo",$(call -left-justify,foo,xxx))\
234 $(call test-expect,"foo ",$(call -left-justify,foo,xxxx))\
[all …]
/ndk/sources/android/support/src/musl-locale/
Dstrfmon.c11 int fill, nogrp, negpar, nosym, left, intl; in vstrfmon_l() local
28 left = 0; in vstrfmon_l()
45 left = 1; in vstrfmon_l()
63 if (!left && fw>w) w = fw; in vstrfmon_l()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/adjustfield.manip/
Dleft.pass.cpp26 std::ios_base& r = std::left(ios); in main()
28 assert(ios.flags() & std::ios::left); in main()
/ndk/docs/Additional_library_docs/renderscript/
Ddoxygen.css135 margin-left: -1cm;
168 …background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(…
173 margin-left: 16px;
179 margin-left: 16px;
191 margin-left: 8px;
387 margin-left: 9px;
412 margin-left: 6px;
417 border-left: 1px solid #A8B8D9;
426 border-top-left-radius: 8px;
434 -webkit-border-top-left-radius: 8px;
[all …]
Djquery.js12 …(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pi…
22left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0]… property
43left:"auto"})}this.element.wrap(c('<div class="ui-wrapper" style="overflow: hidden;"></div>').css(… property
44left=s.parentData.left+s.position.left;s.offset.top=s.parentData.top+s.position.top;var k=Math.abs… property
53 …['scroll'+D]-b['client'+D]}})};function j(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
Dfmtflags.pass.cpp43 assert(std::ios_base::left); in main()
61 & std::ios_base::left in main()
73 assert(std::ios_base::adjustfield == (std::ios_base::left in main()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
Dbinary_search.hpp144 ForwardIter middle, left, right; in equal_range() local
158 left = boost::detail::lower_bound(first, middle, val); in equal_range()
161 return std::pair<ForwardIter, ForwardIter>(left, right); in equal_range()
176 ForwardIter middle, left, right; in equal_range() local
190 left = boost::detail::lower_bound(first, middle, 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/
Dput_double.pass.cpp75 left(ios); in test1()
109 left(ios); in test1()
146 left(ios); in test1()
180 left(ios); in test1()
220 left(ios); in test1()
254 left(ios); in test1()
291 left(ios); in test1()
325 left(ios); in test1()
368 left(ios); in test1()
402 left(ios); in test1()
[all …]
Dput_long_double.pass.cpp75 left(ios); in test1()
109 left(ios); in test1()
146 left(ios); in test1()
180 left(ios); in test1()
220 left(ios); in test1()
254 left(ios); in test1()
291 left(ios); in test1()
325 left(ios); in test1()
368 left(ios); in test1()
402 left(ios); in test1()
[all …]
/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/nawk-20071023/
Dawkgram.y78 %left BOR
79 %left AND
80 %left GETLINE
82 %left ARG BLTIN BREAK CALL CLOSE CONTINUE DELETE DO EXIT FOR FUNC
83 %left GSUB IF INDEX LSUBSTR MATCHFCN NEXT NUMBER
84 %left PRINT PRINTF RETURN SPLIT SPRINTF STRING SUB SUBSTR
85 %left REGEXPR VAR VARNF IVAR WHILE '('
86 %left CAT
87 %left '+' '-'
88 %left '*' '/' '%'
[all …]
Db.c42 #define left(v) (v)->narg[0] macro
192 penter(left(p)); in penter()
193 parent(left(p)) = p; in penter()
197 penter(left(p)); in penter()
199 parent(left(p)) = p; in penter()
216 freetr(left(p)); in freetr()
221 freetr(left(p)); in freetr()
369 cfoll(f,left(v)); in cfoll()
373 cfoll(f,left(v)); in cfoll()
409 if (first(left(p)) == 0) return(0); in first()
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_ios_base.h69 _STLP_STATIC_CONSTANT(int, left = 0x0001);
84 _STLP_STATIC_CONSTANT(int, adjustfield = left | right | internal);
316 inline ios_base& _STLP_CALL left(ios_base& __s) in left() function
317 { __s.setf(ios_base::left, ios_base::adjustfield); return __s; } in left()
/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/cxx-stl/stlport/stlport/using/
Dios28 using _STLP_NEW_IO_NAMESPACE::left;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/
Dchar_pointer.pass.cpp82 left(os); in main()
Dunsigned_char.pass.cpp82 left(os); in main()
Dunsigned_char_pointer.pass.cpp82 left(os); in main()
Dchar.pass.cpp82 left(os); in main()

1234