Home
last modified time | relevance | path

Searched refs:Entity (Results 1 – 25 of 68) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp164 : AccessedEntity(Entity) { in AccessTarget()
1287 NamedDecl *D = (Entity.isMemberAccess() ? Entity.getTargetDecl() : nullptr); in DiagnoseBadAccess()
1289 S.Diag(Loc, Entity.getDiag()) in DiagnoseBadAccess()
1374 if (Entity.isMemberAccess()) { in IsAccessible()
1449 if (!Entity.isQuiet()) in CheckEffectiveAccess()
1540 AccessTarget Entity(Context, in HandleDependentAccessCheck() local
1548 AccessTarget Entity(Context, in HandleDependentAccessCheck() local
1606 Entity.setDiag(Diag); in isMemberAccessibleForDeletion()
1650 switch (Entity.getKind()) { in CheckConstructorAccess()
1706 !Entity.getParent()) { in CheckConstructorAccess()
[all …]
H A DSemaInit.cpp575 SemaRef, Entity, in PerformEmptyInit()
1035 if (!Entity.getParent()) in isIdiomaticBraceElisionEntity()
1175 if (Entity.getParent()) in warnBracedScalarInit()
1421 : Entity; in CheckSubElementType()
4230 Entity.getKind() != in TryConstructorInitialization()
5375 S, Entity, Kind, Args, T, Entity.getType(), Sequence, InitListSyntax); in TryValueInitialization()
6584 if (Entity.getDecl() && in getAssignmentAction()
6962 if (Entity.isParamOrTemplateParamKind() && Entity.getDecl()) { in PrintInitLocationNote()
7195 return getEntityLifetime(Entity->getParent(), Entity); in getEntityLifetime()
7209 return {Entity, Entity->isDefaultMemberInitializer() ? LK_Extended in getEntityLifetime()
[all …]
H A DSemaTemplateInstantiate.cpp473 Inst.Entity = Entity; in InstantiatingTemplate()
716 if (Active.Entity) in Clear()
1057 if (!Active->Entity) { in PrintInstantiationStack()
1202 DeclarationName Entity; member in __anon0819d12b0211::TemplateInstantiator
1213 Entity(Entity) {} in TemplateInstantiator()
1239 this->Entity = Entity; in setBase()
2357 SmallString<128> Entity; in createSubstDiag() local
2361 std::copy(Entity.begin(), Entity.end(), EntityBuf); in createSubstDiag()
2370 SmallString<128> Entity; in createSubstDiagAt() local
2558 SmallString<128> Entity; in TransformNestedRequirement() local
[all …]
H A DSemaTemplate.cpp6658 if (Entity && Entity->hasAttr<DLLImportAttr>()) in isNullPointerValueTemplateArgument()
6906 ValueDecl *Entity = nullptr; in CheckTemplateArgumentAddressOfObjectOrFunction() local
6908 Entity = DRE->getDecl(); in CheckTemplateArgumentAddressOfObjectOrFunction()
6910 Entity = CUE->getGuidDecl(); in CheckTemplateArgumentAddressOfObjectOrFunction()
6942 if (!Entity) { in CheckTemplateArgumentAddressOfObjectOrFunction()
6950 if (isa<FieldDecl>(Entity) || isa<IndirectFieldDecl>(Entity)) { in CheckTemplateArgumentAddressOfObjectOrFunction()
7032 ArgType = Entity->getType(); in CheckTemplateArgumentAddressOfObjectOrFunction()
7401 InitializedEntity Entity = in CheckTemplateArgument() local
11416 DeclarationName Entity; member in __anon6a6d17471511::CurrentInstantiationRebuilder
11425 Loc(Loc), Entity(Entity) { } in CurrentInstantiationRebuilder()
[all …]
H A DSemaLookup.cpp1544 static Module *getDefiningModule(Sema &S, Decl *Entity) { in getDefiningModule() argument
1549 Entity = Pattern; in getDefiningModule()
1552 Entity = Pattern; in getDefiningModule()
1555 Entity = Pattern; in getDefiningModule()
1556 } else if (VarDecl *VD = dyn_cast<VarDecl>(Entity)) { in getDefiningModule()
1558 Entity = Pattern; in getDefiningModule()
1565 return S.getOwningModule(Entity); in getDefiningModule()
1573 Module *M = CodeSynthesisContexts[I].Entity ? in getLookupModules()
4339 DeclContext *Entity = S->getLookupEntity(); in lookupInScope() local
4340 if (Entity) { in lookupInScope()
[all …]
H A DSemaExprCXX.cpp916 InitializedEntity Entity = in BuildCXXThrow() local
1502 InitializedEntity Entity = in BuildCXXTypeConstructExpr() local
2066 InitializedEntity Entity in BuildCXXNew() local
2069 AllocTypeInfo, Entity, Kind, Exprs); in BuildCXXNew()
2433 InitializedEntity Entity in BuildCXXNew() local
3959 InitializedEntity Entity = in SemaBuiltinOperatorNewDeleteOverloaded() local
6246 return InitSeq.Diagnose(Self, Entity, Kind, From); in TryClassUnification()
6294 return InitSeq.Diagnose(Self, Entity, Kind, From); in TryClassUnification()
6368 InitializationSequence InitSeq(Self, Entity, Kind, Arg); in ConvertForConditional()
7246 InitializedEntity Entity = in FindCompositePointerType() local
[all …]
H A DSemaCoroutine.cpp638 InitializedEntity Entity = InitializedEntity::InitializeVariable(VD); in buildCoroutinePromise() local
641 InitializationSequence InitSeq(*this, Entity, Kind, CtorArgExprs, in buildCoroutinePromise()
652 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, CtorArgExprs); in buildCoroutinePromise()
1861 InitializedEntity Entity = in makeGroDeclAndReturnStmt() local
1863 S.PerformCopyInitialization(Entity, SourceLocation(), ReturnValue); in makeGroDeclAndReturnStmt()
1883 InitializedEntity Entity = InitializedEntity::InitializeVariable(GroDecl); in makeGroDeclAndReturnStmt() local
1885 S.PerformCopyInitialization(Entity, SourceLocation(), ReturnValue); in makeGroDeclAndReturnStmt()
H A DScope.cpp97 Entity = nullptr; in Init()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h271 InitializedEntity Entity; in InitializeParameter() local
273 Entity.Type = in InitializeParameter()
275 Entity.Parent = nullptr; in InitializeParameter()
277 return Entity; in InitializeParameter()
285 InitializedEntity Entity; in InitializeParameter() local
288 Entity.Parent = nullptr; in InitializeParameter()
290 return Entity; in InitializeParameter()
296 InitializedEntity Entity; in InitializeTemplateParameter() local
298 Entity.Type = T; in InitializeTemplateParameter()
299 Entity.Parent = nullptr; in InitializeTemplateParameter()
[all …]
H A DScope.h215 DeclContext *Entity; variable
366 return isTemplateParamScope() ? nullptr : Entity; in getEntity()
371 DeclContext *getLookupEntity() const { return Entity; } in getLookupEntity()
376 Entity = E; in setEntity()
378 void setLookupEntity(DeclContext *E) { Entity = E; } in setLookupEntity()
H A DDelayedDiagnostic.h145 const AccessedEntity &Entity) { in makeAccess() argument
150 new (&DD.getAccessData()) AccessedEntity(Entity); in makeAccess()
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessingRecord.cpp253 assert(Entity); in addPreprocessedEntity()
254 SourceLocation BeginLoc = Entity->getSourceRange().getBegin(); in addPreprocessedEntity()
256 if (isa<MacroDefinitionRecord>(Entity)) { in addPreprocessedEntity()
262 PreprocessedEntities.push_back(Entity); in addPreprocessedEntity()
270 PreprocessedEntities.push_back(Entity); in addPreprocessedEntity()
308 pp_iter insertI = PreprocessedEntities.insert(I, Entity); in addPreprocessedEntity()
373 if (!Entity) { in getLoadedPreprocessedEntity()
374 Entity = ExternalSource->ReadPreprocessedEntity(Index); in getLoadedPreprocessedEntity()
375 if (!Entity) // Failed to load. in getLoadedPreprocessedEntity()
376 Entity = new (*this) in getLoadedPreprocessedEntity()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Expression/
H A DMaterializer.h114 class Entity {
116 Entity() = default;
118 virtual ~Entity() = default;
145 uint32_t AddStructMember(Entity &entity);
147 typedef std::unique_ptr<Entity> EntityUP;
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp1331 auto *Entity = Module->getEntity(); in constructImportedEntityDIE() local
1332 if (auto *NS = dyn_cast<DINamespace>(Entity)) in constructImportedEntityDIE()
1334 else if (auto *M = dyn_cast<DIModule>(Entity)) in constructImportedEntityDIE()
1336 else if (auto *SP = dyn_cast<DISubprogram>(Entity)) { in constructImportedEntityDIE()
1344 } else if (auto *T = dyn_cast<DIType>(Entity)) in constructImportedEntityDIE()
1351 EntityDie = getDIE(Entity); in constructImportedEntityDIE()
1412 auto *Die = Entity->getDIE(); in finishEntityDefinition()
1418 Label = dyn_cast<const DbgLabel>(Entity); in finishEntityDefinition()
1422 else if ((Label = dyn_cast<const DbgLabel>(Entity))) in finishEntityDefinition()
1453 auto &Entity = getAbstractEntities()[Node]; in createAbstractEntity() local
[all …]
H A DDbgEntityHistoryCalculator.cpp149 InlinedEntity Entity = Record.first; in trimLocationRanges() local
150 const DILocalVariable *LocalVar = cast<DILocalVariable>(Entity.first); in trimLocationRanges()
153 if (const DILocation *InlinedAt = Entity.second) { in trimLocationRanges()
H A DDwarfDebug.h73 const DINode *Entity;
80 : Entity(N), InlinedAt(IA), SubclassID(ID) {} in DbgEntity()
85 const DINode *getEntity() const { return Entity; } in getEntity()
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp40 uint32_t Materializer::AddStructMember(Entity &entity) { in AddStructMember()
59 class EntityPersistentVariable : public Materializer::Entity {
63 : Entity(), m_persistent_variable_sp(persistent_variable_sp), in EntityPersistentVariable()
429 class EntityVariableBase : public Materializer::Entity {
910 class EntityResultVariable : public Materializer::Entity {
915 : Entity(), m_type(type), m_is_program_reference(is_program_reference), in EntityResultVariable()
1200 class EntitySymbol : public Materializer::Entity {
1202 EntitySymbol(const Symbol &symbol) : Entity(), m_symbol(symbol) { in EntitySymbol()
1318 class EntityRegister : public Materializer::Entity {
1321 : Entity(), m_register_info(register_info) { in EntityRegister()
/freebsd-14.2/lib/libfetch/
H A Dhttp.errors34 413 PROTO Request Entity Too Large
/freebsd-14.2/sys/contrib/openzfs/module/icp/asm-x86_64/modes/
H A DTHIRDPARTYLICENSE.openssl16 "Legal Entity" shall mean the union of the acting entity and all
24 "You" (or "Your") shall mean an individual or Legal Entity
53 or by an individual or Legal Entity authorized to submit on behalf of
63 "Contributor" shall mean Licensor and any individual or Legal Entity
/freebsd-14.2/crypto/openssl/
H A DLICENSE.txt16 "Legal Entity" shall mean the union of the acting entity and all
24 "You" (or "Your") shall mean an individual or Legal Entity
53 or by an individual or Legal Entity authorized to submit on behalf of
63 "Contributor" shall mean Licensor and any individual or Legal Entity
/freebsd-14.2/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp442 Name = static_cast<const LocalName *>(Name)->Entity; in getFunctionBaseName()
485 Name = LN->Entity; in getFunctionDeclContextName()
567 N = static_cast<const LocalName *>(N)->Entity; in isCtorOrDtor()
/freebsd-14.2/sys/contrib/openzfs/contrib/pyzfs/
H A DLICENSE16 "Legal Entity" shall mean the union of the acting entity and all
24 "You" (or "Your") shall mean an individual or Legal Entity
53 or by an individual or Legal Entity authorized to submit on behalf of
63 "Contributor" shall mean Licensor and any individual or Legal Entity
/freebsd-14.2/contrib/arm-optimized-routines/
H A DLICENSE46 "Legal Entity" shall mean the union of the acting entity and all
54 "You" (or "Your") shall mean an individual or Legal Entity
83 or by an individual or Legal Entity authorized to submit on behalf of
93 "Contributor" shall mean Licensor and any individual or Legal Entity
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h1237 Metadata *Entity;
1243 MDNodeKeyImpl(unsigned Tag, Metadata *Scope, Metadata *Entity, Metadata *File,
1245 : Tag(Tag), Scope(Scope), Entity(Entity), File(File), Line(Line),
1248 : Tag(N->getTag()), Scope(N->getRawScope()), Entity(N->getRawEntity()),
1254 Entity == RHS->getRawEntity() && File == RHS->getFile() &&
1260 return hash_combine(Tag, Scope, Entity, File, Line, Name, Elements);
/freebsd-14.2/contrib/llvm-project/clang/
H A DLICENSE.TXT19 "Legal Entity" shall mean the union of the acting entity and all
27 "You" (or "Your") shall mean an individual or Legal Entity
56 or by an individual or Legal Entity authorized to submit on behalf of
66 "Contributor" shall mean Licensor and any individual or Legal Entity

123