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

References

tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
  107   if (!ast)
  122     if (width == ast->getTypeSize(ast->LongTy))
  122     if (width == ast->getTypeSize(ast->LongTy))
  123       return CompilerType(ClangASTContext::GetASTContext(ast),
  124                           ast->LongTy.getAsOpaquePtr());
  125     if (width == ast->getTypeSize(ast->LongLongTy))
  125     if (width == ast->getTypeSize(ast->LongLongTy))
  126       return CompilerType(ClangASTContext::GetASTContext(ast),
  127                           ast->LongLongTy.getAsOpaquePtr());
  130     if (width == ast->getTypeSize(ast->UnsignedLongTy))
  130     if (width == ast->getTypeSize(ast->UnsignedLongTy))
  131       return CompilerType(ClangASTContext::GetASTContext(ast),
  132                           ast->UnsignedLongTy.getAsOpaquePtr());
  133     if (width == ast->getTypeSize(ast->UnsignedLongLongTy))
  133     if (width == ast->getTypeSize(ast->UnsignedLongLongTy))
  134       return CompilerType(ClangASTContext::GetASTContext(ast),
  135                           ast->UnsignedLongLongTy.getAsOpaquePtr());
  138     if (width == ast->getTypeSize(ast->WCharTy))
  138     if (width == ast->getTypeSize(ast->WCharTy))
  139       return CompilerType(ClangASTContext::GetASTContext(ast),
  140                           ast->WCharTy.getAsOpaquePtr());
  143     return CompilerType(ClangASTContext::GetASTContext(ast),
  144                         ast->Char16Ty.getAsOpaquePtr());
  146     return CompilerType(ClangASTContext::GetASTContext(ast),
  147                         ast->Char32Ty.getAsOpaquePtr());