HomeSort by relevance Sort by last modified time
    Searched defs:TL (Results 1 - 25 of 28) sorted by null

1 2

  /external/clang/lib/AST/
Comment.cpp 253 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc();
255 TL = TL.IgnoreParens();
257 if (TypedefTypeLoc *TypedefTL = dyn_cast<TypedefTypeLoc>(&TL)) {
261 TL = TSI->getTypeLoc().getUnqualifiedLoc();
265 if (QualifiedTypeLoc *QualifiedTL = dyn_cast<QualifiedTypeLoc>(&TL)) {
266 TL = QualifiedTL->getUnqualifiedLoc();
270 if (PointerTypeLoc *PointerTL = dyn_cast<PointerTypeLoc>(&TL)) {
271 TL = PointerTL->getPointeeLoc().getUnqualifiedLoc();
275 dyn_cast<BlockPointerTypeLoc>(&TL)) {
    [all...]
MicrosoftMangle.cpp 273 TypeLoc TL = VD->getTypeSourceInfo()->getTypeLoc();
274 QualType Ty = TL.getType();
276 mangleType(Ty, TL.getSourceRange());
283 mangleType(Ty.getLocalUnqualifiedType(), TL.getSourceRange());
    [all...]
ASTContext.cpp     [all...]
  /frameworks/native/services/sensorservice/
traits.h 42 namespace TL {
63 }; // namespace TL
104 enum { isStdUnsignedInt = TL::IndexOf<UnsignedInts, T>::value >= 0 };
105 enum { isStdSignedInt = TL::IndexOf<SignedInts, T>::value >= 0 };
106 enum { isStdIntegral = TL::IndexOf<OtherInts, T>::value >= 0 || isStdUnsignedInt || isStdSignedInt };
107 enum { isStdFloat = TL::IndexOf<Floats, T>::value >= 0 };
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 622 SubstTemplateTypeParmTypeLoc TL
624 TL.setNameLoc(IdentifierLoc);
626 SubstTemplateTypeParmPackTypeLoc TL
628 TL.setNameLoc(IdentifierLoc);
    [all...]
SemaTemplateVariadic.cpp 52 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
53 if (TL.getTypePtr()->isParameterPack())
54 Unexpanded.push_back(std::make_pair(TL.getTypePtr(), TL.getNameLoc()));
131 bool TraverseTypeLoc(TypeLoc TL) {
132 if ((!TL.getType().isNull() &&
133 TL.getType()->containsUnexpandedParameterPack()) ||
135 return inherited::TraverseTypeLoc(TL);
376 void Sema::collectUnexpandedParameterPacks(TypeLoc TL,
378 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseTypeLoc(TL);
    [all...]
SemaExceptionSpec.cpp 256 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens();
257 if (const FunctionTypeLoc *FTLoc = dyn_cast<FunctionTypeLoc>(&TL))
    [all...]
SemaTemplateInstantiate.cpp     [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
SemaStmt.cpp 232 PointerTypeLoc TL = cast<PointerTypeLoc>(TI->getTypeLoc());
235 << FixItHint::CreateRemoval(TL.getStarLoc());
    [all...]
SemaType.cpp     [all...]
SemaCodeComplete.cpp     [all...]
SemaDeclAttr.cpp     [all...]
SemaInit.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaChecking.cpp     [all...]
TreeTransform.h 303 QualType TransformType(TypeLocBuilder &TLB, TypeLoc TL);
523 FunctionProtoTypeLoc TL,
532 TemplateSpecializationTypeLoc TL,
537 DependentTemplateSpecializationTypeLoc TL,
543 DependentTemplateSpecializationTypeLoc TL,
569 QualType TransformReferenceType(TypeLocBuilder &TLB, ReferenceTypeLoc TL);
    [all...]