| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaAccess.cpp | 164 : AccessedEntity(Entity) { in AccessTarget() 1277 NamedDecl *D = (Entity.isMemberAccess() ? Entity.getTargetDecl() : nullptr); in DiagnoseBadAccess() 1279 S.Diag(Loc, Entity.getDiag()) in DiagnoseBadAccess() 1364 if (Entity.isMemberAccess()) { in IsAccessible() 1439 if (!Entity.isQuiet()) in CheckEffectiveAccess() 1528 AccessTarget Entity(Context, in HandleDependentAccessCheck() local 1536 AccessTarget Entity(Context, in HandleDependentAccessCheck() local 1594 Entity.setDiag(Diag); in isMemberAccessibleForDeletion() 1638 switch (Entity.getKind()) { in CheckConstructorAccess() 1693 !Entity.getParent()) { in CheckConstructorAccess() [all …]
|
| H A D | SemaInit.cpp | 559 SemaRef, Entity, in PerformEmptyInit() 1010 if (!Entity.getParent()) in isIdiomaticBraceElisionEntity() 1149 if (Entity.getParent()) in warnBracedScalarInit() 1385 : Entity; in CheckSubElementType() 4076 Entity.getKind() != in TryConstructorInitialization() 5179 S, Entity, Kind, Args, T, Entity.getType(), Sequence, InitListSyntax); in TryValueInitialization() 6064 if (Entity.getDecl() && in getAssignmentAction() 6439 if (Entity.isParamOrTemplateParamKind() && Entity.getDecl()) { in PrintInitLocationNote() 6675 return getEntityLifetime(Entity->getParent(), Entity); in getEntityLifetime() 6689 return {Entity, Entity->isDefaultMemberInitializer() ? LK_Extended in getEntityLifetime() [all …]
|
| H A D | SemaTemplateInstantiate.cpp | 254 Inst.Entity = Entity; in InstantiatingTemplate() 481 if (Active.Entity) in Clear() 544 Decl *D = Active->Entity; in PrintInstantiationStack() 630 Active->Entity)) { in PrintInstantiationStack() 787 if (!Active->Entity) { in PrintInstantiationStack() 916 DeclarationName Entity; member in __anon0918bce90111::TemplateInstantiator 926 Entity(Entity) { } in TemplateInstantiator() 945 this->Entity = Entity; in setBase() 1894 SmallString<128> Entity; in createSubstDiag() local 1895 llvm::raw_svector_ostream OS(Entity); in createSubstDiag() [all …]
|
| H A D | SemaTemplate.cpp | 6254 if (Entity && Entity->hasAttr<DLLImportAttr>()) in isNullPointerValueTemplateArgument() 6495 ValueDecl *Entity = nullptr; in CheckTemplateArgumentAddressOfObjectOrFunction() local 6497 Entity = DRE->getDecl(); in CheckTemplateArgumentAddressOfObjectOrFunction() 6499 Entity = CUE->getGuidDecl(); in CheckTemplateArgumentAddressOfObjectOrFunction() 6526 if (!Entity) { in CheckTemplateArgumentAddressOfObjectOrFunction() 6534 if (isa<FieldDecl>(Entity) || isa<IndirectFieldDecl>(Entity)) { in CheckTemplateArgumentAddressOfObjectOrFunction() 6616 ArgType = Entity->getType(); in CheckTemplateArgumentAddressOfObjectOrFunction() 6825 InitializedEntity Entity = in CheckTemplateArgument() local 10750 DeclarationName Entity; member in __anon4bc1cdc51111::CurrentInstantiationRebuilder 10759 Loc(Loc), Entity(Entity) { } in CurrentInstantiationRebuilder() [all …]
|
| H A D | SemaLookup.cpp | 1519 static Module *getDefiningModule(Sema &S, Decl *Entity) { in getDefiningModule() argument 1524 Entity = Pattern; in getDefiningModule() 1527 Entity = Pattern; in getDefiningModule() 1530 Entity = Pattern; in getDefiningModule() 1531 } else if (VarDecl *VD = dyn_cast<VarDecl>(Entity)) { in getDefiningModule() 1533 Entity = Pattern; in getDefiningModule() 1540 return S.getOwningModule(Entity); in getDefiningModule() 1548 Module *M = CodeSynthesisContexts[I].Entity ? in getLookupModules() 4008 DeclContext *Entity = S->getLookupEntity(); in lookupInScope() local 4009 if (Entity) { in lookupInScope() [all …]
|
| H A D | SemaExprCXX.cpp | 896 InitializedEntity Entity = in BuildCXXThrow() local 1975 InitializedEntity Entity in BuildCXXNew() local 2331 InitializedEntity Entity in BuildCXXNew() local 2333 InitializationSequence InitSeq(*this, Entity, Kind, in BuildCXXNew() 3800 InitializedEntity Entity = in SemaBuiltinOperatorNewDeleteOverloaded() local 5907 return InitSeq.Diagnose(Self, Entity, Kind, From); in TryClassUnification() 5955 return InitSeq.Diagnose(Self, Entity, Kind, From); in TryClassUnification() 6029 InitializationSequence InitSeq(Self, Entity, Kind, Arg); in ConvertForConditional() 6864 InitializedEntity Entity = in FindCompositePointerType() local 6869 InitializationSequence E1ToC(*this, Entity, Kind, E1); in FindCompositePointerType() [all …]
|
| H A D | SemaCoroutine.cpp | 580 InitializedEntity Entity = InitializedEntity::InitializeVariable(VD); in buildCoroutinePromise() local 583 InitializationSequence InitSeq(*this, Entity, Kind, CtorArgExprs, in buildCoroutinePromise() 590 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, CtorArgExprs); in buildCoroutinePromise() 1535 InitializedEntity Entity = in makeGroDeclAndReturnStmt() local 1537 S.PerformCopyInitialization(Entity, SourceLocation(), ReturnValue); in makeGroDeclAndReturnStmt() 1552 InitializedEntity Entity = InitializedEntity::InitializeVariable(GroDecl); in makeGroDeclAndReturnStmt() local 1554 S.PerformCopyInitialization(Entity, SourceLocation(), ReturnValue); in makeGroDeclAndReturnStmt()
|
| H A D | Scope.cpp | 92 Entity = nullptr; in Init()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Initialization.h | 266 InitializedEntity Entity; in InitializeParameter() local 268 Entity.Type = in InitializeParameter() 270 Entity.Parent = nullptr; in InitializeParameter() 272 return Entity; in InitializeParameter() 280 InitializedEntity Entity; in InitializeParameter() local 283 Entity.Parent = nullptr; in InitializeParameter() 285 return Entity; in InitializeParameter() 291 InitializedEntity Entity; in InitializeTemplateParameter() local 293 Entity.Type = T; in InitializeTemplateParameter() 294 Entity.Parent = nullptr; in InitializeTemplateParameter() [all …]
|
| H A D | Scope.h | 205 DeclContext *Entity; variable 344 return isTemplateParamScope() ? nullptr : Entity; in getEntity() 349 DeclContext *getLookupEntity() const { return Entity; } in getLookupEntity() 354 Entity = E; in setEntity() 356 void setLookupEntity(DeclContext *E) { Entity = E; } in setLookupEntity()
|
| H A D | DelayedDiagnostic.h | 145 const AccessedEntity &Entity) { in makeAccess() argument 150 new (&DD.getAccessData()) AccessedEntity(Entity); in makeAccess()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Lex/ |
| H A D | PreprocessingRecord.cpp | 253 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-13.1/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | Materializer.h | 91 class Entity { 93 Entity() = default; 95 virtual ~Entity() = default; 122 uint32_t AddStructMember(Entity &entity); 124 typedef std::unique_ptr<Entity> EntityUP;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfCompileUnit.cpp | 1258 auto *Entity = Module->getEntity(); in constructImportedEntityDIE() local 1259 if (auto *NS = dyn_cast<DINamespace>(Entity)) in constructImportedEntityDIE() 1261 else if (auto *M = dyn_cast<DIModule>(Entity)) in constructImportedEntityDIE() 1263 else if (auto *SP = dyn_cast<DISubprogram>(Entity)) in constructImportedEntityDIE() 1265 else if (auto *T = dyn_cast<DIType>(Entity)) in constructImportedEntityDIE() 1270 EntityDie = getDIE(Entity); in constructImportedEntityDIE() 1298 auto *Die = Entity->getDIE(); in finishEntityDefinition() 1304 Label = dyn_cast<const DbgLabel>(Entity); in finishEntityDefinition() 1330 auto &Entity = getAbstractEntities()[Node]; in createAbstractEntity() local 1332 Entity = std::make_unique<DbgVariable>( in createAbstractEntity() [all …]
|
| H A D | DwarfDebug.h | 68 const DINode *Entity; variable 80 : Entity(N), InlinedAt(IA), SubclassID(ID) {} in DbgEntity() 85 const DINode *getEntity() const { return Entity; } in getEntity()
|
| H A D | DbgEntityHistoryCalculator.cpp | 147 InlinedEntity Entity = Record.first; in trimLocationRanges() local 148 const DILocalVariable *LocalVar = cast<DILocalVariable>(Entity.first); in trimLocationRanges() 151 if (const DILocation *InlinedAt = Entity.second) { in trimLocationRanges()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | Materializer.cpp | 29 uint32_t Materializer::AddStructMember(Entity &entity) { in AddStructMember() 48 class EntityPersistentVariable : public Materializer::Entity { 52 : Entity(), m_persistent_variable_sp(persistent_variable_sp), in EntityPersistentVariable() 412 class EntityVariable : public Materializer::Entity { 415 : Entity(), m_variable_sp(variable_sp), m_is_reference(false), in EntityVariable() 765 class EntityResultVariable : public Materializer::Entity { 770 : Entity(), m_type(type), m_is_program_reference(is_program_reference), in EntityResultVariable() 1050 class EntitySymbol : public Materializer::Entity { 1052 EntitySymbol(const Symbol &symbol) : Entity(), m_symbol(symbol) { in EntitySymbol() 1168 class EntityRegister : public Materializer::Entity { [all …]
|
| /freebsd-13.1/lib/libfetch/ |
| H A D | http.errors | 35 413 PROTO Request Entity Too Large
|
| /freebsd-13.1/sys/contrib/openzfs/module/icp/asm-x86_64/modes/ |
| H A D | THIRDPARTYLICENSE.openssl | 16 "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-13.1/contrib/llvm-project/llvm/lib/Demangle/ |
| H A D | ItaniumDemangle.cpp | 416 Name = static_cast<const LocalName *>(Name)->Entity; in getFunctionBaseName() 461 Name = LN->Entity; in getFunctionDeclContextName() 547 N = static_cast<const LocalName *>(N)->Entity; in isCtorOrDtor()
|
| /freebsd-13.1/contrib/googletest/googlemock/scripts/generator/ |
| H A D | LICENSE | 16 "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-13.1/contrib/serf/ |
| H A D | LICENSE | 15 "Legal Entity" shall mean the union of the acting entity and all 23 "You" (or "Your") shall mean an individual or Legal Entity 52 or by an individual or Legal Entity authorized to submit on behalf of 62 "Contributor" shall mean Licensor and any individual or Legal Entity
|
| /freebsd-13.1/sys/contrib/openzfs/contrib/pyzfs/ |
| H A D | LICENSE | 16 "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-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | LLVMContextImpl.h | 1154 Metadata *Entity; 1159 MDNodeKeyImpl(unsigned Tag, Metadata *Scope, Metadata *Entity, Metadata *File, 1161 : Tag(Tag), Scope(Scope), Entity(Entity), File(File), Line(Line), 1164 : Tag(N->getTag()), Scope(N->getRawScope()), Entity(N->getRawEntity()), 1169 Entity == RHS->getRawEntity() && File == RHS->getFile() && 1174 return hash_combine(Tag, Scope, Entity, File, Line, Name);
|
| /freebsd-13.1/contrib/llvm-project/clang/ |
| H A D | LICENSE.TXT | 19 "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
|