Home
last modified time | relevance | path

Searched refs:UD (Results 1 – 25 of 42) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp296 void attachDirective(DiagnosticsEngine &Diags, const UnattachedDirective &UD, in attachDirective() argument
302 UD.RegexKind, UD.DirectivePos, ExpectedLoc, MatchAnyFileAndLine, in attachDirective()
303 MatchAnyLine, UD.Text, UD.Min, UD.Max); in attachDirective()
307 Diags.Report(UD.ContentBegin, diag::err_verify_invalid_content) in attachDirective()
308 << (UD.RegexKind ? "regex" : "string") << Error; in attachDirective()
311 UD.DL->push_back(std::move(D)); in attachDirective()
356 for (auto &UD : Deferred->second) { in addMarker() local
358 M.UseLoc = UD.DirectivePos; in addMarker()
359 attachDirective(Diags, UD, Pos); in addMarker()
367 void addDirective(StringRef MarkerName, const UnattachedDirective &UD) { in addDirective() argument
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DAvailability.h101 VersionTuple O, bool U, bool UD, bool UU) in AvailabilityInfo()
103 Unavailable(U), UnconditionallyDeprecated(UD), in AvailabilityInfo()
H A DJSONNodeDumper.h253 void VisitUsingDecl(const UsingDecl *UD);
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPURewriteUndefForPHI.cpp156 if (DT->dominates(DominateBB, &BB) && all_of(Undefs, [&](BasicBlock *UD) { in INITIALIZE_PASS_DEPENDENCY()
157 return DT->dominates(DominateBB, UD); in INITIALIZE_PASS_DEPENDENCY() argument
/freebsd/contrib/ofed/libibverbs/
H A Dopcode.h143 IBV_OPCODE(UD, SEND_ONLY),
144 IBV_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DABIInfoImpl.cpp147 const RecordDecl *UD = UT->getDecl(); in useFirstFieldIfTransparentUnion() local
148 if (UD->hasAttr<TransparentUnionAttr>()) { in useFirstFieldIfTransparentUnion()
149 assert(!UD->field_empty() && "sema created an empty transparent union"); in useFirstFieldIfTransparentUnion()
150 return UD->field_begin()->getType(); in useFirstFieldIfTransparentUnion()
H A DCGDebugInfo.h552 void EmitUsingDirective(const UsingDirectiveDecl &UD);
564 void EmitUsingDecl(const UsingDecl &UD);
567 void EmitUsingEnumDecl(const UsingEnumDecl &UD);
H A DCGDebugInfo.cpp5885 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { in EmitUsingDirective() argument
5888 const NamespaceDecl *NSDecl = UD.getNominatedNamespace(); in EmitUsingDirective()
5891 auto Loc = UD.getLocation(); in EmitUsingDirective()
5895 getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())), in EmitUsingDirective()
5910 void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) { in EmitUsingDecl() argument
5913 assert(UD.shadow_size() && in EmitUsingDecl()
5916 for (const auto *USD : UD.shadows()) { in EmitUsingDecl()
5935 void CGDebugInfo::EmitUsingEnumDecl(const UsingEnumDecl &UD) { in EmitUsingEnumDecl() argument
5938 assert(UD.shadow_size() && in EmitUsingEnumDecl()
5942 for (const auto *USD : UD.shadows()) in EmitUsingEnumDecl()
/freebsd/sys/ofed/include/rdma/
H A Dib_pack.h177 IB_OPCODE(UD, SEND_ONLY),
178 IB_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
/freebsd/contrib/bearssl/samples/
H A Dkey-ee-rsa.pem18 UD/14JowQhAsSFUkEeBbHMMCgYEAjazgoDPAmVK4kAcQm4Ohys3UjINomD3QGHC8ygywbQnkJdSd
/freebsd/sys/dev/mthca/
H A Dmthca_qp.c285 enum { RC, UC, UD, RD, RDEE, MLX, NUM_TRANS }; enumerator
292 case UD: return MTHCA_QP_ST_UD; in to_mthca_st()
591 if (qp->transport == MLX || qp->transport == UD) in __mthca_modify_qp()
928 case UD: in mthca_max_data_size()
998 case UD: in mthca_alloc_wqe_buf()
1288 case IB_QPT_UD: qp->transport = UD; break; in mthca_alloc_qp()
1716 case UD: in mthca_tavor_post_send()
2057 case UD: in mthca_arbel_post_send()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVNHoist.cpp725 if (auto *UD = dyn_cast<MemoryUseOrDef>(D)) in safeToHoistLdSt() local
726 if (!firstInBB(UD->getMemoryInst(), NewPt)) in safeToHoistLdSt()
777 if (MemoryUseOrDef *UD = MSSA->getMemoryAccess(Insn)) in checkSafety() local
778 if (safeToHoistLdSt(T, Insn, UD, K, NumBBsOnAllPaths)) in checkSafety()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp11530 UsingDirectiveDecl *&UD, bool IsNested) { in ActOnStartNamespaceDef() argument
11667 UD = UsingDirectiveDecl::Create(Context, Parent, in ActOnStartNamespaceDef()
11674 UD->setImplicit(); in ActOnStartNamespaceDef()
11675 Parent->addDecl(UD); in ActOnStartNamespaceDef()
12267 NamedDecl *UD = in ActOnUsingDeclaration() local
12272 if (UD) in ActOnUsingDeclaration()
12273 PushOnScopeChains(UD, S, /*AddToContext*/ false); in ActOnUsingDeclaration()
12275 return UD; in ActOnUsingDeclaration()
12313 auto *UD = in ActOnUsingEnumDeclaration() local
12316 if (UD) in ActOnUsingEnumDeclaration()
12797 UsingDecl *UD = BuildUsingDeclaration() local
12944 UsingDecl *UD = BuildValid(); BuildUsingDeclaration() local
12995 UsingEnumDecl *UD = UsingEnumDecl::Create(Context, CurContext, UsingLoc, BuildUsingEnumDeclaration() local
13034 CheckInheritingConstructorUsingDecl(UsingDecl * UD) CheckInheritingConstructorUsingDecl() argument
13105 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) { CheckUsingDeclRedeclaration() local
13108 } else if (UnresolvedUsingValueDecl *UD CheckUsingDeclRedeclaration() local
13112 } else if (UnresolvedUsingTypenameDecl *UD CheckUsingDeclRedeclaration() local
13140 CheckUsingDeclQualifier(SourceLocation UsingLoc,bool HasTypename,const CXXScopeSpec & SS,const DeclarationNameInfo & NameInfo,SourceLocation NameLoc,const LookupResult * R,const UsingDecl * UD) CheckUsingDeclQualifier() argument
[all...]
H A DSemaLookup.cpp148 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit() argument
149 DeclContext *NS = UD->getNominatedNamespace(); in visit()
153 addUsingDirective(UD, EffectiveDC); in visit()
163 for (auto *UD : DC->using_directives()) { in addUsingDirectives() local
164 DeclContext *NS = UD->getNominatedNamespace(); in addUsingDirectives()
165 if (SemaRef.isVisible(UD) && visited.insert(NS).second) { in addUsingDirectives()
166 addUsingDirective(UD, EffectiveDC); in addUsingDirectives()
185 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective() argument
188 DeclContext *Common = UD->getNominatedNamespace(); in addUsingDirective()
193 list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common)); in addUsingDirective()
H A DSemaAccess.cpp1320 if (UsingDecl *UD = dyn_cast<UsingDecl>(Shadow->getIntroducer())) { in IsMicrosoftUsingDeclarationAccessBug() local
1326 << UD->getQualifiedNameAsString() in IsMicrosoftUsingDeclarationAccessBug()
H A DSemaTemplateInstantiateDecl.cpp3544 NamedDecl *UD = SemaRef.BuildUsingDeclaration( in instantiateUnresolvedUsingDecl() local
3549 if (UD) { in instantiateUnresolvedUsingDecl()
3550 SemaRef.InstantiateAttrs(TemplateArgs, D, UD); in instantiateUnresolvedUsingDecl()
3551 SemaRef.Context.setInstantiatedFromUsingDecl(UD, D); in instantiateUnresolvedUsingDecl()
3554 return UD; in instantiateUnresolvedUsingDecl()
3574 for (auto *UD : D->expansions()) { in VisitUsingPackDecl() local
3576 SemaRef.FindInstantiatedDecl(D->getLocation(), UD, TemplateArgs)) in VisitUsingPackDecl()
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Domap3-evm-common.dtsi106 &gpio1 3 GPIO_ACTIVE_HIGH>; /* gpio3, lcd UD */
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp901 void JSONNodeDumper::VisitUsingDecl(const UsingDecl *UD) { in VisitUsingDecl() argument
903 if (const NestedNameSpecifier *NNS = UD->getQualifier()) { in VisitUsingDecl()
905 NNS->print(SOS, UD->getASTContext().getPrintingPolicy()); in VisitUsingDecl()
907 Name += UD->getNameAsString(); in VisitUsingDecl()
H A DDecl.cpp1866 if (const auto *UD = dyn_cast<UsingDecl>(this)) { in declarationReplaces() local
1868 return Context.getCanonicalNestedNameSpecifier(UD->getQualifier()) == in declarationReplaces()
1932 if (auto *UD = dyn_cast<UsingShadowDecl>(ND)) in getUnderlyingDeclImpl() local
1933 ND = UD->getTargetDecl(); in getUnderlyingDeclImpl()
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dhexagon_types.h651 unsigned long long UD(void) { in UD() function
1878 unsigned long long UD(void) { in UD() function
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp1749 uint32_t UD = Diff; in replaceInstrExpr() local
1751 uint32_t A = std::min<uint32_t>(R.Align, 1u << llvm::countr_zero(UD)); in replaceInstrExpr()
/freebsd/stand/i386/btx/btx/
H A Dbtx.S323 push $0x6 # Int 0x6: #UD
/freebsd/contrib/sendmail/contrib/
H A Dmail.local.linux203 HO;-X-L_JV3W+9_NLG_VS@#;0"MI!2V@+K:$]M(@VT2K:1<MH&^UD`$MG
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp891 Decl *UD = Actions.ActOnUsingDeclaration(getCurScope(), AS, UsingLoc, in ParseUsingDeclaration() local
894 if (UD) in ParseUsingDeclaration()
895 DeclsInGroup.push_back(UD); in ParseUsingDeclaration()
/freebsd/contrib/byacc/
H A Daclocal.m41809 sed -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[[ ]]/ /g' \
1810 -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[$]//g'`

12