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

  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
Macro.h 27 typedef std::vector<Token> Replacements;
38 Replacements replacements; member in struct:pp::Macro
  /external/clang/include/clang/Tooling/
Refactoring.h 102 /// Only replacements that are in a valid file can be applied.
136 /// \brief A set of Replacements.
138 typedef std::set<Replacement, Replacement::Less> Replacements;
140 /// \brief Apply all replacements in \p Replaces to the Rewriter \p Rewrite.
145 /// \returns true if all replacements apply. false otherwise.
146 bool applyAllReplacements(const Replacements &Replaces, Rewriter &Rewrite);
148 /// \brief Applies all replacements in \p Replaces to \p Code.
151 /// replacements cannot be applied, this returns an empty \c string.
152 std::string applyAllReplacements(StringRef Code, const Replacements &Replaces);
156 unsigned shiftedCodePosition(const Replacements& Replaces, unsigned Position)
    [all...]
  /external/llvm/lib/Transforms/IPO/
ConstantMerge.cpp 114 // Replacements - This vector contains a list of replacements to perform.
115 SmallVector<std::pair<GlobalVariable*, GlobalVariable*>, 32> Replacements;
165 // the Replacements vector. We cannot do the replacement in this pass
199 Replacements.push_back(std::make_pair(GV, Slot));
202 if (Replacements.empty())
206 // Now that we have figured out which replacements must be made, do them all
209 for (unsigned i = 0, e = Replacements.size(); i != e; ++i) {
211 if (Replacements[i].first->getAlignment() ||
212 Replacements[i].second->getAlignment())
    [all...]
  /external/chromium/googleurl/src/
gurl.h 44 typedef url_canon::StdStringReplacements<std::string> Replacements;
174 // supplied versions. See the Replacements class in url_canon.h for more.
182 // Note that we use the more general url_canon::Replacements type to give
185 const url_canon::Replacements<char>& replacements) const;
187 const url_canon::Replacements<char16>& replacements) const;
url_canon.h 635 class Replacements {
637 Replacements() {
755 const Replacements<char>& replacements,
    [all...]
  /external/chromium_org/url/
gurl.h 19 typedef url_canon::StdStringReplacements<std::string> Replacements;
157 // supplied versions. See the Replacements class in url_canon.h for more.
165 // Note that we use the more general url_canon::Replacements type to give
168 const url_canon::Replacements<char>& replacements) const;
170 const url_canon::Replacements<base::char16>& replacements) const;
url_canon.h 640 class Replacements {
642 Replacements() {
    [all...]
  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 132 std::map<MachineInstr*, unsigned> Replacements;
639 if (Replacements.find(MI) != Replacements.end())
666 Replacements[MI] = NewReg;
681 Replacements.clear();
  /external/chromium/chrome/browser/search_engines/
template_url.h 173 typedef std::vector<struct Replacement> Replacements;
186 // replacements indicating the type and range of the element. The original
194 Replacements* replacements) const;
198 // known parameters that are encountered an entry is added to replacements.
202 Replacements* replacements,
247 mutable Replacements replacements_;
  /external/chromium_org/chrome/browser/search_engines/
template_url.h 269 typedef std::vector<struct Replacement> Replacements;
282 // replacements indicating the type and range of the element. The original
290 Replacements* replacements) const;
294 // known parameters that are encountered an entry is added to replacements.
301 Replacements* replacements,
333 // Replaces all replacements in |parsed_url_| with their actual values and
366 mutable Replacements replacements_;
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]

Completed in 2050 milliseconds