Home
last modified time | relevance | path

Searched refs:InsertionLoc (Results 1 – 8 of 8) sorted by relevance

/external/clang/include/clang/Basic/
DDiagnostic.h78 static FixItHint CreateInsertion(SourceLocation InsertionLoc,
83 CharSourceRange::getCharRange(InsertionLoc, InsertionLoc);
91 static FixItHint CreateInsertionFromRange(SourceLocation InsertionLoc,
96 CharSourceRange::getCharRange(InsertionLoc, InsertionLoc);
/external/llvm-project/clang/include/clang/Basic/
DDiagnostic.h96 static FixItHint CreateInsertion(SourceLocation InsertionLoc,
101 CharSourceRange::getCharRange(InsertionLoc, InsertionLoc);
109 static FixItHint CreateInsertionFromRange(SourceLocation InsertionLoc,
114 CharSourceRange::getCharRange(InsertionLoc, InsertionLoc);
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/
DUseTrailingReturnTypeCheck.cpp465 SourceLocation InsertionLoc = in check() local
467 if (InsertionLoc.isInvalid()) { in check()
512 << FixItHint::CreateInsertion(InsertionLoc, " -> " + ReturnType); in check()
/external/python/cpython2/Lib/plat-mac/
Daetypes.py60 class InsertionLoc: class
74 return InsertionLoc(of, Enum('bgng'))
77 return InsertionLoc(of, Enum('end '))
Daepack.py322 return aetypes.InsertionLoc(dict[keyAEObject], dict[keyAEPosition])
/external/llvm-project/clang-tools-extra/clangd/refactor/tweaks/
DExtractVariable.cpp174 const SourceLocation InsertionLoc = in insertDeclaration() local
181 return tooling::Replacement(SM, InsertionLoc, 0, ExtractedVarDecl); in insertDeclaration()
/external/python/cpython2/Doc/library/
Daetypes.rst56 .. class:: InsertionLoc(of, pos)
/external/llvm-project/clang-tools-extra/clang-change-namespace/
DChangeNamespace.cpp693 SourceLocation InsertionLoc = Start; in moveOldNamespace() local
699 InsertionLoc = LocAfterNs; in moveOldNamespace()
701 MoveNs.InsertionOffset = SM.getFileOffset(SM.getSpellingLoc(InsertionLoc)); in moveOldNamespace()