Home
last modified time | relevance | path

Searched refs:TokenBody (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DMustache.cpp68 : TokenType(Type::Text), RawBody(std::move(Str)), TokenBody(RawBody), in Token()
71 Token(std::string RawBody, std::string TokenBody, char Identifier) in Token() argument
72 : RawBody(std::move(RawBody)), TokenBody(std::move(TokenBody)), in Token()
77 StringRef AccessorStr(this->TokenBody); in Token()
114 std::string TokenBody; member in llvm::mustache::Token
238 StringRef TokenBody = StringRef(PrevToken.RawBody).rtrim(" \r\t\v"); in hasTextBehind() local
239 return !TokenBody.ends_with("\n") && !(TokenBody.empty() && Idx == 1); in hasTextBehind()
254 StringRef TokenBody = StringRef(NextToken.RawBody).ltrim(" "); in hasTextAhead() local
255 return !TokenBody.starts_with("\r\n") && !TokenBody.starts_with("\n"); in hasTextAhead()
273 StringRef NextTokenBody = NextToken.TokenBody; in stripTokenAhead()
[all …]