Searched refs:FieldType (Results 1 - 24 of 24) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DAllDiagnostics.h30 template <size_t SizeOfStr, typename FieldType>
32 static_assert(SizeOfStr <= FieldType(~0U), "Field too small!");
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGBlocks.h168 QualType FieldType; member in class:clang::CodeGen::CGBlockInfo::Capture
197 return FieldType;
201 QualType FieldType) {
205 v.FieldType = FieldType;
200 makeIndex(unsigned index, CharUnits offset, QualType FieldType) argument
H A DCGRecordLayoutBuilder.cpp324 llvm::Type *FieldType = getStorageType(Field); local
325 if (LayoutSize < getSize(FieldType))
326 FieldType = getByteArrayType(LayoutSize);
327 setBitFieldInfo(Field, CharUnits::Zero(), FieldType);
330 llvm::Type *FieldType = getStorageType(Field); local
344 StorageType = FieldType;
353 getAlignment(FieldType) > getAlignment(StorageType) ||
354 (getAlignment(FieldType) == getAlignment(StorageType) &&
355 getSize(FieldType) > getSize(StorageType)))
356 StorageType = FieldType;
[all...]
H A DCGClass.cpp642 QualType FieldType = Field->getType(); local
663 = CGF.getContext().getAsConstantArrayType(FieldType);
678 CGF.EmitAggregateCopy(LHS, Src, FieldType, CGF.getOverlapForFieldInit(Field),
682 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
684 CGF.pushEHDestroy(dtorKind, LHS.getAddress(CGF), FieldType);
694 QualType FieldType = Field->getType(); local
695 switch (getEvaluationKind(FieldType)) {
721 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
723 pushEHDestroy(dtorKind, LHS.getAddress(*this), FieldType);
1072 QualType FieldType local
1136 QualType FieldType = MemberInit->getAnyMember()->getType(); local
[all...]
H A DCGExpr.cpp4330 QualType FieldType = field->getType(); local
4336 rec->hasAttr<MayAliasAttr>() || FieldType->isVectorType()) {
4360 FieldTBAAInfo.AccessType = CGM.getTBAATypeInfo(FieldType);
4362 getContext().getTypeSizeInChars(FieldType).getQuantity();
4382 hasAnyVptr(FieldType, getContext()))
4399 if (FieldType->isReferenceType())
4401 addr, CGM.getTypes().ConvertTypeForMem(FieldType), field->getName());
4413 if (FieldType->isReferenceType()) {
4415 MakeAddrLValue(addr, FieldType, FieldBaseInfo, FieldTBAAInfo);
4422 FieldType
4448 QualType FieldType = Field->getType(); local
[all...]
H A DCGDebugInfo.cpp1449 llvm::DIType *FieldType = createFieldType( local
1452 elements.push_back(FieldType);
1511 llvm::DIType *FieldType;
1513 FieldType = createBitFieldType(field, RecordTy, RD);
1516 FieldType =
1521 elements.push_back(FieldType);
H A DCGBlocks.cpp346 QualType FieldType; member in struct:__anon411::BlockLayoutChunk
353 Capture(capture), Type(type), FieldType(fieldType) {}
361 auto C = CGBlockInfo::Capture::makeIndex(index, offset, FieldType);
/netbsd-current/sys/external/bsd/acpica/dist/compiler/
H A Ddtcompile.c492 UINT8 FieldType; local
568 FieldType = DtGetFieldType (Info);
571 if (FieldType != DT_FIELD_TYPE_INLINE_SUBTABLE &&
579 switch (FieldType)
676 FieldLength, FieldType, Info->Flags);
/netbsd-current/sys/external/bsd/acpica/dist/executer/
H A Dexprep.c453 if (Info->FieldType != ACPI_TYPE_LOCAL_INDEX_FIELD)
473 ObjDesc = AcpiUtCreateInternalObject (Info->FieldType);
493 switch (Info->FieldType)
/netbsd-current/sys/external/bsd/acpica/dist/dispatcher/
H A Ddsfield.c446 (char *) &Arg->Named.Name, Info->FieldType,
578 Info.FieldType = ACPI_TYPE_LOCAL_REGION_FIELD;
808 Info.FieldType = ACPI_TYPE_LOCAL_BANK_FIELD;
888 Info.FieldType = ACPI_TYPE_LOCAL_INDEX_FIELD;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DTypeBasedAliasAnalysis.cpp569 TBAAStructTypeNode FieldType) {
572 if (T == FieldType || hasField(T, FieldType))
641 TBAAStructTypeNode FieldType(SubobjectTag.getBaseType());
642 if (hasField(BaseType, FieldType)) {
568 hasField(TBAAStructTypeNode BaseType, TBAAStructTypeNode FieldType) argument
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DInitialization.h240 InitializedEntity(IdentifierInfo *VarID, QualType FieldType, SourceLocation Loc) argument
241 : Kind(EK_LambdaCapture), Type(FieldType) {
407 QualType FieldType,
409 return InitializedEntity(VarID, FieldType, Loc);
406 InitializeLambdaCapture(IdentifierInfo *VarID, QualType FieldType, SourceLocation Loc) argument
/netbsd-current/sys/external/bsd/acpica/dist/common/
H A Ddmtbinfo3.c756 #define ACPI_DM_GENERIC_ENTRY(FieldType, FieldName) \
757 {{FieldType, 0, FieldName, 0}, ACPI_DMT_TERMINATOR}
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-matchers.h1730 template <typename Class, typename FieldType>
1733 FieldMatcher(FieldType Class::*field,
1734 const Matcher<const FieldType&>& matcher)
1737 FieldMatcher(const std::string& field_name, FieldType Class::*field,
1738 const Matcher<const FieldType&>& matcher)
1781 const FieldType Class::*field_;
1782 const Matcher<const FieldType&> matcher_;
3737 template <typename Class, typename FieldType, typename FieldMatcher>
3739 internal::FieldMatcher<Class, FieldType> > Field(
3740 FieldType Clas
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaLambda.cpp1697 QualType FieldType = Capture.getCaptureType(); local
1709 TSI = Context.getTrivialTypeSourceInfo(FieldType, Loc);
1714 /*Id=*/nullptr, FieldType, TSI, /*BW=*/nullptr,
1718 if (!FieldType->isDependentType()) {
1719 if (RequireCompleteSizedType(Loc, FieldType,
1725 FieldType->isIncompleteType(&Def);
H A DSemaCUDA.cpp401 const RecordType *FieldType =
403 if (!FieldType) {
407 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(FieldType->getDecl());
H A DSemaDeclCXX.cpp5552 QualType FieldType = Context.getBaseElementType(Field->getType());
5554 const RecordType* RT = FieldType->getAs<RecordType>();
5572 << FieldType);
7592 QualType FieldType =
7596 FieldType, getDerived().getField(Field))))
8824 bool shouldDeleteForVariantObjCPtrMember(FieldDecl *FD, QualType FieldType);
8958 FieldDecl *FD, QualType FieldType) {
8962 if (!FieldType.hasNonTrivialObjCLifetime())
9013 QualType FieldType = S.Context.getBaseElementType(FD->getType());
9014 CXXRecordDecl *FieldRecord = FieldType
[all...]
H A DSemaDeclAttr.cpp3719 QualType FieldType = Field->getType(); local
3720 if (FieldType->isIncompleteType())
3727 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3728 S.Context.getTypeAlign(FieldType) > FirstAlign) {
3730 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
3731 unsigned FieldBits = isSize ? S.Context.getTypeSize(FieldType)
3732 : S.Context.getTypeAlign(FieldType);
H A DSemaInit.cpp2771 QualType FieldType = Field->getType();
2777 FieldType, nullptr, nullptr, Index,
H A DSemaDecl.cpp17544 QualType FieldType = I->getType(); local
17545 if (FieldType->isIncompleteType() ||
17546 !Context.getTypeSizeInChars(FieldType).isZero())
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DASTStructuralEquivalence.cpp1928 QualType FieldType = F->getType(); local
1930 while (const auto *ElabType = dyn_cast<ElaboratedType>(FieldType))
1931 FieldType = ElabType->getNamedType();
1933 if (const auto *RecType = dyn_cast<RecordType>(FieldType)) {
1936 if (Context.hasSameType(FieldType, AnonTy))
H A DDeclCXX.cpp1089 if (CXXRecordDecl *FieldType = T->getAsCXXRecordDecl()) {
1090 if (FieldType->hasDefinition() && !FieldType->allowConstDefaultInit())
/netbsd-current/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DMasmParser.cpp121 enum FieldType { enum in namespace:__anon2019
137 FieldInfo &addField(StringRef FieldName, FieldType FT,
183 FieldType FT;
204 FieldInitializer(FieldType FT) : FT(FT) {
338 FieldInfo(FieldType FT) : Contents(FT) {}
341 FieldInfo &StructInfo::addField(StringRef FieldName, FieldType FT,
3969 llvm_unreachable("Unhandled FieldType enum");
4122 llvm_unreachable("Unhandled FieldType enum");
4188 llvm_unreachable("Unhandled FieldType enum");
/netbsd-current/sys/external/bsd/acpica/dist/include/
H A Daclocal.h317 UINT8 FieldType; member in struct:acpi_create_field_info

Completed in 465 milliseconds