HomeSort by relevance Sort by last modified time
    Searched refs:Inputs (Results 1 - 25 of 25) sorted by null

  /external/clang/test/PCH/
working-directory.h 1 #include <Inputs/working-directory-1.h>
  /external/clang/include/clang/Driver/
Action.h 62 ActionList Inputs;
70 : Kind(_Kind), Type(_Type), Inputs(&Input, &Input + 1), OwnsInputs(true) {}
72 : Kind(_Kind), Type(_Type), Inputs(_Inputs), OwnsInputs(true) {}
84 ActionList &getInputs() { return Inputs; }
85 const ActionList &getInputs() const { return Inputs; }
87 size_type size() const { return Inputs.size(); }
89 iterator begin() { return Inputs.begin(); }
90 iterator end() { return Inputs.end(); }
91 const_iterator begin() const { return Inputs.begin(); }
92 const_iterator end() const { return Inputs.end();
    [all...]
Tool.h 60 /// writing to \arg Output and with \arg Inputs.
68 const InputInfoList &Inputs,
ToolChain.h 93 /// given \arg Inputs.
95 const ActionList &Inputs) const = 0;
  /external/clang/lib/Driver/
Action.cpp 52 JobAction::JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type)
53 : Action(Kind, Inputs, Type) {
76 LinkJobAction::LinkJobAction(ActionList &Inputs, types::ID Type)
77 : JobAction(LinkJobClass, Inputs, Type) {
80 LipoJobAction::LipoJobAction(ActionList &Inputs, types::ID Type)
81 : JobAction(LipoJobClass, Inputs, Type) {
84 DsymutilJobAction::DsymutilJobAction(ActionList &Inputs, types::ID Type)
85 : JobAction(DsymutilJobClass, Inputs, Type) {
Tools.h 36 const InputInfoList &Inputs) const;
53 const InputInfoList &Inputs,
70 const InputInfoList &Inputs,
84 const InputInfoList &Inputs,
175 const InputInfoList &Inputs);
182 const InputInfoList &Inputs,
185 const InputInfoList &Inputs,
189 const InputInfoList &Inputs) const;
207 const InputInfoList &Inputs,
218 const InputInfoList &Inputs,
    [all...]
ToolChains.h 37 const ActionList &Inputs) const;
195 const ActionList &Inputs) const;
313 const ActionList &Inputs) const;
321 const ActionList &Inputs) const;
329 const ActionList &Inputs) const;
340 const ActionList &Inputs) const;
348 const ActionList &Inputs) const;
356 const ActionList &Inputs) const;
366 const ActionList &Inputs) const;
381 const ActionList &Inputs) const
    [all...]
Driver.cpp 658 ActionList Inputs;
660 Inputs.push_back(new BindArchAction(Act, Archs[i]));
662 Inputs.back()->setOwnsInputs(false);
667 if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing)
668 Actions.append(Inputs.begin(), Inputs.end());
670 Actions.push_back(new LipoJobAction(Inputs, Act->getType()));
681 ActionList Inputs;
682 Inputs.push_back(Actions.back());
685 Actions.push_back(new DsymutilJobAction(Inputs, types::TY_dSYM))
    [all...]
