Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDecl.h1423 bool HasInheritedPrototype : 1; variable
1516 IsVirtualAsWritten(false), IsPure(false), HasInheritedPrototype(false), in FunctionDecl()
1683 return HasWrittenPrototype || HasInheritedPrototype; in hasPrototype()
1690 bool hasInheritedPrototype() const { return HasInheritedPrototype; } in hasInheritedPrototype()
1691 void setHasInheritedPrototype(bool P = true) { HasInheritedPrototype = P; }
/external/clang/lib/Serialization/
DASTReaderDecl.cpp538 FD->HasInheritedPrototype = Record[Idx++]; in VisitFunctionDecl()