Lines Matching refs:string
19 #include <string.h>
25 #include <string>
40 bool IsCommonFieldName(const std::string& name) {
44 bool IsCIdentifier(const std::string& s) {
60 std::string GetNameFromTypeAndName(const std::string& type_and_name) {
67 if (right == std::string::npos)
72 if (left == std::string::npos)
76 std::string result = type_and_name.substr(left, right - left);
83 bool ParseFtraceEvent(const std::string& input, FtraceEvent* output) {
90 std::string name;
103 name = std::string(buffer);
120 std::string type_and_name(buffer);