Home | History | Annotate | Download | only in MIRParser

Lines Matching defs:String

29 /// string.
73 MIToken &MIToken::setOwnedStringValue(std::string StrVal) {
109 /// Unescapes the given string value.
111 /// Expects the string value to be quoted.
112 static std::string unescapeQuotedString(StringRef Value) {
116 std::string Str;
139 /// Lex a string constant using the following regular expression: \"[^\"]*\"
160 StringRef String = Range.upto(R);
161 Token.reset(Type, String)
163 unescapeQuotedString(String.drop_front(PrefixLength)));