Searched refs:dcl (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/ntp/sntp/libevent/ |
| H A D | event_rpcgen.py | 121 dcl = entry.AssignDeclaration("(*%s_assign)" % entry.Name()) 122 dcl.extend(entry.GetDeclaration("(*%s_get)" % entry.Name())) 124 dcl.extend(entry.AddDeclaration("(*%s_add)" % entry.Name())) 125 self.PrintIndented(filep, " ", dcl) 131 dcl = entry.Declaration() 132 self.PrintIndented(filep, " ", dcl) 622 dcl = ["ev_uint8_t %s_data[%s];" % (self._name, self._length)] 624 return dcl 751 dcl = ["%s %s_data;" % (self._ctype, self._name)] 753 return dcl [all …]
|
| /freebsd/contrib/libevent/ |
| H A D | event_rpcgen.py | 121 dcl = entry.AssignDeclaration("(*%s_assign)" % entry.Name()) 122 dcl.extend(entry.GetDeclaration("(*%s_get)" % entry.Name())) 124 dcl.extend(entry.AddDeclaration("(*%s_add)" % entry.Name())) 125 self.PrintIndented(filep, " ", dcl) 131 dcl = entry.Declaration() 132 self.PrintIndented(filep, " ", dcl) 622 dcl = ["ev_uint8_t %s_data[%s];" % (self._name, self._length)] 624 return dcl 751 dcl = ["%s %s_data;" % (self._ctype, self._name)] 753 return dcl [all …]
|
| /freebsd/crypto/openssl/ |
| H A D | NOTES-VMS.md | 7 - [About MMS and DCL](#about-mms-and-dcl)
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDecl.cpp | 16229 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body, in ActOnFinishFunctionBody() argument 16232 FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr; in ActOnFinishFunctionBody() 16307 Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto) in ActOnFinishFunctionBody() 16314 FD, dcl->getLocation(), Dummy, in ActOnFinishFunctionBody() 16538 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) { in ActOnFinishFunctionBody() 16592 PopFunctionScopeInfo(ActivePolicy, dcl); in ActOnFinishFunctionBody() 16597 DiagnoseUnguardedAvailabilityViolations(dcl); in ActOnFinishFunctionBody() 16615 if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) { in ActOnFinishFunctionBody() 16631 if (!hasUncompilableErrorOccurred() && !isa<FunctionTemplateDecl>(dcl)) { in ActOnFinishFunctionBody() 16687 PopFunctionScopeInfo(ActivePolicy, dcl); in ActOnFinishFunctionBody() [all …]
|
| H A D | SemaExpr.cpp | 14445 ValueDecl *dcl = getPrimaryDecl(op); in CheckAddressOfOperand() local 14447 if (auto *FD = dyn_cast_or_null<FunctionDecl>(dcl)) in CheckAddressOfOperand() 14546 } else if (dcl) { // C99 6.5.3.2p1 in CheckAddressOfOperand() 14549 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { in CheckAddressOfOperand() 14556 } else if (isa<MSPropertyDecl>(dcl)) { in CheckAddressOfOperand() 14558 } else if (isa<FunctionTemplateDecl>(dcl)) { in CheckAddressOfOperand() 14560 } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) { in CheckAddressOfOperand() 14572 DeclContext *Ctx = dcl->getDeclContext(); in CheckAddressOfOperand() 14574 if (dcl->getType()->isReferenceType()) { in CheckAddressOfOperand() 14577 << dcl->getDeclName() << dcl->getType(); in CheckAddressOfOperand() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 4079 void AddInitializerToDecl(Decl *dcl, Expr *init, bool DirectInit); 4080 void ActOnUninitializedDecl(Decl *dcl); 6420 void SetDeclDeleted(Decl *dcl, SourceLocation DelLoc, 6422 void SetDeclDefaulted(Decl *dcl, SourceLocation DefaultLoc);
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 9691 NamedDecl *dcl = CurLayObj->second; in getObjCEncodingForStructureImpl() local 9692 if (!dcl) in getObjCEncodingForStructureImpl() 9695 if (auto *base = dyn_cast<CXXRecordDecl>(dcl)) { in getObjCEncodingForStructureImpl() 9707 const auto *field = cast<FieldDecl>(dcl); in getObjCEncodingForStructureImpl()
|