Home
last modified time | relevance | path

Searched refs:Diagnostic (Results 1 – 16 of 16) sorted by relevance

/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
DL.java25 import javax.tools.Diagnostic;
26 import javax.tools.Diagnostic.Kind;
53 printMessage(null, Diagnostic.Kind.NOTE, String.format(msg, args)); in d()
59 printMessage(element, Diagnostic.Kind.NOTE, String.format(msg, args)); in d()
65 printMessage(null, Diagnostic.Kind.NOTE, in d()
99 printMessage(null, Diagnostic.Kind.ERROR, fullMsg); in e()
105 printMessage(element, Diagnostic.Kind.ERROR, fullMsg); in e()
111 printMessage(null, Diagnostic.Kind.ERROR, in e()
115 private static void printMessage(Element element, Diagnostic.Kind kind, String message) { in printMessage()
117 if (kind == Diagnostic.Kind.ERROR) { in printMessage()
[all …]
/frameworks/compile/mclinker/lib/LD/
DDiagnostic.cpp23 Diagnostic::Diagnostic(DiagnosticEngine& pEngine) : m_Engine(pEngine) { in Diagnostic() function in mcld::Diagnostic
26 Diagnostic::~Diagnostic() { in ~Diagnostic()
31 void Diagnostic::format(std::string& pOutStr) const { in format()
38 const char* Diagnostic::findMatch(char pVal, in findMatch()
70 void Diagnostic::format(const char* pBegin, in format()
DDiagnosticPrinter.cpp26 const Diagnostic& pInfo) { in handleDiagnostic()
DAndroid.mk14 Diagnostic.cpp \
DDiagnosticInfos.cpp113 Diagnostic info(pEngine); in process()
DTextDiagnosticPrinter.cpp47 const Diagnostic& pInfo) { in handleDiagnostic()
/frameworks/compile/mclinker/include/mcld/LD/
DDiagnostic.h22 class Diagnostic {
24 explicit Diagnostic(DiagnosticEngine& pEngine);
26 ~Diagnostic();
DDiagnosticPrinter.h38 const Diagnostic& pInfo);
DTextDiagnosticPrinter.h32 const Diagnostic& pInfo);
DDiagnosticEngine.h88 friend class Diagnostic; variable
/frameworks/compile/slang/
Dslang_diagnostic_buffer.h48 const clang::Diagnostic &Info) override;
Dslang_diagnostic_buffer.cpp37 clang::Diagnostic const &Info) { in HandleDiagnostic()
Dslang_rs_ast_replace.h26 class Diagnostic; variable
Dslang.h56 class Diagnostic; variable
DRSCCOptions.td127 // Diagnostic Options
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
DAnnotationAnalyzer.java37 import javax.tools.Diagnostic;
61 public void printMessage(Diagnostic.Kind kind, String message, Element element) { in AnnotationAnalyzer()