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

  /external/clang/include/clang/Tooling/
Refactoring.h 66 /// \brief A text replacement.
68 /// Represents a SourceManager independent replacement of a range of text in a
70 class Replacement {
72 /// \brief Creates an invalid (not applicable) replacement.
73 Replacement();
75 /// \brief Creates a replacement of the range [Offset, Offset+Length) in
81 Replacement(StringRef FilePath, unsigned Offset,
84 /// \brief Creates a Replacement of the range [Start, Start+Length) with
86 Replacement(const SourceManager &Sources, SourceLocation Start, unsigned Length,
89 /// \brief Creates a Replacement of the given range with ReplacementText
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 344 TemplateName Replacement;
347 TemplateName replacement)
349 Parameter(parameter), Replacement(replacement) {}
353 TemplateName getReplacement() const { return Replacement; }
359 TemplateName replacement);
  /external/clang/lib/Tooling/
Refactoring.cpp 30 Replacement::Replacement()
33 Replacement::Replacement(StringRef FilePath, unsigned Offset, unsigned Length,
38 Replacement::Replacement(const SourceManager &Sources, SourceLocation Start,
43 Replacement::Replacement(const SourceManager &Sources,
49 bool Replacement::isApplicable() const {
53 bool Replacement::apply(Rewriter &Rewrite) const
    [all...]
  /external/llvm/lib/IR/
BasicBlock.cpp 74 Constant *Replacement =
78 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement,
Constants.cpp     [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 443 // and such; to do the replacement, the argument must have type i8*.
464 Instruction *Replacement = Inst;
470 if (Replacement->getType() != UseTy)
471 Replacement = new BitCastInst(Replacement, UseTy, "",
483 PHI->setIncomingValue(i, Replacement);
486 if (Replacement->getType() != UseTy)
487 Replacement = new BitCastInst(Replacement, UseTy, "",
489 U.set(Replacement);
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 238 SmallString<64> Replacement;
240 Replacement += "InGroup<";
241 Replacement += (*I)->ExplicitDef->getName();
242 Replacement += ">";
244 SMFixIt FixIt(InGroupRange, Replacement.str());
    [all...]
ClangAttrEmitter.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 498 Constant *Replacement =
500 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement,
    [all...]
  /external/chromium_org/components/search_engines/
template_url.h 215 // Returns true if this URL supports search term replacement.
221 // If this TemplateURLRef does not support replacement (SupportsReplacement
264 // Returns true if this TemplateURLRef has a replacement term of
336 struct Replacement {
337 Replacement(ReplacementType type, size_t index)
341 // Indicates the location in where the replacement is replaced. If
348 typedef std::vector<struct Replacement> Replacements;
353 // TemplateURLRef internally caches values to make replacement quick. This
399 // Handles a replacement by using real term data. If the replacement
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 152 static char ID; // Pass ID, replacement for typeid
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 198 llvm::Constant *Replacement = I->second;
203 auto *NewF = dyn_cast<llvm::Function>(Replacement);
205 if (auto *Alias = dyn_cast<llvm::GlobalAlias>(Replacement)) {
208 auto *CE = cast<llvm::ConstantExpr>(Replacement);
216 OldF->replaceAllUsesWith(Replacement);
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 258 // If replacement succeeded or warning disabled return with no warning.
287 // If replacement succeeded or warning disabled return with no warning.
    [all...]
RewriteObjC.cpp 207 // If replacement succeeded or warning disabled return with no warning.
236 // If replacement succeeded or warning disabled return with no warning.
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 665 milliseconds