Home | History | Annotate | Download | only in Chapter6

Lines Matching defs:Name

141   std::string Name;
144 VariableExprAST(const std::string &name) : Name(name) {}
204 /// which captures its name, and its argument names (thus implicitly the number
207 std::string Name;
212 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
214 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
221 return Name[Name.size() - 1];
510 return ErrorP("Expected function name in prototype");
611 Value *V = NamedValues[Name];
612 return V ? V : ErrorV("Unknown variable name");
659 // Look up the name in the global module table.
837 Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
839 // If F conflicted, there was already something named 'Name'. If it has a
841 if (F->getName() != Name) {
844 F = TheModule->getFunction(Name);