Home
last modified time | relevance | path

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

12

/netbsd/external/apache2/llvm/dist/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp304 UD.RegexKind, UD.DirectivePos, ExpectedLoc, MatchAnyFileAndLine, in attachDirective()
305 MatchAnyLine, UD.Text, UD.Min, UD.Max); in attachDirective()
309 Diags.Report(UD.ContentBegin, diag::err_verify_invalid_content) in attachDirective()
310 << (UD.RegexKind ? "regex" : "string") << Error; in attachDirective()
313 UD.DL->push_back(std::move(D)); in attachDirective()
358 for (auto &UD : Deferred->second) { in addMarker() local
360 M.UseLoc = UD.DirectivePos; in addMarker()
361 attachDirective(Diags, UD, Pos); in addMarker()
374 M.UseLoc = UD.DirectivePos; in addDirective()
375 return attachDirective(Diags, UD, M.DefLoc); in addDirective()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DGVNHoist.cpp771 if (auto *UD = dyn_cast<MemoryUseOrDef>(D)) in safeToHoistLdSt() local
772 if (!firstInBB(UD->getMemoryInst(), NewPt)) in safeToHoistLdSt()
818 if (MemoryUseOrDef *UD = MSSA->getMemoryAccess(Insn)) in checkSafety() local
819 if (safeToHoistLdSt(T, Insn, UD, K, NumBBsOnAllPaths)) in checkSafety()
/netbsd/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Domap3-evm-common.dtsi106 &gpio1 3 GPIO_ACTIVE_HIGH>; /* gpio3, lcd UD */
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclCXX.cpp11034 UD->setImplicit(); in ActOnStartNamespaceDef()
11607 NamedDecl *UD = in ActOnUsingDeclaration() local
11611 if (UD) in ActOnUsingDeclaration()
11614 return UD; in ActOnUsingDeclaration()
11825 Context, CurContext, UD->getLocation(), UD, Orig, IsVirtualBase); in BuildUsingShadowDecl()
11827 Shadow = UsingShadowDecl::Create(Context, CurContext, UD->getLocation(), UD, in BuildUsingShadowDecl()
12094 UsingDecl *UD = in BuildUsingDeclaration() local
12097 UD->setAccess(AS); in BuildUsingDeclaration()
12100 return UD; in BuildUsingDeclaration()
12245 return UD; in BuildUsingDeclaration()
[all …]
H A DSemaLookup.cpp143 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit() argument
144 DeclContext *NS = UD->getNominatedNamespace(); in visit()
148 addUsingDirective(UD, EffectiveDC); in visit()
158 for (auto UD : DC->using_directives()) { in addUsingDirectives() local
159 DeclContext *NS = UD->getNominatedNamespace(); in addUsingDirectives()
160 if (SemaRef.isVisible(UD) && visited.insert(NS).second) { in addUsingDirectives()
161 addUsingDirective(UD, EffectiveDC); in addUsingDirectives()
180 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective() argument
183 DeclContext *Common = UD->getNominatedNamespace(); in addUsingDirective()
188 list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common)); in addUsingDirective()
H A DSemaTemplateInstantiateDecl.cpp3187 NamedDecl *UD = SemaRef.BuildUsingDeclaration( in instantiateUnresolvedUsingDecl() local
3192 if (UD) in instantiateUnresolvedUsingDecl()
3193 SemaRef.Context.setInstantiatedFromUsingDecl(UD, D); in instantiateUnresolvedUsingDecl()
3195 return UD; in instantiateUnresolvedUsingDecl()
3210 for (auto *UD : D->expansions()) { in VisitUsingPackDecl() local
3212 SemaRef.FindInstantiatedDecl(D->getLocation(), UD, TemplateArgs)) in VisitUsingPackDecl()
H A DSemaDeclAttr.cpp1454 RecordDecl *UD = UT->getDecl(); in isValidPointerAttrType() local
1455 for (const auto *I : UD->fields()) { in isValidPointerAttrType()
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDebugInfo.h497 void EmitUsingDirective(const UsingDirectiveDecl &UD);
506 void EmitUsingDecl(const UsingDecl &UD);
H A DCGDebugInfo.cpp4950 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { in EmitUsingDirective() argument
4953 const NamespaceDecl *NSDecl = UD.getNominatedNamespace(); in EmitUsingDirective()
4956 auto Loc = UD.getLocation(); in EmitUsingDirective()
4960 getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())), in EmitUsingDirective()
4965 void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) { in EmitUsingDecl() argument
4968 assert(UD.shadow_size() && in EmitUsingDecl()
4972 const UsingShadowDecl &USD = **UD.shadow_begin(); in EmitUsingDecl()
H A DCGOpenMPRuntime.cpp3503 RecordDecl *UD = C.buildImplicitRecord("kmp_cmplrdata_t", TTK_Union); in createKmpTaskTRecordDecl() local
3504 UD->startDefinition(); in createKmpTaskTRecordDecl()
3505 addFieldToRecordDecl(C, UD, KmpInt32Ty); in createKmpTaskTRecordDecl()
3506 addFieldToRecordDecl(C, UD, KmpRoutineEntryPointerQTy); in createKmpTaskTRecordDecl()
3507 UD->completeDefinition(); in createKmpTaskTRecordDecl()
3508 QualType KmpCmplrdataTy = C.getRecordType(UD); in createKmpTaskTRecordDecl()
H A DTargetInfo.cpp193 const RecordDecl *UD = UT->getDecl(); in useFirstFieldIfTransparentUnion() local
194 if (UD->hasAttr<TransparentUnionAttr>()) { in useFirstFieldIfTransparentUnion()
195 assert(!UD->field_empty() && "sema created an empty transparent union"); in useFirstFieldIfTransparentUnion()
196 return UD->field_begin()->getType(); in useFirstFieldIfTransparentUnion()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DJSONNodeDumper.cpp749 void JSONNodeDumper::VisitUsingDecl(const UsingDecl *UD) { in VisitUsingDecl() argument
751 if (const NestedNameSpecifier *NNS = UD->getQualifier()) { in VisitUsingDecl()
753 NNS->print(SOS, UD->getASTContext().getPrintingPolicy()); in VisitUsingDecl()
755 Name += UD->getNameAsString(); in VisitUsingDecl()
H A DDecl.cpp1764 if (auto *UD = dyn_cast<UsingDecl>(this)) { in declarationReplaces() local
1766 return Context.getCanonicalNestedNameSpecifier(UD->getQualifier()) == in declarationReplaces()
1816 while (auto *UD = dyn_cast<UsingShadowDecl>(ND)) in getUnderlyingDeclImpl() local
1817 ND = UD->getTargetDecl(); in getUnderlyingDeclImpl()
H A DASTContext.cpp9382 RecordDecl *UD = UT->getDecl(); in mergeTransparentUnionType() local
9383 if (UD->hasAttr<TransparentUnionAttr>()) { in mergeTransparentUnionType()
9384 for (const auto *I : UD->fields()) { in mergeTransparentUnionType()
/netbsd/external/apache2/llvm/dist/llvm/cmake/modules/
H A DAddOCaml.cmake96 string(REGEX MATCH "(^| )[/-][UD] *NDEBUG($| )" flag_matches
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DJSONNodeDumper.h236 void VisitUsingDecl(const UsingDecl *UD);
/netbsd/external/apache2/llvm/dist/clang/tools/libclang/
H A DIndexing.cpp281 const MacroDirective *UD) override {} in MacroUndefined() argument
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp1744 uint32_t UD = Diff; in replaceInstrExpr() local
1746 uint32_t A = std::min<uint32_t>(R.Align, 1u << countTrailingZeros(UD)); in replaceInstrExpr()
/netbsd/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseDeclCXX.cpp751 Decl *UD = Actions.ActOnUsingDeclaration(getCurScope(), AS, UsingLoc, in ParseUsingDeclaration() local
754 if (UD) in ParseUsingDeclaration()
755 DeclsInGroup.push_back(UD); in ParseUsingDeclaration()
/netbsd/external/bsd/byacc/dist/
H A Daclocal.m41403 sed -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[[ ]]/ /g' \
1404 -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[$]//g'`
/netbsd/sys/external/bsd/gnu-efi/dist/
H A DChangeLog809 initialize the #DE or #UD trap handlers, and your backtrace will be a
811 whatever address the IDT has for #UD, but also addresses like "0x4" and
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMInstrVFP.td937 def UD : ASuInp<0b11101, 0b11, 0b1100, 0b01, 0,
981 (!cast<Instruction>(NAME#"UD") DPR:$a),
H A DARMScheduleA57.td734 "VCVT(A|N|P|M)(SH|UH|SS|US|SD|UD)", "VCVT(BDH|THD|TDH)")>;
/netbsd/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h5678 bool CheckUsingShadowDecl(UsingDecl *UD, NamedDecl *Target,
5681 UsingShadowDecl *BuildUsingShadowDecl(Scope *S, UsingDecl *UD,
5704 bool CheckInheritingConstructorUsingDecl(UsingDecl *UD);
/netbsd/external/gpl3/gcc.old/dist/contrib/unicode/
H A DUnicodeData.txt6389 1C6B;OL CHIKI LETTER UD;Lo;0;L;;;;;N;;;;;
18608 10AC8;MANICHAEAN SIGN UD;So;0;R;;;;;N;;;;;
21468 12149;CUNEIFORM SIGN IGI OVER IGI SHIR OVER SHIR UD OVER UD;Lo;0;L;;;;;N;;;;;
21532 12189;CUNEIFORM SIGN KA TIMES UD;Lo;0;L;;;;;N;;;;;
21558 121A3;CUNEIFORM SIGN KI TIMES UD;Lo;0;L;;;;;N;;;;;
21725 1224A;CUNEIFORM SIGN NE TIMES UD;Lo;0;L;;;;;N;;;;;
21926 12313;CUNEIFORM SIGN UD;Lo;0;L;;;;;N;;;;;
21927 12314;CUNEIFORM SIGN UD KUSHU2;Lo;0;L;;;;;N;;;;;
21929 12316;CUNEIFORM SIGN UD TIMES MI;Lo;0;L;;;;;N;;;;;
21932 12319;CUNEIFORM SIGN UD GUNU;Lo;0;L;;;;;N;;;;;
[all …]

12