Lines Matching defs:VarName
2861 if (Lex.getCode() != tgtok::VarName) { // eat the ':'
2866 Lex.Lex(); // eat the VarName.
3099 if (Lex.getCode() == tgtok::VarName) {
3101 StringInit *VarName = StringInit::get(Records, Lex.getCurStrVal());
3102 Result.emplace_back(UnsetInit::get(Records), VarName);
3113 StringInit *VarName = nullptr;
3115 if (Lex.Lex() != tgtok::VarName) { // eat the ':'
3120 VarName = StringInit::get(Records, Lex.getCurStrVal());
3121 Lex.Lex(); // eat the VarName.
3124 Result.push_back(std::make_pair(Val, VarName));