HomeSort by relevance Sort by last modified time
    Searched full:decl (Results 201 - 225 of 993) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/include/clang/Sema/
Scope.h 23 class Decl;
134 typedef llvm::SmallPtrSet<Decl *, 32> DeclSetTy;
216 void AddDecl(Decl *D) {
220 void RemoveDecl(Decl *D) {
224 /// isDeclScope - Return true if this is the scope that the specified decl is
226 bool isDeclScope(Decl *D) {
AnalysisBasedWarnings.h 22 class Decl;
93 const Decl *D, const BlockExpr *blkExpr);
  /external/clang/include/clang/StaticAnalyzer/Core/
Checker.h 32 template <typename DECL>
35 static void _checkDecl(void *checker, const Decl *D, AnalysisManager& mgr,
37 ((const CHECKER *)checker)->checkASTDecl(llvm::cast<DECL>(D), mgr, BR);
40 static bool _handlesDecl(const Decl *D) {
41 return llvm::isa<DECL>(D);
54 static void _checkBody(void *checker, const Decl *D, AnalysisManager& mgr,
  /external/clang/lib/CodeGen/
CGRecordLayout.h 14 #include "clang/AST/Decl.h"
151 /// \brief Given a bit-field decl, build an appropriate helper object for
157 /// \brief Given a bit-field decl, build an appropriate helper object for
159 /// size). The field decl should be known to be contained within a type of at
248 assert(!FD->isBitField() && "Invalid call for bit-field decl!");
267 assert(FD->isBitField() && "Invalid call for non bit-field decl!");
  /external/clang/lib/Frontend/
MultiplexConsumer.cpp 38 virtual void DeclRead(serialization::DeclID ID, const Decl *D);
70 serialization::DeclID ID, const Decl *D) {
94 virtual void AddedVisibleDecl(const DeclContext *DC, const Decl *D);
95 virtual void AddedCXXImplicitMember(const CXXRecordDecl *RD, const Decl *D);
122 const DeclContext *DC, const Decl *D) {
128 const CXXRecordDecl *RD, const Decl *D) {
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp 43 void checkASTCodeBody(const Decl *D, AnalysisManager &mgr,
52 const Decl *D, BugReporter &BR, AnalysisManager &mgr) const;
136 const Decl * EdreD = DR->getDecl();
147 const Decl * EmeMD = dyn_cast<MemberExpr>(E)->getMemberDecl();
201 const Decl *D, BugReporter &BR, AnalysisManager &mgr) const {
224 void MallocOverflowSecurityChecker::checkASTCodeBody(const Decl *D,
  /external/tinyxml/docs/
tutorial0.html 90 TiXmlDeclaration * decl = new TiXmlDeclaration( "1.0", "", "" );
94 doc.LinkEndChild( decl );
108 TiXmlDeclaration * decl = new TiXmlDeclaration( "1.0", "", "" );
109 doc.LinkEndChild( decl );
139 TiXmlDeclaration * decl = new TiXmlDeclaration( "1.0", "", "" );
140 doc.LinkEndChild( decl );
  /external/webkit/Source/WebCore/dom/
NamedNodeMap.cpp 314 if (attr->decl()) {
347 // The values for each decl must match.
350 if (attr->decl()) {
354 if (!otherAttr || !otherAttr->decl() || attr->value() != otherAttr->value())
356 if (!attr->decl()->propertiesEqual(otherAttr->decl()))