Searched defs:StringView (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringView.h38 class WTF_EXPORT StringView { class in namespace:WTF
40 StringView() function in class:WTF::StringView
46 explicit StringView(PassRefPtr<StringImpl> impl) function in class:WTF::StringView
53 StringView(PassRefPtr<StringImpl> impl, unsigned offset, unsigned length) function in class:WTF::StringView
106 using WTF::StringView;
/external/qemu/android/base/
H A DStringView.h22 // A StringView is a simple (address, size) pair that points to an
37 // size_t count2(const StringView& str) {
55 // In the second case, the compiler will create a temporary StringView,
59 // Generally speaking, always use a reference or pointer to StringView
63 class StringView { class in namespace:android::base
65 StringView() : mString(NULL), mSize(0U) {} function in class:android::base::StringView
67 StringView(const StringView& other) : function in class:android::base::StringView
71 StringView(const char* string) : function in class:android::base::StringView
74 explicit StringView(cons
76 StringView(const char* str, size_t len) : mString(str), mSize(len) {} function in class:android::base::StringView
[all...]

Completed in 649 milliseconds