Lines Matching refs:repl
318 Token &repl = replacements->front(); in expandMacro() local
321 repl.text = std::to_string(identifier.location.line); in expandMacro()
325 repl.text = std::to_string(identifier.location.file); in expandMacro()
342 Token &repl = replacements->at(i); in expandMacro() local
347 repl.setAtStartOfLine(identifier.atStartOfLine()); in expandMacro()
348 repl.setHasLeadingSpace(identifier.hasLeadingSpace()); in expandMacro()
350 repl.location = replacementLocation; in expandMacro()
481 const Token &repl = macro.replacements[i]; in replaceMacroParams() local
482 if (repl.type != Token::IDENTIFIER) in replaceMacroParams()
484 replacements->push_back(repl); in replaceMacroParams()
492 std::find(macro.parameters.begin(), macro.parameters.end(), repl.text); in replaceMacroParams()
495 replacements->push_back(repl); in replaceMacroParams()
509 replacements->at(iRepl).setHasLeadingSpace(repl.hasLeadingSpace()); in replaceMacroParams()