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

  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Macro.h 27 typedef std::vector<Token> Replacements;
43 Replacements replacements; member in struct:pp::Macro
  /external/clang/include/clang/Tooling/
Refactoring.h 100 /// Only replacements that are in a valid file can be applied.
129 /// \brief Less-than operator between two Replacements.
132 /// \brief Equal-to operator between two Replacements.
135 /// \brief A set of Replacements.
137 typedef std::set<Replacement> Replacements;
139 /// \brief Apply all replacements in \p Replaces to the Rewriter \p Rewrite.
144 /// \returns true if all replacements apply. false otherwise.
145 bool applyAllReplacements(const Replacements &Replaces, Rewriter &Rewrite);
147 /// \brief Apply all replacements in \p Replaces to the Rewriter \p Rewrite.
152 /// \returns true if all replacements apply. false otherwise
    [all...]
  /external/llvm/lib/Transforms/IPO/
ConstantMerge.cpp 119 // Replacements - This vector contains a list of replacements to perform.
120 SmallVector<std::pair<GlobalVariable*, GlobalVariable*>, 32> Replacements;
170 // the Replacements vector. We cannot do the replacement in this pass
204 Replacements.push_back(std::make_pair(GV, Slot));
207 if (Replacements.empty())
211 // Now that we have figured out which replacements must be made, do them all
214 for (unsigned i = 0, e = Replacements.size(); i != e; ++i) {
216 if (Replacements[i].first->getAlignment() ||
217 Replacements[i].second->getAlignment())
    [all...]
  /external/chromium_org/url/
gurl.h 21 typedef url::StdStringReplacements<std::string> Replacements;
163 // supplied versions. See the Replacements class in url_canon.h for more.
171 // Note that we use the more general url::Replacements type to give
173 GURL ReplaceComponents(const url::Replacements<char>& replacements) const;
175 const url::Replacements<base::char16>& replacements) const;
url_canon.h 638 class Replacements {
640 Replacements() {
758 const Replacements<char>& replacements,
765 const Replacements<base::char16>& replacements,
774 const Replacements<char>& replacements,
    [all...]
  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 126 std::map<MachineInstr*, unsigned> Replacements;
638 if (Replacements.find(MI) != Replacements.end())
672 Replacements[MI] = NewReg;
687 Replacements.clear();
  /external/chromium_org/components/search_engines/
template_url.h 348 typedef std::vector<struct Replacement> Replacements;
361 // replacements indicating the type and range of the element. The original
369 Replacements* replacements) const;
373 // known parameters that are encountered an entry is added to replacements.
380 Replacements* replacements,
408 // Replaces all replacements in |parsed_url_| with their actual values and
441 mutable Replacements replacements_;
  /external/clang/lib/CodeGen/
CodeGenModule.h 333 ReplacementsTy Replacements;
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]

Completed in 509 milliseconds