HomeSort by relevance Sort by last modified time
    Searched refs:ConstexprStringView (Results 1 - 2 of 2) sorted by null

  /libnativehelper/platform_include/nativehelper/detail/
signature_checker.h 67 struct ConstexprStringView {
69 // ConstexprStringView str = "hello_world";
71 constexpr ConstexprStringView(const char (& lit)[N]) // NOLINT: explicit.
78 constexpr ConstexprStringView(const char* ptr, size_t size)
85 // ConstexprStringView str = nullptr;
86 explicit constexpr ConstexprStringView(const decltype(nullptr)&)
91 constexpr ConstexprStringView() : _array(""), _size(0u) {}
107 constexpr ConstexprStringView substr(size_t start, size_t len) const {
111 return ConstexprStringView(&_array[start], len);
115 constexpr ConstexprStringView substr(size_t start) const
    [all...]
  /libnativehelper/tests/
JniSafeRegisterNativeMethods_test.cpp 51 constexpr ConstexprStringView v_str = "V";
583 nativehelper::detail::ConstexprStringView str) {
660 constexpr auto str_type_name = ConstexprStringView(#type_name); \
    [all...]

Completed in 219 milliseconds