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

References

tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
  180   inline static ValueType getValueType();
  190 inline ValueType::SizeType ValueType::getSizeType(unsigned nbytes) {
  202 inline ValueType ValueType::getValueType<void>() {
  207 inline ValueType ValueType::getValueType<bool>() {
  212 inline ValueType ValueType::getValueType<int8_t>() {
  217 inline ValueType ValueType::getValueType<uint8_t>() {
  222 inline ValueType ValueType::getValueType<int16_t>() {
  227 inline ValueType ValueType::getValueType<uint16_t>() {
  232 inline ValueType ValueType::getValueType<int32_t>() {
  237 inline ValueType ValueType::getValueType<uint32_t>() {
  242 inline ValueType ValueType::getValueType<int64_t>() {
  247 inline ValueType ValueType::getValueType<uint64_t>() {
  252 inline ValueType ValueType::getValueType<float>() {
  257 inline ValueType ValueType::getValueType<double>() {
  262 inline ValueType ValueType::getValueType<long double>() {
  267 inline ValueType ValueType::getValueType<StringRef>() {
  272 inline ValueType ValueType::getValueType<void*>() {
  532      : SExpr(COP_Literal), ValType(ValueType::getValueType<void>()), Cexpr(C) {}
  533   Literal(ValueType VT) : SExpr(COP_Literal), ValType(VT) {}
  541   ValueType valueType() const { return ValType; }
  559   const ValueType ValType;
  583   case ValueType::BT_Void:
  585   case ValueType::BT_Bool:
  587   case ValueType::BT_Int: {
  589     case ValueType::ST_8:
  594     case ValueType::ST_16:
  599     case ValueType::ST_32:
  604     case ValueType::ST_64:
  613   case ValueType::BT_Float: {
  615     case ValueType::ST_32:
  617     case ValueType::ST_64:
  623   case ValueType::BT_String:
  625   case ValueType::BT_Pointer:
  627   case ValueType::BT_ValueRef:
tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
  556       ValueType VT = E->valueType();
  558       case ValueType::BT_Void:
  561       case ValueType::BT_Bool:
  567       case ValueType::BT_Int:
  569         case ValueType::ST_8:
  575         case ValueType::ST_16:
  581         case ValueType::ST_32:
  587         case ValueType::ST_64:
  597       case ValueType::BT_Float:
  599         case ValueType::ST_32:
  602         case ValueType::ST_64:
  609       case ValueType::BT_String:
  614       case ValueType::BT_Pointer:
  617       case ValueType::BT_ValueRef: