HomeSort by relevance Sort by last modified time
    Searched full:diagnostic (Results 126 - 150 of 1565) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/unittests/Basic/
DiagnosticTest.cpp 1 //===- unittests/Basic/DiagnosticTest.cpp -- Diagnostic engine tests ------===//
10 #include "clang/Basic/Diagnostic.h"
  /frameworks/base/core/java/android/hardware/location/
IFusedLocationHardwareSink.aidl 36 * Event generated from FLP HAL to provide diagnostic data to the platform.
38 * @param data The diagnostic data provided by FLP HAL.
  /external/bison/lib/
verify.h 163 with a diagnostic that includes the string-literal DIAGNOSTIC. */
165 # define _GL_VERIFY_TRUE(R, DIAGNOSTIC) \
166 (!!sizeof (_GL_VERIFY_TYPE (R, DIAGNOSTIC)))
176 # define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \
179 # define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \
181 _Static_assert (R, DIAGNOSTIC); \
185 # define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \
191 with a diagnostic that includes the string-literal DIAGNOSTIC
    [all...]
  /art/runtime/gc/allocator/
dlmalloc.cc 35 #pragma GCC diagnostic push
36 #pragma GCC diagnostic ignored "-Wredundant-decls"
37 #pragma GCC diagnostic ignored "-Wempty-body"
38 #pragma GCC diagnostic ignored "-Wstrict-aliasing"
40 #pragma GCC diagnostic pop
  /external/clang/lib/Frontend/
TextDiagnosticBuffer.cpp 10 // This is a concrete diagnostic client, which buffers the diagnostic messages.
23 const Diagnostic &Info) {
31 "Diagnostic not handled during diagnostic buffering!");
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
diagnostic-core.h 1 /* Declarations of core diagnostic functionality for code that does
2 not need to deal with diagnostic contexts or diagnostic info
32 #include "diagnostic.def"
35 /* This is used for tagging pragma pops in the diagnostic
  /external/clang/include/clang/Sema/
TemplateDeduction.h 68 /// \brief Take ownership of the SFINAE diagnostic.
83 /// \brief Is a SFINAE diagnostic available?
88 /// \brief Set the diagnostic which caused the SFINAE failure.
90 // Only collect the first diagnostic.
98 /// \brief Add a new diagnostic to the set of diagnostics
177 /// \brief Indicates whether a diagnostic is stored in Diagnostic.
184 /// \brief A diagnostic indicating why deduction failed.
187 char Diagnostic[sizeof(PartialDiagnosticAt)];
190 /// \brief Retrieve the diagnostic which caused this deduction failure
    [all...]
  /external/clang/lib/Frontend/Rewrite/
FixItRewriter.cpp 1 //===--- FixItRewriter.cpp - Fix-It Rewriter Diagnostic Client --*- C++ -*-===//
10 // This is a diagnostic client adaptor that performs rewrites as
12 // then forwards any diagnostics to the adapted diagnostic client.
123 const Diagnostic &Info) {
147 // in this diagnostic.
192 /// \brief Emit a diagnostic via the adapted diagnostic client.
194 // When producing this diagnostic, we temporarily bypass ourselves,
195 // clear out any current diagnostic, and let the downstream client
196 // format the diagnostic
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 1 //===--- Diagnostic.cpp - C Language Family Diagnostic Handling -----------===//
10 // This file implements the Diagnostic-related interfaces.
15 #include "clang/Basic/Diagnostic.h"
87 // If we own the diagnostic client, destroy it first so that it can access the
129 // Clear state related to #pragma diagnostic.
134 // Create a DiagState and DiagStatePoint representing diagnostic changes
207 // Another common case; modifying diagnostic state in a source location
211 // A diagnostic pragma occurred, create a new DiagState initialized with
220 // We allow setting the diagnostic state in random source order fo
    [all...]