reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/unittests/Symbol/TestClangASTContext.cpp
   61       context->hasSameType(GetBasicQualType(eBasicTypeBool), context->BoolTy));
   61       context->hasSameType(GetBasicQualType(eBasicTypeBool), context->BoolTy));
   63       context->hasSameType(GetBasicQualType(eBasicTypeChar), context->CharTy));
   63       context->hasSameType(GetBasicQualType(eBasicTypeChar), context->CharTy));
   64   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeChar16),
   65                                    context->Char16Ty));
   66   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeChar32),
   67                                    context->Char32Ty));
   68   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeDouble),
   69                                    context->DoubleTy));
   70   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeDoubleComplex),
   71                                    context->DoubleComplexTy));
   72   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeFloat),
   73                                    context->FloatTy));
   74   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeFloatComplex),
   75                                    context->FloatComplexTy));
   77       context->hasSameType(GetBasicQualType(eBasicTypeHalf), context->HalfTy));
   77       context->hasSameType(GetBasicQualType(eBasicTypeHalf), context->HalfTy));
   79       context->hasSameType(GetBasicQualType(eBasicTypeInt), context->IntTy));
   79       context->hasSameType(GetBasicQualType(eBasicTypeInt), context->IntTy));
   80   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeInt128),
   81                                    context->Int128Ty));
   83       context->hasSameType(GetBasicQualType(eBasicTypeLong), context->LongTy));
   83       context->hasSameType(GetBasicQualType(eBasicTypeLong), context->LongTy));
   84   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeLongDouble),
   85                                    context->LongDoubleTy));
   87       context->hasSameType(GetBasicQualType(eBasicTypeLongDoubleComplex),
   88                            context->LongDoubleComplexTy));
   89   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeLongLong),
   90                                    context->LongLongTy));
   91   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeNullPtr),
   92                                    context->NullPtrTy));
   93   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeObjCClass),
   94                                    context->getObjCClassType()));
   95   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeObjCID),
   96                                    context->getObjCIdType()));
   97   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeObjCSel),
   98                                    context->getObjCSelType()));
   99   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeShort),
  100                                    context->ShortTy));
  101   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeSignedChar),
  102                                    context->SignedCharTy));
  103   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeUnsignedChar),
  104                                    context->UnsignedCharTy));
  105   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeUnsignedInt),
  106                                    context->UnsignedIntTy));
  107   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeUnsignedInt128),
  108                                    context->UnsignedInt128Ty));
  109   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeUnsignedLong),
  110                                    context->UnsignedLongTy));
  111   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeUnsignedLongLong),
  112                                    context->UnsignedLongLongTy));
  113   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeUnsignedShort),
  114                                    context->UnsignedShortTy));
  116       context->hasSameType(GetBasicQualType(eBasicTypeVoid), context->VoidTy));
  116       context->hasSameType(GetBasicQualType(eBasicTypeVoid), context->VoidTy));
  117   EXPECT_TRUE(context->hasSameType(GetBasicQualType(eBasicTypeWChar),
  118                                    context->WCharTy));