Home
last modified time | relevance | path

Searched refs:HasInheritedPrototype (Results 1 – 3 of 3) sorted by relevance

/external/clang/include/clang/AST/
DDecl.h1515 bool HasInheritedPrototype : 1; variable
1612 IsVirtualAsWritten(false), IsPure(false), HasInheritedPrototype(false), in FunctionDecl()
1783 return HasWrittenPrototype || HasInheritedPrototype; in hasPrototype()
1790 bool hasInheritedPrototype() const { return HasInheritedPrototype; } in hasInheritedPrototype()
1791 void setHasInheritedPrototype(bool P = true) { HasInheritedPrototype = P; }
/external/clang/lib/Serialization/
DASTWriterDecl.cpp434 Record.push_back(D->HasInheritedPrototype); in VisitFunctionDecl()
DASTReaderDecl.cpp649 FD->HasInheritedPrototype = Record[Idx++]; in VisitFunctionDecl()