Lines Matching defs:Input
175 // Add extra linker input arguments which are not treated as inputs
196 // Otherwise, this is a linker input argument.
282 // Otherwise derive from the base input.
1774 /// \brief Check whether the given input tree contains any compilation actions.
2220 /// Add -x lang to \p CmdArgs for \p Input.
2221 static void addDashXForInput(const ArgList &Args, const InputInfo &Input,
2225 if (Args.hasArg(options::OPT_verify_pch) && Input.getType() == types::TY_PCH)
2232 CmdArgs.push_back(types::getTypeName(Input.getType()));
3171 // FIXME: Clang doesn't correctly handle -std= when the input language
4521 const InputInfo &Input = Inputs[0];
4536 getToolChain().ComputeEffectiveClangTriple(Args, Input.getType());
4564 // Determine the original source input.
4635 assert(Input.isFilename() && "Invalid input.");
4636 CmdArgs.push_back(Input.getFilename());
4723 // like '-x foobar a.c' which will treat a.c like a linker input.
4756 // Don't render as input, we need gcc to do the translations.
4842 // like '-x foobar a.c' which will treat a.c like a linker input.
4862 // Don't render as input, we need gcc to do the translations. FIXME: Pranav: What is this ?
5296 const InputInfo &Input = Inputs[0];
5298 // Determine the original source input.
5348 assert(Input.isFilename() && "Invalid input.");
5349 CmdArgs.push_back(Input.getFilename());
5377 for (const auto &Input : Inputs)
5378 if (Input.getType() != types::TY_Object)
5699 assert(II.isFilename() && "Unexpected lipo input.");
5718 const InputInfo &Input = Inputs[0];
5719 assert(Input.isFilename() && "Unexpected dsymutil input.");
5720 CmdArgs.push_back(Input.getFilename());
5739 const InputInfo &Input = Inputs[0];
5740 assert(Input.isFilename() && "Unexpected verify input");
5743 CmdArgs.push_back(Input.getFilename());
7643 for (const auto &Input : Inputs)
7644 if (Input.isFilename())
7645 CmdArgs.push_back(Input.getFilename());
7647 Input.getInputArg().renderAsInput(Args, CmdArgs);
7756 // Input filename.