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

/art/runtime/base/
H A Dstringpiece.h19 // Functions or methods may use const StringPiece& parameters to accept either
21 // a StringPiece. The implicit conversion means that it is often appropriate
23 // StringPiece as would be appropriate for most other Google classes.
25 // Systematic usage of StringPiece is encouraged as it will reduce unnecessary
39 class StringPiece { class in namespace:art
46 // in a "const char*" or a "string" wherever a "StringPiece" is
48 StringPiece() : ptr_(NULL), length_(0) { } function in class:art::StringPiece
49 StringPiece(const char* str) // NOLINT function in class:art::StringPiece
51 StringPiece(const std::string& str) // NOLINT function in class:art::StringPiece
53 StringPiece(cons function in class:art::StringPiece
[all...]

Completed in 54 milliseconds