Home
last modified time | relevance | path

Searched refs:TUScope (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreterUtils.cpp53 S.LookupName(R, S.TUScope); in LookupNamespace()
80 S.LookupName(R, S.TUScope); in LookupNamed()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp561 SemaRef.TUScope, SuperName, SuperLoc, Sema::LookupOrdinaryName); in ActOnSuperClassOfClassInterface()
569 SemaRef.TUScope, nullptr, CCC, Sema::CTK_ErrorRecovery)) { in ActOnSuperClassOfClassInterface()
987 SemaRef.TUScope, ClassName, ClassLoc, Sema::LookupOrdinaryName, in ActOnStartClassInterface()
1069 SemaRef.ProcessDeclAttributeList(SemaRef.TUScope, IDecl, AttrList); in ActOnStartClassInterface()
1070 SemaRef.AddPragmaAttributes(SemaRef.TUScope, IDecl); in ActOnStartClassInterface()
1077 SemaRef.PushOnScopeChains(IDecl, SemaRef.TUScope); in ActOnStartClassInterface()
1122 SemaRef.TUScope, SuperName, SuperLoc, Sema::LookupOrdinaryName); in ActOnTypedefedProtocols()
1150 SemaRef.TUScope, AliasName, AliasLocation, Sema::LookupOrdinaryName, in ActOnCompatibilityAlias()
1159 SemaRef.TUScope, ClassName, ClassLocation, Sema::LookupOrdinaryName, in ActOnCompatibilityAlias()
1168 SemaRef.TUScope, ClassName, ClassLocation, Sema::LookupOrdinaryName, in ActOnCompatibilityAlias()
[all …]
H A DSema.cpp152 TUScope = S; in ActOnTranslationUnitScope()
269 TUScope = nullptr; in Sema()
309 PushOnScopeChains(Context.buildImplicitTypedef(T, Name), TUScope); in addImplicitTypedef()
325 if (!TUScope) in Initialize()
336 PushOnScopeChains(Context.getInt128Decl(), TUScope); in Initialize()
340 PushOnScopeChains(Context.getUInt128Decl(), TUScope); in Initialize()
350 PushOnScopeChains(Context.getObjCSelDecl(), TUScope); in Initialize()
356 PushOnScopeChains(Context.getObjCIdDecl(), TUScope); in Initialize()
361 PushOnScopeChains(Context.getObjCClassDecl(), TUScope); in Initialize()
366 PushOnScopeChains(Context.getObjCProtocolDecl(), TUScope); in Initialize()
[all …]
H A DSemaExprObjC.cpp108 NamedDecl *IF = SemaRef.LookupSingleName(SemaRef.TUScope, NSIdent, AtLoc, in BuildObjCStringLiteral()
123 NamedDecl *IF = SemaRef.LookupSingleName(SemaRef.TUScope, NSIdent, AtLoc, in BuildObjCStringLiteral()
230 NamedDecl *IF = S.LookupSingleName(S.TUScope, II, Loc, in LookupObjCInterfaceDeclForLiteral()
2805 S.LookupSingleName(S.TUScope, II, Protocol->getBeginLoc(), in isMethodDeclaredInRootProtocol()
3755 return SemaRef.LookupName(R, SemaRef.TUScope, false); in isKnownName()
4029 if (S.LookupName(R, S.TUScope)) { in CheckObjCBridgeNSCast()
4093 if (S.LookupName(R, S.TUScope)) { in CheckObjCBridgeCFCast()
4251 if (!SemaRef.LookupName(R, SemaRef.TUScope)) { in checkObjCBridgeRelatedComponents()
H A DSemaObjC.cpp1303 Decl *D = SemaRef.LookupSingleName(SemaRef.TUScope, II, IdLoc, in LookupProtocol()
2014 if (!SemaRef.LookupName(Result, SemaRef.TUScope) || in handleNSErrorDomain()
H A DSemaLookup.cpp710 S.LookupName(Result, S.TUScope); in getOpenCLEnumType()
723 S.LookupName(Result, S.TUScope); in getOpenCLTypedefType()
966 LazilyCreateBuiltin(II, BuiltinID, TUScope, in LookupBuiltin()
H A DSemaAttr.cpp815 NamedDecl *ND = LookupSingleName(TUScope, DN, Loc, LookupOrdinaryName); in ActOnPragmaMSAllocText()
H A DSemaExpr.cpp602 S.LookupSingleName(S.TUScope, in DiagnoseDirectIsaAccess()
618 S.LookupSingleName(S.TUScope, in DiagnoseDirectIsaAccess()
684 NamedDecl *ObjectGetClass = LookupSingleName(TUScope, in DefaultLvalueConversion()
1061 ExprResult TrapFn = ActOnIdExpression(TUScope, SS, TemplateKWLoc, Name, in DefaultVariadicArgumentPromotion()
1067 ExprResult Call = BuildCallExpr(TUScope, TrapFn.get(), E->getBeginLoc(), in DefaultVariadicArgumentPromotion()
1073 ActOnBinOp(TUScope, E->getBeginLoc(), tok::comma, Call.get(), E); in DefaultVariadicArgumentPromotion()
6613 LookupName(R, TUScope, /*AllowBuiltinCreation=*/true); in BuildBuiltinCallExpr()
14825 NamedDecl *ObjectSetClass = LookupSingleName(TUScope, in CreateBuiltinBinOp()
H A DSemaCodeComplete.cpp8672 SemaRef.TUScope, ClassName, ClassNameLoc, Sema::LookupOrdinaryName); in CodeCompleteObjCSuperclass()
8720 SemaRef.TUScope, ClassName, ClassNameLoc, Sema::LookupOrdinaryName); in CodeCompleteObjCInterfaceCategory()
8751 SemaRef.TUScope, ClassName, ClassNameLoc, Sema::LookupOrdinaryName); in CodeCompleteObjCImplementationCategory()
H A DSemaDecl.cpp2385 PushOnScopeChains(New, TUScope); in LazilyCreateBuiltin()
20110 NamedDecl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, in ActOnPragmaRedefineExtname()
20135 Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName); in ActOnPragmaWeakID()
20149 Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc, in ActOnPragmaWeakAlias()
20156 DeclApplyPragmaWeak(TUScope, ND, W); in ActOnPragmaWeakAlias()
H A DSemaDeclCXX.cpp14482 S.LookupName(R, S.TUScope, true); in buildMemcpyForAssignmentOp()
19016 ProcessDeclAttributes(TUScope, NewPD, D); in HandleMSProperty()
H A DSemaDeclAttr.cpp1625 if (S.LookupName(LR, S.TUScope)) { in markUsedForAliasOrIfunc()
H A DSemaExprCXX.cpp5148 S.LookupBinOp(S.TUScope, {}, BinaryOperatorKind::BO_EQ, Functions); in HasNonDeletedDefaultedEqualityComparison()
H A DSemaOpenMP.cpp15559 S.LookupSingleName(S.TUScope, AllocatorName, Loc, Sema::LookupAnyName)); in findOMPAllocatorHandleT()
23000 SemaRef.TUScope, AllocatorName, StartLoc, Sema::LookupAnyName)); in ActOnOpenMPUsesAllocatorClause()
H A DSemaChecking.cpp4434 LookupName(Res, TUScope, /*AllowBuiltinCreation=*/true); in BuiltinAtomicOverloaded()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DCxxModuleHandler.cpp67 result.push_back(sema.TUScope); in makeScopes()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp868 ListScope TUScope(W, "Local Type Unit offsets"); in dumpLocalTUs() local
878 ListScope TUScope(W, "Foreign Type Unit signatures"); in dumpForeignTUs() local
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10296 if (SemaObj->IdResolver.tryAddTopLevelDecl(D, Name) && SemaObj->TUScope) { in pushExternalDeclIntoScope()
10297 SemaObj->TUScope->AddDecl(D); in pushExternalDeclIntoScope()
10298 } else if (SemaObj->TUScope) { in pushExternalDeclIntoScope()
10303 SemaObj->TUScope->AddDecl(D); in pushExternalDeclIntoScope()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h963 Scope *TUScope; variable