Home | History | Annotate | Download | only in slang

Lines Matching refs:FD

30 inline bool isInitRSFunc(const clang::FunctionDecl *FD) {
31 if (!FD) {
34 const llvm::StringRef Name = FD->getName();
39 inline bool isDtorRSFunc(const clang::FunctionDecl *FD) {
40 if (!FD) {
43 const llvm::StringRef Name = FD->getName();
49 const clang::FunctionDecl *FD);
52 const clang::FunctionDecl *FD) {
53 return isGraphicsRootRSFunc(targetAPI, FD) || isInitRSFunc(FD) ||
54 isDtorRSFunc(FD);
59 const clang::FunctionDecl *FD);