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

  /external/v8/include/
v8-inspector.h 36 class V8_EXPORT StringView {
38 StringView() : m_is8Bit(true), m_length(0), m_characters8(nullptr) {}
40 StringView(const uint8_t* characters, size_t length)
43 StringView(const uint16_t* characters, size_t length)
66 virtual const StringView& string() = 0;
68 static std::unique_ptr<StringBuffer> create(const StringView&);
74 const StringView& humanReadableName)
83 StringView humanReadableName;
84 StringView origin;
85 StringView auxData
    [all...]
  /external/libcxxabi/src/
cxa_demangle.cpp 46 class StringView {
52 StringView(const char (&Str)[N]) : First(Str), Last(Str + N - 1) {}
53 StringView(const char *First_, const char *Last_) : First(First_), Last(Last_) {}
54 StringView() : First(nullptr), Last(nullptr) {}
56 StringView substr(size_t From, size_t To) {
61 return StringView(First + From, First + To);
64 StringView dropFront(size_t N) const {
67 return StringView(First + N, Last);
70 bool startsWith(StringView Str) const {
84 bool operator==(const StringView &LHS, const StringView &RHS)
    [all...]

Completed in 444 milliseconds