Tools.cpp 111 const InputInfoList &Inputs, const ArgList &Args,
115 // Add extra linker input arguments which are not treated as inputs
120 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
124 // Don't try to pass LLVM inputs unless we have native support.
189 const InputInfoList &Inputs) const {
211 DepFile = darwin::CC1::getDependencyFileName(Args, Inputs);
229 llvm::SmallString<128> P(Inputs[0].getBaseInput());
346 types::ID InputType = Inputs[0].getType();
    [all...]
ToolChains.cpp 204 const ActionList &Inputs) const {
209 if (Inputs.size() == 1 &&
210 types::isCXX(Inputs[0]->getType()) &&
    [all...]
  /frameworks/compile/libbcc/runtime/
Makefile 145 $(call Set,Tmp.Inputs,$(Tmp.ArchsToBuild:%=$(Tmp.ObjPath)/%/libcompiler_rt.a))
146 $(Tmp.ObjPath)/libcompiler_rt.a: $(Tmp.Inputs) $(Tmp.ObjPath)/.dir
150 $(Verb) $(CP) $(Tmp.Inputs) $$@, \
151 $(Verb) $(LIPO) -create -output $$@ $(Tmp.Inputs))
179 # Compute the object inputs for this library.
180 $(call Set,Tmp.Inputs,\
185 $(Tmp.ObjPath)/libcompiler_rt.a: $(Tmp.Inputs) $(Tmp.ObjPath)/.dir
188 $(Verb) $(Tmp.AR) $(Tmp.ARFLAGS) $$@ $(Tmp.Inputs)
  /build/core/combo/
javac.mk 3 # Inputs:
  /external/clang/unittests/Frontend/
FrontendActionTest.cpp 58 invocation->getFrontendOpts().Inputs.push_back(
  /frameworks/compile/slang/
llvm-rs-cc.cpp 159 llvm::SmallVectorImpl<const char*> &Inputs,
185 Inputs.push_back(A->getValue(*Args));
350 llvm::SmallVector<const char*, 16> Inputs;
372 ParseArguments(ArgVector, Inputs, Opts, Diags);
391 if (Inputs.empty()) {
404 for (int i = 0, e = Inputs.size(); i != e; i++) {
405 const char *InputFile = Inputs[i];
  /external/clang/include/clang/Frontend/
FrontendOptions.h 92 std::vector<std::pair<InputKind, std::string> > Inputs;
  /external/clang/lib/Frontend/
ASTUnit.cpp 877 OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
    [all...]
CompilerInvocation.cpp 450 for (unsigned i = 0, e = Opts.Inputs.size(); i != e; ++i)
451 if (FrontendOptions::getInputKindForExtension(Opts.Inputs[i].second) !=
452 Opts.Inputs[i].first)
456 Res.push_back(getInputKindName(Opts.Inputs[0].first));
458 for (unsigned i = 0, e = Opts.Inputs.size(); i != e; ++i) {
459 assert((!NeedLang || Opts.Inputs[i].first == Opts.Inputs[0].first) &&
461 Res.push_back(Opts.Inputs[i].second);
    [all...]
CompilerInstance.cpp 594 for (unsigned i = 0, e = getFrontendOpts().Inputs.size(); i != e; ++i) {
595 const std::string &InFile = getFrontendOpts().Inputs[i].second;
601 if (Act.BeginSourceFile(*this, InFile, getFrontendOpts().Inputs[i].first)) {
  /external/clang/lib/Serialization/
ChainedIncludesSource.cpp 63 InputKind IK = CI.getFrontendOpts().Inputs[0].first;
80 CInvok->getFrontendOpts().Inputs.clear();
81 CInvok->getFrontendOpts().Inputs.push_back(std::make_pair(IK, includes[i]));
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 122 if (CI.getFrontendOpts().Inputs.empty()) {
131 CI.getFrontendOpts().Inputs[0].second,
132 CI.getFrontendOpts().Inputs[0].first,
163 if (origCI.getFrontendOpts().Inputs.empty()) {
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 229 CInvok->getFrontendOpts().Inputs.clear();
230 CInvok->getFrontendOpts().Inputs.push_back(std::make_pair(Kind, Filename));
321 CInvok.getFrontendOpts().Inputs.clear();
322 CInvok.getFrontendOpts().Inputs.push_back(std::make_pair(Kind, Filename));
  /external/clang/tools/scan-build/
scan-build 547 var Inputs = document.getElementsByTagName("input");
548 for ( var i = 0 ; i < Inputs.length; ++i ) {
549 if (Inputs[i].type == "checkbox") {
550 if(Inputs[i] != SummaryCheckButton) {
551 Inputs[i].checked = SummaryCheckButton.checked;
552 Inputs[i].onclick();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 839 SDValue Inputs[4]
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/clang/lib/Sema/
TreeTransform.h 330 /// are present, the number of outputs may not equal the number of inputs.
332 /// \param Inputs The set of expressions to be transformed.
334 /// \param NumInputs The number of expressions in \c Inputs.
347 bool TransformExprs(Expr **Inputs, unsigned NumInputs, bool IsCall,
446 /// \param Inputs The set of template arguments to be transformed.
448 /// \param NumInputs The number of template arguments in \p Inputs.
454 bool TransformTemplateArguments(const TemplateArgumentLoc *Inputs,
457 return TransformTemplateArguments(Inputs, Inputs + NumInputs, Outputs);
    [all...]

Completed in 376 milliseconds