HomeSort by: relevance | last modified time | path
    Searched defs:FunDecl (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
Consumed.cpp 185 static bool isTestingFunction(const FunctionDecl *FunDecl) {
186 return FunDecl->hasAttr<TestTypestateAttr>();
265 static ConsumedState testsFor(const FunctionDecl *FunDecl) {
266 assert(isTestingFunction(FunDecl));
267 switch (FunDecl->getAttr<TestTypestateAttr>()->getTestState()) {
495 const FunctionDecl *FunDecl,
580 const FunctionDecl *FunDecl,
584 const CallableWhenAttr *CWAttr = FunDecl->getAttr<CallableWhenAttr>();
595 FunDecl->getNameAsString(), PInfo.getVar()->getNameAsString(),
604 FunDecl->getNameAsString(), stateToString(TmpState), BlameLoc)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDeclCXX.cpp 2795 Decl *FunDecl =
2799 if (FunDecl) {
2801 CommonLateParsedAttrs[i]->addDecl(FunDecl);
2804 LateParsedAttrs[i]->addDecl(FunDecl);
2813 return DeclGroupPtrTy::make(DeclGroupRef(FunDecl));
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTImporter.cpp 1624 FunctionDecl *FunDecl;
1625 if (isa<RecordDecl>(D) && (FunDecl = dyn_cast<FunctionDecl>(OrigDC)) &&
1626 FunDecl->hasBody()) {
1633 for (const ParmVarDecl *P : FunDecl->parameters()) {

Completed in 27 milliseconds