HomeSort by relevance Sort by last modified time
    Searched defs:RawError (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/DebugInfo/PDB/Raw/
RawError.cpp 1 #include "llvm/DebugInfo/PDB/Raw/RawError.h"
45 char RawError::ID = 0;
47 RawError::RawError(raw_error_code C) : RawError(C, "") {}
49 RawError::RawError(const std::string &Context)
50 : RawError(raw_error_code::unspecified, Context) {}
52 RawError::RawError(raw_error_code C, const std::string &Context) : Code(C)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
RawError.cpp 1 #include "llvm/DebugInfo/PDB/Native/RawError.h"
53 char RawError::ID = 0;
55 RawError::RawError(raw_error_code C) : RawError(C, "") {}
57 RawError::RawError(const std::string &Context)
58 : RawError(raw_error_code::unspecified, Context) {}
60 RawError::RawError(raw_error_code C, const std::string &Context) : Code(C)
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
RawError.h 1 //===- RawError.h - Error extensions for raw PDB implementation -*- C++ -*-===//
32 class RawError : public ErrorInfo<RawError> {
35 RawError(raw_error_code C);
36 RawError(const std::string &Context);
37 RawError(raw_error_code C, const std::string &Context);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
RawError.h 1 //===- RawError.h - Error extensions for raw PDB implementation -*- C++ -*-===//
36 class RawError : public ErrorInfo<RawError> {
39 RawError(raw_error_code C);
40 RawError(const std::string &Context);
41 RawError(raw_error_code C, const std::string &Context);

Completed in 86 milliseconds