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

References

tools/clang/lib/AST/APValue.cpp
  397     OS << "None";
  400     OS << "Indeterminate";
  403     OS << "Int: " << getInt();
  406     OS << "Float: " << GetApproxValue(getFloat());
  409     OS << "FixedPoint : " << getFixedPoint();
  412     OS << "Vector: ";
  413     getVectorElt(0).dump(OS);
  415       OS << ", ";
  416       getVectorElt(i).dump(OS);
  420     OS << "ComplexInt: " << getComplexIntReal() << ", " << getComplexIntImag();
  423     OS << "ComplexFloat: " << GetApproxValue(getComplexFloatReal())
  427     OS << "LValue: <todo>";
  430     OS << "Array: ";
  432       getArrayInitializedElt(I).dump(OS);
  433       if (I != getArraySize() - 1) OS << ", ";
  436       OS << getArraySize() - getArrayInitializedElts() << " x ";
  437       getArrayFiller().dump(OS);
  441     OS << "Struct ";
  443       OS << " bases: ";
  444       getStructBase(0).dump(OS);
  446         OS << ", ";
  447         getStructBase(I).dump(OS);
  451       OS << " fields: ";
  452       getStructField(0).dump(OS);
  454         OS << ", ";
  455         getStructField(I).dump(OS);
  460     OS << "Union: ";
  461     getUnionValue().dump(OS);
  464     OS << "MemberPointer: <todo>";
  467     OS << "AddrLabelDiff: <todo>";