HomeSort by relevance Sort by last modified time
    Searched defs:Replacements (Results 1 - 6 of 6) sorted by null

  /external/clang/include/clang/Tooling/Core/
Replacement.h 102 /// Only replacements that are in a valid file can be applied.
133 /// \brief Less-than operator between two Replacements.
136 /// \brief Equal-to operator between two Replacements.
139 /// \brief A set of Replacements.
141 typedef std::set<Replacement> Replacements;
143 /// \brief Apply all replacements in \p Replaces to the Rewriter \p Rewrite.
148 /// \returns true if all replacements apply. false otherwise.
149 bool applyAllReplacements(const Replacements &Replaces, Rewriter &Rewrite);
151 /// \brief Apply all replacements in \p Replaces to the Rewriter \p Rewrite.
156 /// \returns true if all replacements apply. false otherwise
    [all...]
  /external/llvm/lib/Transforms/IPO/
ConstantMerge.cpp 108 // Replacements - This vector contains a list of replacements to perform.
109 SmallVector<std::pair<GlobalVariable*, GlobalVariable*>, 32> Replacements;
158 // the Replacements vector. We cannot do the replacement in this pass
191 Replacements.push_back(std::make_pair(GV, Slot));
194 if (Replacements.empty())
198 // Now that we have figured out which replacements must be made, do them all
201 for (unsigned i = 0, e = Replacements.size(); i != e; ++i) {
203 if (Replacements[i].first->getAlignment() ||
204 Replacements[i].second->getAlignment())
    [all...]
  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 131 std::map<MachineInstr*, unsigned> Replacements;
643 if (Replacements.find(MI) != Replacements.end())
677 Replacements[MI] = NewReg;
697 Replacements.clear();
  /external/clang/lib/CodeGen/
CodeGenModule.h 321 ReplacementsTy Replacements;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]

Completed in 280 milliseconds