Home
last modified time | relevance | path

Searched refs:constexpr_strcmp (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/fbjni/test/jni/
H A Dsimple_fixed_string_tests.cpp36 constexpr int constexpr_strcmp(const char* s1, const char* s2) { in constexpr_strcmp() function
55 constexpr_strcmp(str.c_str(), "hello") == 0, "bad fixedstring contents!"); in TEST()
60 constexpr_strcmp(substr.c_str(), "ell") == 0, "substr is broken!"); in TEST()
65 constexpr_strcmp(concatLeft.c_str(), "Why hello") == 0, in TEST()
71 constexpr_strcmp(concatRight.c_str(), "hello there") == 0, in TEST()
79 constexpr_strcmp(bigConcat.c_str(), "Let's make a long string!") == 0, in TEST()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_index/test/
Dtype_index_constexpr_test.cpp21 using boost::typeindex::detail::constexpr_strcmp; in strcmp_same()
24 constexpr_strcmp(hello1, hello1) == 0 in strcmp_same()
28 constexpr_strcmp(hello2, hello2) == 0 in strcmp_same()
32 constexpr_strcmp(hello1, hello2) != 0 in strcmp_same()
36 constexpr_strcmp(hello2, hello1) != 0 in strcmp_same()
40 (constexpr_strcmp(hello2, hello1) < 0) in strcmp_same()
46 (constexpr_strcmp(hello1, hello2) < 0) in strcmp_same()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_index/include/boost/type_index/
Dctti_type_index.hpp153 return /*left == right ||*/ !boost::typeindex::detail::constexpr_strcmp(left, right); in equal()
159 return /*left != right &&*/ boost::typeindex::detail::constexpr_strcmp(left, right) < 0; in before()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_index/include/boost/type_index/detail/
Dcompile_time_type_info.hpp177 … BOOST_CXX14_CONSTEXPR inline int constexpr_strcmp(const char *v1, const char *v2) BOOST_NOEXCEPT { in constexpr_strcmp() function