Home | History | Annotate | Download | only in libclang

Lines Matching full:tkind

437 #define TKIND(X) case CXType_##X: s = ""  #X  ""; break
439 TKIND(Invalid);
440 TKIND(Unexposed);
441 TKIND(Void);
442 TKIND(Bool);
443 TKIND(Char_U);
444 TKIND(UChar);
445 TKIND(Char16);
446 TKIND(Char32);
447 TKIND(UShort);
448 TKIND(UInt);
449 TKIND(ULong);
450 TKIND(ULongLong);
451 TKIND(UInt128);
452 TKIND(Char_S);
453 TKIND(SChar);
455 TKIND(Short);
456 TKIND(Int);
457 TKIND(Long);
458 TKIND(LongLong);
459 TKIND(Int128);
460 TKIND(Float);
461 TKIND(Double);
462 TKIND(LongDouble);
463 TKIND(NullPtr);
464 TKIND(Overload);
465 TKIND(Dependent);
466 TKIND(ObjCId);
467 TKIND(ObjCClass);
468 TKIND(ObjCSel);
469 TKIND(Complex);
470 TKIND(Pointer);
471 TKIND(BlockPointer);
472 TKIND(LValueReference);
473 TKIND(RValueReference);
474 TKIND(Record);
475 TKIND(Enum);
476 TKIND(Typedef);
477 TKIND(ObjCInterface);
478 TKIND(ObjCObjectPointer);
479 TKIND(FunctionNoProto);
480 TKIND(FunctionProto);
481 TKIND(ConstantArray);
482 TKIND(IncompleteArray);
483 TKIND(VariableArray);
484 TKIND(DependentSizedArray);
485 TKIND(Vector);
486 TKIND(MemberPointer);
488 #undef TKIND