HomeSort by relevance Sort by last modified time
    Searched refs:Decl (Results 251 - 275 of 316) sorted by null

<<111213

  /external/chromium_org/tools/clang/plugins/
FindBadConstructsConsumer.cpp 282 bool FindBadConstructsConsumer::InTestingNamespace(const Decl* record) {
395 if (TemplateDecl* decl = name.getAsTemplateDecl()) {
396 std::string base_name = decl->getNameAsString();
485 if (TemplateDecl* decl = name.getAsTemplateDecl()) {
486 std::string base_name = decl->getNameAsString();
490 self->GetNamespace(decl) == "base") {
  /external/chromium_org/tools/clang/rewrite_scoped_refptr/
RewriteScopedRefptr.cpp 35 const internal::VariadicDynCastAllOfMatcher<Decl, CXXConversionDecl>
343 unless(hasAncestor(decl(anyOf(is_logging_helper,
  /external/clang/include/clang/Sema/
ScopeInfo.h 29 class Decl;
157 /// Access Expression | "Base" Decl | "Property" Decl
172 /// The base object decl, as described in the class documentation.
181 /// The "property" decl, as described in the class documentation.
  /external/clang/lib/AST/
ExprCXX.cpp 1303 NamedDecl *decl = *begin; local
    [all...]
APValue.cpp 444 const Decl *BaseOrMember =
RecordLayoutBuilder.cpp 14 #include "clang/AST/Decl.h"
149 // If the class decl is empty, get its size.
152 // Otherwise, we get the largest empty subobject for the decl.
173 // If the class decl is empty, get its size.
176 // Otherwise, we get the largest empty subobject for the decl.
718 /// InitializeLayout - Initialize record layout for the given record decl.
719 void InitializeLayout(const Decl *D);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 426 void checkASTCodeBody(const Decl *D, AnalysisManager& mgr,
MallocChecker.cpp 517 if (FD->getKind() == Decl::Function) {
538 if (FD->getKind() == Decl::Function) {
676 if (FD->getKind() == Decl::Function) {
    [all...]
CallAndMessageChecker.cpp 384 const Decl *D = Call.getDecl();
CheckSecuritySyntaxOnly.cpp 752 void checkASTCodeBody(const Decl *D, AnalysisManager& mgr,
IvarInvalidationChecker.cpp 604 if (const Decl *D = IvarRef->getDecl())
StreamChecker.cpp 110 if (!FD || FD->getKind() != Decl::Function)
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 399 SVal StoreManager::getLValueFieldOrIvar(const Decl *D, SVal Base) {
434 SVal StoreManager::getLValueIvar(const ObjCIvarDecl *decl, SVal base) {
435 return getLValueFieldOrIvar(decl, base);
CheckerManager.cpp 56 void CheckerManager::runCheckersOnASTDecl(const Decl *D, AnalysisManager& mgr,
66 // Find the checkers that should run for this Decl and cache them.
81 void CheckerManager::runCheckersOnASTBody(const Decl *D, AnalysisManager& mgr,
  /external/clang/tools/libclang/
CXComment.cpp 19 #include "clang/AST/Decl.h"
38 const Decl *D = getCursorDecl(C);
Indexing.cpp 355 bool shouldSkipFunctionBody(Decl *D) override {
722 static bool topLevelDeclVisitor(void *context, const Decl *D) {
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h 18 #include "clang/AST/Decl.h"
118 llvm::DenseMap<Decl *, Decl *> TransformedLocalDecls;
382 Decl *TransformDecl(SourceLocation Loc, Decl *D) {
383 llvm::DenseMap<Decl *, Decl *>::iterator Known
396 void transformAttrs(Decl *Old, Decl *New) { }
405 void transformedLocalDecl(Decl *Old, Decl *New)
    [all...]
SemaObjCProperty.cpp 138 Decl *Sema::ActOnProperty(Scope *S, SourceLocation AtLoc,
478 Decl *ProtocolPtrTy =
511 // Make sure setter decl is synthesized, and added to primary class's list.
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 35 class Decl;
816 static CFG* buildCFG(const Decl *D, Stmt *AST, ASTContext *C,
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 578 void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
    [all...]
CGExprCXX.cpp     [all...]
CGDeclCXX.cpp 307 llvm::DenseMap<const Decl *, unsigned>::iterator I =
  /external/clang/lib/Analysis/
CFG.cpp 35 static SourceLocation GetEndLoc(Decl *D) {
346 CFG* buildCFG(const Decl *D, Stmt *Statement);
904 CFG* CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) {
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 37 class Decl;
456 /// to a single Decl.
461 const Decl *getSingleDecl() const { return DG.getSingleDecl(); }
462 Decl *getSingleDecl() { return DG.getSingleDecl(); }
    [all...]
  /external/lldb/source/Symbol/
ClangASTContext.cpp 1155 CXXRecordDecl *decl = CXXRecordDecl::Create (*ast, local
1746 ObjCInterfaceDecl *decl = ObjCInterfaceDecl::Create (*ast, local
    [all...]

Completed in 407 milliseconds

<<111213