OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsStructurallyValidUTF8
(Results
1 - 2
of
2
) sorted by null
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
common.h
146
LIBPROTOBUF_EXPORT bool
IsStructurallyValidUTF8
(const char* buf, int len);
148
inline bool
IsStructurallyValidUTF8
(const std::string& str) {
149
return
IsStructurallyValidUTF8
(str.data(), static_cast<int>(str.length()));
/external/protobuf/src/google/protobuf/stubs/
structurally_valid.cc
525
bool
IsStructurallyValidUTF8
(const char* buf, int len) {
Completed in 38 milliseconds