Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDecl.h1593 unsigned HasInheritedPrototype : 1; variable
1690 IsVirtualAsWritten(false), IsPure(false), HasInheritedPrototype(false), in FunctionDecl()
1872 return HasWrittenPrototype || HasInheritedPrototype; in hasPrototype()
1879 bool hasInheritedPrototype() const { return HasInheritedPrototype; } in hasInheritedPrototype()
1880 void setHasInheritedPrototype(bool P = true) { HasInheritedPrototype = P; }
/external/llvm-project/clang/include/clang/AST/
DDeclBase.h1524 uint64_t HasInheritedPrototype : 1; variable
DDecl.h2222 return FunctionDeclBits.HasInheritedPrototype; in hasInheritedPrototype()
2228 FunctionDeclBits.HasInheritedPrototype = P;
/external/clang/lib/Serialization/
DASTWriterDecl.cpp521 Record.push_back(D->HasInheritedPrototype); in VisitFunctionDecl()
DASTReaderDecl.cpp769 FD->HasInheritedPrototype = Record[Idx++]; in VisitFunctionDecl()
/external/llvm-project/clang/lib/AST/
DDecl.cpp2827 FunctionDeclBits.HasInheritedPrototype = false; in FunctionDecl()