/ndk/tests/device/b16355858/jni/ |
D | sample.c | 3 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()
|
D | sample_lib.c | 18 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/ |
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/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 …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 …]
|
D | floating_point_comparison.hpp | 185 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/ |
D | definitions-utils.mk | 214 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/ |
D | strfmon.c | 11 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/ |
D | left.pass.cpp | 26 std::ios_base& r = std::left(ios); in main() 28 assert(ios.flags() & std::ios::left); in main()
|
/ndk/docs/Additional_library_docs/renderscript/ |
D | doxygen.css | 135 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 …]
|
D | jquery.js | 12 …(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pi… 22 …left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0]… property 43 …left:"auto"})}this.element.wrap(c('<div class="ui-wrapper" style="overflow: hidden;"></div>').css(… property 44 …left=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/ |
D | fmtflags.pass.cpp | 43 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/ |
D | binary_search.hpp | 144 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/ |
D | put_double.pass.cpp | 75 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 …]
|
D | put_long_double.pass.cpp | 75 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/ |
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/host-tools/nawk-20071023/ |
D | awkgram.y | 78 %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 …]
|
D | b.c | 42 #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.h | 69 _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/ |
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/cxx-stl/stlport/stlport/using/ |
D | ios | 28 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/ |
D | char_pointer.pass.cpp | 82 left(os); in main()
|
D | unsigned_char.pass.cpp | 82 left(os); in main()
|
D | unsigned_char_pointer.pass.cpp | 82 left(os); in main()
|
D | char.pass.cpp | 82 left(os); in main()
|