Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDDecl.h1556 bool HasInheritedPrototype : 1; variable
1653 IsVirtualAsWritten(false), IsPure(false), HasInheritedPrototype(false), in FunctionDecl()
1824 return HasWrittenPrototype || HasInheritedPrototype; in hasPrototype()
1831 bool hasInheritedPrototype() const { return HasInheritedPrototype; } in hasInheritedPrototype()
1832 void setHasInheritedPrototype(bool P = true) { HasInheritedPrototype = P; }
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTWriterDecl.cpp452 Record.push_back(D->HasInheritedPrototype); in VisitFunctionDecl()
HDASTReaderDecl.cpp736 FD->HasInheritedPrototype = Record[Idx++]; in VisitFunctionDecl()