Searched defs:getSourceRange (Results 1 - 23 of 23) sorted by relevance

/external/clang/include/clang/Tooling/
H A DFixIt.h34 inline SourceRange getSourceRange(const SourceRange &Range) { return Range; } function in namespace:clang::tooling::fixit::internal
37 inline SourceRange getSourceRange(const SourceLocation &Loc) { function in namespace:clang::tooling::fixit::internal
43 template <typename T> SourceRange getSourceRange(const T &Node) { function in namespace:clang::tooling::fixit::internal
44 return Node.getSourceRange();
51 return internal::getText(internal::getSourceRange(Node), Context);
57 return FixItHint::CreateRemoval(internal::getSourceRange(Node));
64 return FixItHint::CreateReplacement(internal::getSourceRange(Destination),
/external/clang/lib/AST/
H A DASTTypeTraits.cpp139 SourceRange DynTypedNode::getSourceRange() const { function in class:clang::ast_type_traits::DynTypedNode
141 return CCI->getSourceRange();
143 return NNSL->getSourceRange();
145 return TL->getSourceRange();
147 return D->getSourceRange();
149 return S->getSourceRange();
H A DTemplateBase.cpp435 SourceRange TemplateArgumentLoc::getSourceRange() const { function in class:TemplateArgumentLoc
438 return getSourceExpression()->getSourceRange();
441 return getSourceDeclExpression()->getSourceRange();
444 return getSourceNullPtrExpression()->getSourceRange();
448 return TSI->getTypeLoc().getSourceRange();
465 return getSourceIntegralExpression()->getSourceRange();
H A DNestedNameSpecifier.cpp396 SourceRange NestedNameSpecifierLoc::getSourceRange() const { function in class:NestedNameSpecifierLoc
H A DDeclTemplate.cpp496 SourceRange TemplateTypeParmDecl::getSourceRange() const { function in class:TemplateTypeParmDecl
501 return TypeDecl::getSourceRange();
579 SourceRange NonTypeTemplateParmDecl::getSourceRange() const { function in class:NonTypeTemplateParmDecl
582 getDefaultArgument()->getSourceRange().getEnd());
583 return DeclaratorDecl::getSourceRange();
588 ? getDefaultArgument()->getSourceRange().getBegin()
771 ClassTemplateSpecializationDecl::getSourceRange() const { function in class:ClassTemplateSpecializationDecl
793 return inst_from->getSourceRange();
801 return getSpecializedTemplate()->getSourceRange();
803 return ctd->getSourceRange();
[all...]
H A DDeclObjC.cpp1086 return TSI->getTypeLoc().getSourceRange();
1335 SourceRange ObjCTypeParamDecl::getSourceRange() const { function in class:ObjCTypeParamDecl
2207 SourceRange ObjCPropertyImplDecl::getSourceRange() const { function in class:ObjCPropertyImplDecl
H A DStmt.cpp221 // a more specific implementation of getSourceRange.
226 /// implementation of getSourceRange.
230 return static_cast<const S*>(stmt)->getSourceRange();
234 /// implementation of getSourceRange. Overload resolution should pick it over
245 SourceRange Stmt::getSourceRange() const { function in class:Stmt
251 return getSourceRangeImpl<type>(this, &type::getSourceRange);
792 SourceRange VarRange = V->getSourceRange();
823 SourceRange VarRange = V->getSourceRange();
851 SourceRange VarRange = V->getSourceRange();
885 SourceRange VarRange = V->getSourceRange();
[all...]
H A DDecl.cpp1739 SourceRange DeclaratorDecl::getSourceRange() const { function in class:DeclaratorDecl
1745 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
1840 SourceRange VarDecl::getSourceRange() const { function in class:VarDecl
1844 // DeclaratorDecl::getSourceRange() to handle postfix elements.
1848 return DeclaratorDecl::getSourceRange();
2351 SourceRange ParmVarDecl::getSourceRange() const { function in class:ParmVarDecl
2363 return DeclaratorDecl::getSourceRange();
2391 return getUninstantiatedDefaultArg()->getSourceRange();
2395 return E->getSourceRange();
2922 SourceRange RTRange = FTL.getReturnLoc().getSourceRange();
3346 SourceRange FunctionDecl::getSourceRange() const { function in class:FunctionDecl
3493 SourceRange FieldDecl::getSourceRange() const { function in class:FieldDecl
3527 SourceRange TagDecl::getSourceRange() const { function in class:TagDecl
3909 SourceRange BlockDecl::getSourceRange() const { function in class:BlockDecl
4119 SourceRange EnumConstantDecl::getSourceRange() const { function in class:EnumConstantDecl
4168 SourceRange TypedefDecl::getSourceRange() const { function in class:TypedefDecl
4177 SourceRange TypeAliasDecl::getSourceRange() const { function in class:TypeAliasDecl
4277 SourceRange ImportDecl::getSourceRange() const { function in class:ImportDecl
[all...]
/external/clang/lib/Parse/
H A DParseTemplate.cpp185 << TemplateInfo.getSourceRange();
979 SourceLocation TemplateNameLoc = TemplateName.getSourceRange().getBegin();
1315 SourceRange Parser::ParsedTemplateInfo::getSourceRange() const { function in class:Parser::ParsedTemplateInfo
/external/llvm/include/llvm/Support/
H A DYAMLParser.h131 SMRange getSourceRange() const { return SourceRange; } function in class:llvm::yaml::Node
/external/clang/include/clang/Frontend/
H A DASTUnit.h216 SourceRange getSourceRange(const SourceManager &SM) const { function in class:clang::ASTUnit::PreambleData
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h264 virtual SourceRange getSourceRange() const { function in class:clang::ento::CallEvent
265 return getOriginExpr()->getSourceRange();
753 SourceRange getSourceRange() const override { return Location; }
927 SourceRange getSourceRange() const override;
/external/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp207 SourceLocation Loc = getSourceRange().getBegin();
234 return ArgE->getSourceRange();
741 SourceRange ObjCMethodCall::getSourceRange() const { function in class:ObjCMethodCall
744 return getOriginExpr()->getSourceRange();
747 return getContainingPseudoObjectExpr()->getSourceRange();
/external/clang/tools/libclang/
H A DCXCursor.cpp852 SourceRange cxcursor::MacroExpansionCursor::getSourceRange() const { function in class:cxcursor::MacroExpansionCursor
855 return getAsMacroExpansion()->getSourceRange();
/external/clang/include/clang/AST/
H A DExprCXX.h95 SourceRange getSourceRange() const { return Range; } function in class:clang::CXXOperatorCallExpr
556 SourceRange getSourceRange() const LLVM_READONLY {
557 return SubExpr->getSourceRange();
642 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
685 SourceRange getSourceRange() const LLVM_READONLY {
845 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
1535 /// stored here to improve the performance of getSourceRange(), and
1990 SourceRange getSourceRange() const LLVM_READONLY {
3552 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
H A DDeclObjC.h293 SourceRange getSourceRange() const override LLVM_READONLY {
569 SourceRange getSourceRange() const override LLVM_READONLY;
677 SourceRange getSourceRange() const { function in class:clang::final
881 SourceRange getSourceRange() const override LLVM_READONLY {
1047 SourceRange getSourceRange() const override LLVM_READONLY {
1228 SourceRange getSourceRange() const override LLVM_READONLY {
1230 return ObjCContainerDecl::getSourceRange();
2120 SourceRange getSourceRange() const override LLVM_READONLY {
2122 return ObjCContainerDecl::getSourceRange();
2707 SourceRange getSourceRange() cons
[all...]
/external/clang/include/clang/Sema/
H A DDeclSpec.h502 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
1087 SourceRange getSourceRange() const LLVM_READONLY {
1111 SourceRange getSourceRange() const { function in struct:clang::DeclaratorChunk
1715 : DS(ds), Range(ds.getSourceRange()), Context(C),
1760 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
1780 SourceRange SR = DS.getSourceRange();
1791 Range = DS.getSourceRange();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1738 milliseconds