Searched defs:pID (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
H A DMsgHandling.h31 MsgHandler unreachable(unsigned int pID);
32 MsgHandler fatal(unsigned int pID);
33 MsgHandler error(unsigned int pID);
34 MsgHandler warning(unsigned int pID);
35 MsgHandler debug(unsigned int pID);
36 MsgHandler note(unsigned int pID);
37 MsgHandler ignore(unsigned int pID);
44 inline mcld::MsgHandler mcld::unreachable(unsigned int pID) argument
46 return getDiagnosticEngine().report(pID, DiagnosticEngine::Unreachable);
49 inline mcld::MsgHandler mcld::fatal(unsigned int pID) argument
54 error(unsigned int pID) argument
59 warning(unsigned int pID) argument
64 debug(unsigned int pID) argument
69 note(unsigned int pID) argument
74 ignore(unsigned int pID) argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DDiagnosticEngine.cpp70 DiagnosticEngine::report(uint16_t pID, DiagnosticEngine::Severity pSeverity) argument
72 m_State.ID = pID;
H A DDiagnosticInfos.cpp74 static const DiagStaticInfo* getDiagInfo(unsigned int pID, bool pInLoC = false) argument
79 DiagStaticInfo key = { static_cast<uint16_t>(pID), DiagnosticEngine::None, 0, 0 };
82 if (result == (static_info + info_size) || result->ID != pID)
99 llvm::StringRef DiagnosticInfos::getDescription(unsigned int pID, bool pInLoC) const argument
101 return getDiagInfo(pID, pInLoC)->getDescription();

Completed in 129 milliseconds