Searched defs:CT (Results 1 - 23 of 23) sorted by relevance

/external/clang/lib/AST/
H A DMangle.cpp70 CXXCtorType CT, const BlockDecl *BD,
75 mangleCXXCtor(CD, CT, Out);
69 mangleCtorBlock(const CXXConstructorDecl *CD, CXXCtorType CT, const BlockDecl *BD, raw_ostream &ResStream) argument
H A DExprClassification.cpp568 CanQualType CT = Ctx.getCanonicalType(E->getType()); local
570 if (CT.isConstQualified())
574 if (CT->isArrayType())
577 if (CT->isIncompleteType())
581 if (const RecordType *R = CT->getAs<RecordType>()) {
H A DType.cpp356 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
357 return CT->getElementType()->isFloatingType();
739 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
740 return CT->getElementType()->isFloatingType();
802 } else if (const ComplexType *CT = dyn_cast<ComplexType>(T)) {
803 if (CT->getElementType()->isRealFloatingType())
1974 const Type *CT = T->getCanonicalTypeInternal().getTypePtr(); local
1975 ensure(CT);
1977 CT->TypeBits.CacheValidAndVisibility;
1979 CT
[all...]
H A DExprConstant.cpp109 const ComplexType *CT = Type->castAs<ComplexType>(); local
110 Type = CT->getElementType();
H A DASTContext.cpp1166 if (const ComplexType* CT = T->getAs<ComplexType>())
1167 T = CT->getElementType().getTypePtr();
1490 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
1491 return QualType(CT, 0);
3551 if (const ComplexType *CT = T->getAs<ComplexType>())
3552 return getFloatingRank(CT->getElementType());
4419 if (const ComplexType *CT = T->getAs<ComplexType>()) {
4421 getObjCEncodingForTypeImpl(CT->getElementType(), S, false, false, 0, false,
5146 QualType CT = Ty->getCanonicalTypeInternal(); local
5147 while (const ArrayType *AT = dyn_cast<ArrayType>(CT))
[all...]
/external/llvm/include/llvm/Support/
H A DGetElementPtrTypeIterator.h58 CompositeType *CT = cast<CompositeType>(CurTy); local
59 return CT->getTypeAtIndex(getOperand());
69 if (CompositeType *CT = dyn_cast<CompositeType>(CurTy)) {
70 CurTy = CT->getTypeAtIndex(getOperand());
/external/clang/test/FixIt/
H A Dfixit.cpp21 template<int Value> struct CT { }; // expected-note{{previous use is here}} struct
23 CT<10 >> 2> ct; // expected-warning{{require parentheses}}
30 struct CT<0> { }; // expected-error{{'template<>'}} struct
32 template<> union CT<1> { }; // expected-error{{tag type}} union
/external/clang/tools/libclang/
H A DCXType.cpp98 CXType CT = { TK, { TK == CXType_Invalid ? 0 : T.getAsOpaquePtr(), TU }}; local
99 return CT;
104 static inline QualType GetQualType(CXType CT) { argument
105 return QualType::getFromOpaquePtr(CT.data[0]);
108 static inline CXTranslationUnit GetTU(CXType CT) { argument
109 return static_cast<CXTranslationUnit>(CT.data[1]);
252 CXType clang_getCanonicalType(CXType CT) { argument
253 if (CT.kind == CXType_Invalid)
254 return CT;
256 QualType T = GetQualType(CT);
266 clang_isConstQualifiedType(CXType CT) argument
271 clang_isVolatileQualifiedType(CXType CT) argument
276 clang_isRestrictQualifiedType(CXType CT) argument
281 clang_getPointeeType(CXType CT) argument
309 clang_getTypeDeclaration(CXType CT) argument
524 clang_getElementType(CXType CT) argument
547 clang_getNumElements(CXType CT) argument
567 clang_getArrayElementType(CXType CT) argument
584 clang_getArraySize(CXType CT) argument
[all...]
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp867 CanThrowResult CT = canDynamicCastThrow(cast<CXXDynamicCastExpr>(E)); local
868 if (CT == CT_Can)
869 return CT;
870 return mergeCanThrow(CT, canSubExprsThrow(*this, E));
886 CanThrowResult CT; local
888 CT = CT_Dependent;
890 CT = CT_Cannot;
892 CT = canCalleeThrow(*this, E, CE->getCalleeDecl());
893 if (CT == CT_Can)
894 return CT;
900 CanThrowResult CT = canCalleeThrow(*this, E, local
909 CanThrowResult CT = CT_Cannot; local
918 CanThrowResult CT; local
929 CanThrowResult CT; local
948 CanThrowResult CT = canCalleeThrow(*this, E, local
1000 CanThrowResult CT = E->isTypeDependent() ? CT_Dependent : CT_Cannot; local
[all...]
H A DSemaPseudoObject.cpp912 QualType CT = Conversion->getConversionType().getNonReferenceType(); local
913 if (CT->isIntegralOrEnumerationType()) {
917 else if (CT->isObjCIdType() ||CT->isBlockPointerType()) {
H A DSemaCast.cpp302 static bool tryDiagnoseOverloadedCast(Sema &S, CastType CT, argument
306 switch (CT) {
326 = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(),
328 : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range,
369 << CT << srcType << destType
H A DSemaInit.cpp2297 const ComplexType *CT = Parent.getType()->getAs<ComplexType>(); local
2298 assert(CT && "Unexpected type");
2300 Type = CT->getElementType();
H A DSemaDecl.cpp4456 CanQualType CT = Data->S->Context.getCanonicalType(T); local
4458 Name = Data->S->Context.DeclarationNames.getCXXDestructorName(CT);
H A DSemaDeclCXX.cpp3585 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType(); local
3586 if (CT != Info.AbstractType) return;
H A DSemaExpr.cpp530 ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT, argument
535 (CT == VariadicMethod ||
557 << E->getType() << CT))
577 << E->getType() << CT);
593 << CT)) {
3037 if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>())
3038 return CT->getElementType();
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1378 QualType CT = Ctx.getCanonicalType(T); local
1379 if (CT.isConstQualified()) {
1391 = getBindingForDerivedDefaultValue(B, MS, R, CT))
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2415 LandingPadInst::ClauseType CT = local
2416 LandingPadInst::ClauseType(Record[Idx++]); (void)CT;
2424 assert((CT != LandingPadInst::Catch ||
2427 assert((CT != LandingPadInst::Filter ||
/external/webkit/Source/WebKit/android/content/
H A Daddress_detector.cpp677 CT = 7, // CT Connecticut enumerator in enum:USState
739 CT, CT, CT, CT, CT, CT, CT, CT, C
[all...]
/external/clang/tools/c-index-test/
H A Dc-index-test.c652 CXType CT = clang_getCanonicalType(T); local
653 if (!clang_equalTypes(T, CT)) {
654 CXString CS = clang_getTypeKindSpelling(CT.kind);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp3021 /// getConstraintGenerality - Return an integer indicating how general CT
3023 static unsigned getConstraintGenerality(TargetLowering::ConstraintType CT) { argument
3024 switch (CT) {
/external/llvm/lib/VMCore/
H A DInstructions.cpp1356 CompositeType *CT = dyn_cast<CompositeType>(Agg); local
1357 if (!CT || CT->isPointerTy()) return 0;
1359 if (!CT->indexValid(Index)) return 0;
1360 Agg = CT->getTypeAtIndex(Index);
/external/qemu/
H A Dppc-dis.c549 /* The CT field in an X form instruction. */
550 #define CT CRFS + 1
552 #define MO CT
558 #define D CT + 1
3477 { "icbt", X(31,22), X_MASK, BOOKE|PPCE300, { CT, RA, RB } },
3502 { "icbte", X(31,30), X_MASK, BOOKE64, { CT, RA, RB } },
3606 { "dcbtstls",X(31,134), X_MASK, PPCCHLK, { CT, RA, RB }},
3626 { "dcbtstlse",X(31,142),X_MASK, PPCCHLK64, { CT, RA, RB }},
3655 { "dcbtls", X(31,166), X_MASK, PPCCHLK, { CT, RA, RB }},
3656 { "dcbtlse", X(31,174), X_MASK, PPCCHLK64, { CT, R
546 #define CT macro
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene.analysis_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 651 milliseconds