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

References

tools/clang/include/clang/AST/ExternalASTSource.h
  364       Ptr = 0;
  368     this->Ptr = reinterpret_cast<uint64_t>(Ptr);
  375       Ptr = 0;
  377       Ptr = (Offset << 1) | 0x01;
  385   explicit operator bool() const { return Ptr != 0; }
  390   bool isValid() const { return Ptr != 0; }
  393   bool isOffset() const { return Ptr & 0x01; }
  404       Ptr = reinterpret_cast<uint64_t>((Source->*Get)(Ptr >> 1));
  404       Ptr = reinterpret_cast<uint64_t>((Source->*Get)(Ptr >> 1));
  406     return reinterpret_cast<T*>(Ptr);