Searched refs:TokenBody (Results 1 – 1 of 1) sorted by relevance
68 : TokenType(Type::Text), RawBody(std::move(Str)), TokenBody(RawBody), in Token()71 Token(std::string RawBody, std::string TokenBody, char Identifier) in Token() argument72 : 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::Token238 StringRef TokenBody = StringRef(PrevToken.RawBody).rtrim(" \r\t\v"); in hasTextBehind() local239 return !TokenBody.ends_with("\n") && !(TokenBody.empty() && Idx == 1); in hasTextBehind()254 StringRef TokenBody = StringRef(NextToken.RawBody).ltrim(" "); in hasTextAhead() local255 return !TokenBody.starts_with("\r\n") && !TokenBody.starts_with("\n"); in hasTextAhead()273 StringRef NextTokenBody = NextToken.TokenBody; in stripTokenAhead()[all …]