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

<<111213

  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 16 #include "clang/AST/Decl.h"
136 if (const Decl *DeclWithIssue = D.getDeclWithIssue()) {
MemRegion.cpp 321 void DeclRegion::ProfileRegion(llvm::FoldingSetNodeID& ID, const Decl *D,
815 const Decl *STCD = STC->getDecl();
    [all...]
BugReporterVisitors.cpp     [all...]
ExprEngine.cpp 96 const Decl *D = InitLoc->getDecl();
456 const CXXConstructorDecl *decl = local
460 SVal thisVal = State->getSVal(svalBuilder.getCXXThis(decl, stackFrame));
    [all...]
  /external/clang/lib/AST/
StmtProfile.cpp 43 void VisitDecl(const Decl *D);
1238 void StmtProfiler::VisitDecl(const Decl *D) {
    [all...]
ExprConstant.cpp 235 void addDeclUnchecked(const Decl *D, bool Virtual = false) {
    [all...]
MicrosoftMangle.cpp 19 #include "clang/AST/Decl.h"
39 static const DeclContext *getEffectiveDeclContext(const Decl *D) {
68 return getEffectiveDeclContext(cast<Decl>(DC));
374 // actually matters which decl we have here. MSVC appears to choose the
702 assert(RD && "expected variable decl to have a record type");
717 "Typedef should not be in another decl context!");
771 // If the named decl is the C++ destructor we're mangling,
    [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp 16 #include "clang/AST/Decl.h"
    [all...]
SemaOverload.cpp 53 // DiagnoseUseOfDecl to accept both the FoundDecl and the decl
879 // it does return false, MatchedDecl will point to the decl that New
880 // cannot be overloaded with. This decl may be a UsingShadowDecl on
956 // Optimistically assume that an unresolved using decl wil
    [all...]
SemaTemplateDeduction.cpp 163 static bool isSameDeclaration(Decl *X, Decl *Y) {
576 static TemplateParameter makeTemplateParameter(Decl *D) {
    [all...]
SemaPseudoObject.cpp 647 S.getCurLexicalContext()->getDeclKind() != Decl::ObjCCategoryImpl &&
648 S.getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation) {
    [all...]
Sema.cpp     [all...]
SemaChecking.cpp 2885 NamedDecl *decl = (*I)->getUnderlyingDecl(); local
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 475 void CodeGenFunction::EmitStartEHSpec(const Decl *D) {
549 void CodeGenFunction::EmitEndEHSpec(const Decl *D) {
614 // No exception decl indicates '...', a catch-all.
    [all...]
CodeGenFunction.cpp 23 #include "clang/AST/Decl.h"
506 static bool endsWithReturn(const Decl* F) {
528 const Decl *D = GD.getDecl();
    [all...]
CGObjCMac.cpp 21 #include "clang/AST/Decl.h"
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 767 const Decl *D);
    [all...]
  /external/clang/include/clang/AST/
Expr.h 19 #include "clang/AST/Decl.h"
41 class Decl;
781 /// return the most derived class decl the expression is known to refer to.
784 /// most derived decl that can be inferred from the expression.
    [all...]
ExprCXX.h 18 #include "clang/AST/Decl.h"
622 MSPropertyRefExpr(Expr *baseExpr, MSPropertyDecl *decl, bool isArrow,
630 BaseExpr(baseExpr), TheDecl(decl),
    [all...]
  /external/clang/include/clang/Sema/
AttributeList.h 458 bool diagnoseAppertainsTo(class Sema &S, const Decl *D) const;
  /external/clang/lib/Analysis/
UninitializedValues.cpp 16 #include "clang/AST/Decl.h"
648 if (Decl *Callee = ce->getCalleeDecl()) {
ThreadSafety.cpp 172 const NamedDecl* AttrDecl; // The decl to which the attribute is attached.
462 /// \param DeclExp An expression involving the Decl on which the attribute
540 explicit SExpr(clang::Decl::EmptyShell e) { NodeVec.clear(); }
543 /// \param DeclExp An expression involving the Decl on which the attribute
552 /// Return true if this is a valid decl sequence.
743 UnderlyingMutex(Decl::EmptyShell())
    [all...]
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 140 // Skip over the rest of the decl and back to somewhere that looks
188 void Parser::ParseCXXNonStaticMemberInitializer(Decl *VarD) {
    [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 52 const clang::NamedDecl* decl,
54 if (!llvm::isa<clang::CXXConstructorDecl>(decl) &&
55 !llvm::isa<clang::CXXDestructorDecl>(decl)) {
58 ctx->mangleName(decl, out);
67 static bool InV8Namespace(const clang::NamedDecl* decl) {
68 return decl->getQualifiedNameAsString().compare(0, 4, "v8::") == 0;
224 virtual bool VisitFunctionDecl(clang::FunctionDecl* decl) {
225 callees_printer_->AnalyzeFunction(decl);
255 const clang::FunctionDecl* decl) {
258 if (!InV8Namespace(decl)) return false
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp     [all...]

Completed in 992 milliseconds

<<111213