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

Declarations

tools/clang/include/clang/Basic/FixedPoint.h
  172   int compare(const APFixedPoint &Other) const;

References

tools/clang/include/clang/Basic/FixedPoint.h
  174     return compare(Other) == 0;
  177     return compare(Other) != 0;
  179   bool operator>(const APFixedPoint &Other) const { return compare(Other) > 0; }
  180   bool operator<(const APFixedPoint &Other) const { return compare(Other) < 0; }
  182     return compare(Other) >= 0;
  185     return compare(Other) <= 0;