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

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DAllDiagnostics.h29 template <size_t SizeOfStr, typename FieldType>
31 char FIELD_TOO_SMALL[SizeOfStr <= FieldType(~0U) ? 1 : -1];
/freebsd-11.0-release/sys/contrib/dev/acpica/compiler/
H A Ddtcompile.c443 UINT8 FieldType; local
511 FieldType = DtGetFieldType (Info);
514 switch (FieldType)
611 FieldLength, FieldType, Info->Flags);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp300 llvm::Type *FieldType = getStorageType(Field); local
301 if (LayoutSize < getSize(FieldType))
302 FieldType = getByteArrayType(LayoutSize);
303 setBitFieldInfo(Field, CharUnits::Zero(), FieldType);
306 llvm::Type *FieldType = getStorageType(Field); local
321 StorageType = FieldType;
330 getAlignment(FieldType) > getAlignment(StorageType) ||
331 (getAlignment(FieldType) == getAlignment(StorageType) &&
332 getSize(FieldType) > getSize(StorageType)))
333 StorageType = FieldType;
[all...]
H A DCGClass.cpp706 QualType FieldType = Field->getType(); local
720 = CGF.getContext().getAsConstantArrayType(FieldType);
735 CGF.EmitAggregateCopy(LHS.getAddress(), Src.getAddress(), FieldType,
739 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
741 CGF.pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
754 QualType FieldType = Field->getType(); local
755 switch (getEvaluationKind(FieldType)) {
772 QualType BaseElementTy = getContext().getBaseElementType(FieldType);
790 EmitAggMemberInitializer(*this, LHS, Init, ArrayIndexVar, FieldType,
797 QualType::DestructionKind dtorKind = FieldType
1148 QualType FieldType = Field->getType(); local
1212 QualType FieldType = MemberInit->getAnyMember()->getType(); local
[all...]
H A DCGExpr.cpp3215 QualType FieldType = Field->getType(); local
3217 if (!FieldType->isReferenceType())
3223 llvm::Type *llvmType = ConvertTypeForMem(FieldType);
3228 return MakeAddrLValue(V, FieldType, FieldAlignSource);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCUDA.cpp367 const RecordType *FieldType = local
369 if (!FieldType) {
373 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(FieldType->getDecl());
H A DSemaDeclCXX.cpp4322 QualType FieldType = Context.getBaseElementType(Field->getType()); local
4324 const RecordType* RT = FieldType->getAs<RecordType>();
4342 << FieldType);
5640 QualType FieldType = S.Context.getBaseElementType(FD->getType()); local
5641 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
5646 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
5649 << MD->getParent() << FD << FieldType << /*Reference*/0; local
5656 if (!inUnion() && FieldType.isConstQualified() &&
5665 if (inUnion() && !FieldType.isConstQualified())
5670 if (FieldType
5673 << MD->getParent() << FD << FieldType; local
5681 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0; local
6090 QualType FieldType = S.Context.getBaseElementType(FI->getType()); local
10042 QualType FieldType = Context.getBaseElementType(Field->getType()); local
10321 QualType FieldType = Field->getType().getNonReferenceType(); local
10437 QualType FieldType = Context.getBaseElementType(Field->getType()); local
10753 QualType FieldType = Field->getType().getNonReferenceType(); local
10867 QualType FieldType = Context.getBaseElementType(Field->getType()); local
11045 QualType FieldType = Context.getBaseElementType(F->getType()); local
[all...]
H A DSemaLambda.cpp1395 QualType FieldType = Field->getType(); local
1405 QualType BaseType = FieldType;
1450 Var->getIdentifier(), FieldType, Loc));
H A DSemaDeclAttr.cpp2977 QualType FieldType = Field->getType(); local
2983 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2984 S.Context.getTypeAlign(FieldType) > FirstAlign) {
2986 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
2987 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
2988 : S.Context.getTypeAlign(FieldType);
H A DSemaInit.cpp2271 QualType FieldType = Field->getType(); local
2277 FieldType, nullptr, nullptr, Index,
H A DSemaDecl.cpp13766 QualType FieldType = I->getType(); local
13767 if (FieldType->isIncompleteType() ||
13768 !Context.getTypeSizeInChars(FieldType).isZero())
H A DSemaExpr.cpp13064 QualType FieldType, QualType DeclRefType,
13071 = FieldDecl::Create(S.Context, Lambda, Loc, Loc, nullptr, FieldType,
13072 S.Context.getTrivialTypeSourceInfo(FieldType, Loc),
13063 addAsFieldToClosureType(Sema &S, LambdaScopeInfo *LSI, VarDecl *Var, QualType FieldType, QualType DeclRefType, SourceLocation Loc, bool RefersToCapturedVariable) argument
/freebsd-11.0-release/sys/contrib/dev/acpica/components/executer/
H A Dexprep.c453 if (Info->FieldType != ACPI_TYPE_LOCAL_INDEX_FIELD)
473 ObjDesc = AcpiUtCreateInternalObject (Info->FieldType);
493 switch (Info->FieldType)
/freebsd-11.0-release/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsfield.c428 (char *) &Arg->Named.Name, Info->FieldType,
547 Info.FieldType = ACPI_TYPE_LOCAL_REGION_FIELD;
756 Info.FieldType = ACPI_TYPE_LOCAL_BANK_FIELD;
834 Info.FieldType = ACPI_TYPE_LOCAL_INDEX_FIELD;
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DInitialization.h189 InitializedEntity(IdentifierInfo *VarID, QualType FieldType, SourceLocation Loc) argument
190 : Kind(EK_LambdaCapture), Parent(nullptr), Type(FieldType),
319 QualType FieldType,
321 return InitializedEntity(VarID, FieldType, Loc);
318 InitializeLambdaCapture(IdentifierInfo *VarID, QualType FieldType, SourceLocation Loc) argument
/freebsd-11.0-release/sys/contrib/dev/acpica/include/
H A Daclocal.h316 UINT8 FieldType; member in struct:acpi_create_field_info
/freebsd-11.0-release/sys/contrib/dev/acpica/common/
H A Ddmtbinfo.c2970 #define ACPI_DM_GENERIC_ENTRY(FieldType, FieldName) \
2971 {{FieldType, 0, FieldName, 0}, ACPI_DMT_TERMINATOR}

Completed in 203 milliseconds