/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.require/ |
D | invoke.pass.cpp | 25 struct Type struct 40 static_assert(sizeof(std::__invoke(&Type::f1, std::declval<Type >())) == 1, ""); in main() 41 static_assert(sizeof(std::__invoke(&Type::f2, std::declval<Type const >())) == 2, ""); in main() 43 static_assert(sizeof(std::__invoke(&Type::g1, std::declval<Type &>())) == 1, ""); in main() 44 static_assert(sizeof(std::__invoke(&Type::g2, std::declval<Type const &>())) == 2, ""); in main() 46 static_assert(sizeof(std::__invoke(&Type::g3, std::declval<Type &&>())) == 3, ""); in main() 47 static_assert(sizeof(std::__invoke(&Type::g4, std::declval<Type const&&>())) == 4, ""); in main()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/config/ |
D | suffix.hpp | 411 # define BOOST_USE_FACET(Type, loc) std::use_facet(loc, static_cast<Type*>(0)) argument 412 # define BOOST_HAS_FACET(Type, loc) std::has_facet(loc, static_cast<Type*>(0)) argument 414 # define BOOST_USE_FACET(Type, loc) std::_USE(loc, Type) argument 415 # define BOOST_HAS_FACET(Type, loc) std::_HAS(loc, Type) argument 417 # define BOOST_USE_FACET(Type, loc) (*std::_Use_facet<Type >(loc)) argument 418 # define BOOST_HAS_FACET(Type, loc) std::has_facet< Type >(loc) argument 421 # define BOOST_USE_FACET(Type, loc) std::use_facet< Type >(loc) argument 422 # define BOOST_HAS_FACET(Type, loc) std::has_facet< Type >(loc) argument
|
/ndk/sources/third_party/googletest/googletest/include/gtest/ |
D | gtest-test-part.h | 51 enum Type { enum 60 TestPartResult(Type a_type, in TestPartResult() 72 Type type() const { return type_; } in type() 103 Type type_;
|
D | gtest-spi.h | 100 TestPartResult::Type type, 105 const TestPartResult::Type type_;
|
D | gtest.h | 164 void ReportFailureInUnknownLocation(TestPartResult::Type result_type, 1205 void AddTestPartResult(TestPartResult::Type result_type, 1237 TestPartResult::Type result_type, 1695 AssertHelper(TestPartResult::Type type, 1711 AssertHelperData(TestPartResult::Type t, in AssertHelperData() 1717 TestPartResult::Type const type;
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | type_traits.h | 273 # define _STLP_DEFINE_TYPE_TRAITS_FOR(Type) \ 274 _STLP_TEMPLATE_NULL struct __type_traits< Type > : __type_traits_aux<__true_type> {}; \ 275 _STLP_TEMPLATE_NULL struct __type_traits< const Type > : __type_traits_aux<__true_type> {}; \ 276 _STLP_TEMPLATE_NULL struct __type_traits< volatile Type > : __type_traits_aux<__true_type> {}; \ 277 _STLP_TEMPLATE_NULL struct __type_traits< const volatile Type > : __type_traits_aux<__true_type> {} 279 # define _STLP_DEFINE_TYPE_TRAITS_FOR(Type) \ 280 _STLP_TEMPLATE_NULL struct __type_traits< Type > : __type_traits_aux<__true_type> {};
|
D | concept_checks.h | 767 template <class Type> \ 769 typedef typename Type::__REQUIREMENT __REQUIREMENT; \
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | lexical_cast.hpp | 223 template <typename Type> 227 is_char_or_wchar<Type >::value, 228 Type, 1609 template <typename Type> 1610 bool shr_unsigned(Type& output) in shr_unsigned() 1635 if (has_minus) output = static_cast<Type>(-output); in shr_unsigned() 1644 template <typename Type> 1645 bool shr_signed(Type& output) in shr_signed() 1650 typedef BOOST_DEDUCED_TYPENAME make_unsigned<Type>::type utype; in shr_signed() 1673 utype const comp_val = static_cast<utype>(-(std::numeric_limits<Type>::min)()); in shr_signed() [all …]
|
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 563 typedef typename Types::Head Type; in Register() typedef 564 typedef Fixture<Type> FixtureClass; in Register() 565 typedef typename GTEST_BIND_(TestSel, Type) TestClass; in Register() 573 GetTypeName<Type>().c_str(), in Register()
|
D | gtest-type-util.h.pump | 34 // Type utilities needed for implementing typed and type-parameterized 104 // (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't 118 // Type lists of length 1, 2, 3, and so on.
|
D | gtest-param-util-generated.h.pump | 35 // Type and function utilities for implementing parameterized tests.
|
/ndk/sources/android/support/tests/minitest/ |
D | minitest.h | 294 typedef minitest::internal::AddConst<__typeof__(expr)>::type varname##Type; \ 295 const varname##Type varname = (expr);
|
/ndk/sources/host-tools/make-3.81/ |
D | INSTALL | 53 2. Type `make' to compile the package. 58 4. Type `make install' to install the programs and any data files and 140 Specifying the System Type
|
D | README.Amiga | 4 Type: dev/c
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | INSTALL | 53 2. Type `make' to compile the package. 58 4. Type `make install' to install the programs and any data files and 140 Specifying the System Type
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/policies/ |
D | policy.hpp | 129 #define BOOST_MATH_META_INT(Type, name, Default)\ 130 template <Type N = Default> struct name : public boost::mpl::int_<N>{};\ 132 template <Type N>\ 137 template <Type N> static char test(const name<N>&);\
|
/ndk/sources/third_party/googletest/googletest/src/ |
D | gtest.cc | 343 AssertHelper::AssertHelper(TestPartResult::Type type, in AssertHelper() 609 TestPartResult::Type type, in HasOneFailure() 646 TestPartResult::Type type, in SingleFailureChecker() 1911 void ReportFailureInUnknownLocation(TestPartResult::Type result_type, in ReportFailureInUnknownLocation() 2474 static const char * TestPartResultTypeToString(TestPartResult::Type type) { in TestPartResultTypeToString() 2931 #define GTEST_REPEATER_METHOD_(Name, Type) \ argument 2932 void TestEventRepeater::Name(const Type& parameter) { \ 2941 #define GTEST_REVERSE_REPEATER_METHOD_(Name, Type) \ argument 2942 void TestEventRepeater::Name(const Type& parameter) { \ 3709 TestPartResult::Type result_type, in AddTestPartResult()
|
/ndk/sources/host-tools/ndk-depends/ |
D | ndk-depends.cc | 992 enum Type { enum 999 Type type; 1008 void Set(Type type_p, const String& value_p) { in Set()
|
/ndk/docs/text/ |
D | CPLUSPLUS-SUPPORT.text | 82 the system one, with the addition of RTTI (RunTime Type Information) and 157 Similarly, the NDK toolchain supports C++ RTTI (RunTime Type Information)
|
/ndk/sources/host-tools/sed-4.2.1/po/ |
D | sed.pot | 16 "Content-Type: text/plain; charset=CHARSET\n"
|
D | eu.po | 17 "Content-Type: text/plain; charset=UTF-8\n"
|
D | zh_CN.po | 16 "Content-Type: text/plain; charset=utf-8\n"
|
D | ru.po | 15 "Content-Type: text/plain; charset=utf-8\n"
|
D | ja.po | 18 "Content-Type: text/plain; charset=EUC-JP\n"
|
D | zh_TW.po | 15 "Content-Type: text/plain; charset=UTF-8\n"
|