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

/freebsd-9.3-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-9.3-release/sys/contrib/dev/acpica/compiler/
H A Ddtcompile.c411 UINT8 FieldType; local
460 FieldType = DtGetFieldType (Info);
463 switch (FieldType)
536 FieldLength, FieldType, Info->Flags);
/freebsd-9.3-release/sys/contrib/dev/acpica/executer/
H A Dexprep.c441 if (Info->FieldType != ACPI_TYPE_LOCAL_INDEX_FIELD)
461 ObjDesc = AcpiUtCreateInternalObject (Info->FieldType);
481 switch (Info->FieldType)
/freebsd-9.3-release/sys/contrib/dev/acpica/dispatcher/
H A Ddsfield.c306 (char *) &Arg->Named.Name, Info->FieldType,
417 Info.FieldType = ACPI_TYPE_LOCAL_REGION_FIELD;
619 Info.FieldType = ACPI_TYPE_LOCAL_BANK_FIELD;
696 Info.FieldType = ACPI_TYPE_LOCAL_INDEX_FIELD;
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DInitialization.h186 InitializedEntity(IdentifierInfo *VarID, QualType FieldType, SourceLocation Loc) argument
187 : Kind(EK_LambdaCapture), Parent(0), Type(FieldType)
313 QualType FieldType,
315 return InitializedEntity(VarID, FieldType, Loc);
312 InitializeLambdaCapture(IdentifierInfo *VarID, QualType FieldType, SourceLocation Loc) argument
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGClass.cpp542 QualType FieldType = Field->getType(); local
556 FieldType = MemberInit->getIndirectMember()->getAnonField()->getType();
567 = CGF.getContext().getAsConstantArrayType(FieldType);
583 CGF.EmitAggregateCopy(LHS.getAddress(), Src.getAddress(), FieldType,
598 QualType FieldType = Field->getType(); local
599 switch (getEvaluationKind(FieldType)) {
618 QualType BaseElementTy = getContext().getBaseElementType(FieldType);
637 EmitAggMemberInitializer(*this, LHS, Init, ArrayIndexVar, FieldType,
644 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
646 pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
925 QualType FieldType = Field->getType(); local
987 QualType FieldType = AggregatedInits[i]->getMember()->getType(); local
[all...]
H A DCGExprConstant.cpp1296 QualType FieldType = I->getType(); local
1298 if (CGM.getTypes().isZeroInitializable(FieldType))
1302 FillInNullDataMemberPointers(CGM, FieldType, Elements, FieldOffset);
H A DCGExpr.cpp2587 QualType FieldType = Field->getType(); local
2589 if (!FieldType->isReferenceType())
2596 assert(!FieldType.getObjCGCAttr() && "fields cannot have GC attrs");
2602 llvm::Type *llvmType = ConvertTypeForMem(FieldType);
2612 return MakeAddrLValue(V, FieldType, Alignment);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclCXX.cpp3916 QualType FieldType = Context.getBaseElementType(Field->getType()); local
3918 const RecordType* RT = FieldType->getAs<RecordType>();
3936 << FieldType);
5064 QualType FieldType = S.Context.getBaseElementType(FD->getType()); local
5065 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
5070 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
5073 << MD->getParent() << FD << FieldType << /*Reference*/0; local
5080 if (!inUnion() && FieldType.isConstQualified() &&
5089 if (inUnion() && !FieldType.isConstQualified())
5094 if (FieldType
5097 << MD->getParent() << FD << FieldType; local
5105 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0; local
5519 QualType FieldType = S.Context.getBaseElementType(FI->getType()); local
9170 QualType FieldType = Context.getBaseElementType(Field->getType()); local
9442 QualType FieldType = Field->getType().getNonReferenceType(); local
9560 QualType FieldType = Context.getBaseElementType(Field->getType()); local
9871 QualType FieldType = Field->getType().getNonReferenceType(); local
9988 QualType FieldType = Context.getBaseElementType(Field->getType()); local
10156 QualType FieldType = Context.getBaseElementType(F->getType()); local
[all...]
H A DSemaDeclAttr.cpp3282 QualType FieldType = Field->getType(); local
3283 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3284 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3286 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
3287 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
3288 : S.Context.getTypeAlign(FieldType);
H A DSemaInit.cpp1981 QualType FieldType = Field->getType(); local
1987 FieldType, 0, 0, Index,
H A DSemaExpr.cpp11600 VarDecl *Var, QualType FieldType,
11608 = FieldDecl::Create(S.Context, Lambda, Loc, Loc, 0, FieldType,
11609 S.Context.getTrivialTypeSourceInfo(FieldType, Loc),
11642 QualType BaseType = FieldType;
11598 addAsFieldToClosureType(Sema &S, LambdaScopeInfo *LSI, VarDecl *Var, QualType FieldType, QualType DeclRefType, SourceLocation Loc, bool RefersToEnclosingLocal) argument
H A DSemaDecl.cpp12111 QualType FieldType = I->getType(); local
12112 if (FieldType->isIncompleteType() ||
12113 !Context.getTypeSizeInChars(FieldType).isZero())
/freebsd-9.3-release/sys/contrib/dev/acpica/include/
H A Daclocal.h294 UINT8 FieldType; member in struct:acpi_create_field_info
/freebsd-9.3-release/sys/contrib/dev/acpica/common/
H A Ddmtbinfo.c1632 #define ACPI_DM_GENERIC_ENTRY(FieldType, FieldName)\
1633 {{FieldType, 0, FieldName, 0}, ACPI_DMT_TERMINATOR}

Completed in 305 milliseconds