HomeSort by relevance Sort by last modified time
    Searched full:severity (Results 1 - 25 of 1265) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Perl5/t/author/
perlcriticrc 0 severity = 5
  /frameworks/opt/setupwizard/library/
lint.xml 3 <issue id="ExtraTranslation" severity="ignore" />
4 <issue id="GradleDependency" severity="ignore" />
5 <issue id="MissingTranslation" severity="ignore" />
6 <issue id="RtlEnabled" severity="ignore" />
  /frameworks/base/core/res/
lint.xml 4 <issue id="UnusedResources" severity="ignore" />
6 <issue id="PrivateResource" severity="ignore" />
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glDebugMessageInsertKHR.java 1 // C function void glDebugMessageInsertKHR ( GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf )
7 int severity,
glDebugMessageCallback.java 4 void onMessage(int source, int type, int id, int severity, String message);
glDebugMessageCallbackKHR.java 4 void onMessage(int source, int type, int id, int severity, String message);
  /external/glide/library/
lint.xml 3 <issue id="AllowBackup" severity="ignore" />
  /external/glide/third_party/gif_decoder/
lint.xml 3 <issue id="AllowBackup" severity="ignore" />
  /external/glide/third_party/gif_encoder/
lint.xml 3 <issue id="AllowBackup" severity="ignore" />
  /frameworks/base/packages/SystemUI/
lint.xml 3 <issue id="PrivateResource" severity="ignore" />
  /frameworks/base/packages/DocumentsUI/
lint.xml 9 <issue id="UsesMinSdkAttributes" severity="ignore" />
12 <issue id="ProtectedPermissions" severity="ignore" />
15 <issue id="Assert" severity="ignore" />
16 <issue id="ClickableViewAccessibility" severity="ignore" />
17 <issue id="GoogleAppIndexingWarning" severity="ignore" />
18 <issue id="MissingPermission" severity="ignore" />
19 <issue id="ParcelClassLoader" severity="ignore" />
20 <issue id="ParcelCreator" severity="ignore" />
21 <issue id="Registered" severity="ignore" />
22 <issue id="RtlHardcoded" severity="ignore" /
    [all...]
  /external/libchrome/base/mac/
mach_logging.h 40 LogSeverity severity,
58 #define MACH_LOG_STREAM(severity, mach_err) \
59 COMPACT_GOOGLE_LOG_EX_ ## severity(MachLogMessage, mach_err).stream()
64 #define MACH_LOG(severity, mach_err) \
65 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), LOG_IS_ON(severity))
66 #define MACH_LOG_IF(severity, condition, mach_err) \
67 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), \
68 LOG_IS_ON(severity) && (condition))
81 #define MACH_DLOG(severity, mach_err)
    [all...]
mac_logging.h 36 LogSeverity severity,
54 #define OSSTATUS_LOG_STREAM(severity, status) \
55 COMPACT_GOOGLE_LOG_EX_ ## severity(OSStatusLogMessage, status).stream()
60 #define OSSTATUS_LOG(severity, status) \
61 LAZY_STREAM(OSSTATUS_LOG_STREAM(severity, status), LOG_IS_ON(severity))
62 #define OSSTATUS_LOG_IF(severity, condition, status) \
63 LAZY_STREAM(OSSTATUS_LOG_STREAM(severity, status), \
64 LOG_IS_ON(severity) && (condition))
77 #define OSSTATUS_DLOG(severity, status)
    [all...]
  /external/webrtc/webrtc/build/android/
suppressions.xml 10 <issue id="Locale" severity="ignore"/>
11 <issue id="SdCardPath" severity="ignore"/>
12 <issue id="UseValueOf" severity="ignore"/>
13 <issue id="InlinedApi" severity="ignore"/>
14 <issue id="DefaultLocale" severity="ignore"/>
15 <issue id="Assert" severity="ignore"/>
16 <issue id="UseSparseArrays" severity="ignore"/>
20 <issue id="MissingApplicationIcon" severity="ignore"/>
21 <issue id="AllowBackup" severity="ignore"/>
22 <issue id="MissingVersion" severity="ignore"/
    [all...]
  /build/tools/
warn.py 12 class severity: class in inherits:
22 if sev == severity.FIXMENOW:
24 if sev == severity.HIGH:
26 if sev == severity.MEDIUM:
28 if sev == severity.LOW:
30 if sev == severity.HARMLESS:
32 if sev == severity.UNKNOWN:
37 { 'category':'make', 'severity':severity.MEDIUM, 'members':[], 'option':'',
41 { 'category':'C/C++', 'severity':severity.HIGH, 'members':[], 'option':'-Wimplicit-function-declaration'
    [all...]
  /external/ImageMagick/MagickCore/
exception-private.h 29 #define ThrowBinaryException(severity,tag,context) \
32 (void) ThrowMagickException(exception,GetMagickModule(),severity, \
36 #define ThrowFatalException(severity,tag) \
46 (void) ThrowMagickException(fatal_exception,GetMagickModule(),severity, \
52 _exit((int) (severity-FatalErrorException)+1); \
54 #define ThrowFileException(exception,severity,tag,context) \
60 (void) ThrowMagickException(exception,GetMagickModule(),severity, \
65 #define ThrowImageException(severity,tag) \
67 (void) ThrowMagickException(exception,GetMagickModule(),severity, \
71 #define ThrowReaderException(severity,tag)
    [all...]
  /bionic/tools/relocation_packer/src/
debug.h 34 enum Severity {INFO = 0, WARNING, ERROR, FATAL};
38 // |severity| is an enumerated severity.
41 Logger(Severity severity, int level, bool predicate);
64 // Message severity, verbosity level, and predicate.
65 Severity severity_;
83 typedef relocation_packer::Logger::Severity LogSeverity;
89 // LOG(severity) prints a message with the given severity, and aborts i
    [all...]
  /external/webrtc/webrtc/base/objc/
RTCLogging.h 22 extern "C" void RTCLogEx(RTCLoggingSeverity severity, NSString* log_string);
23 extern "C" void RTCSetMinDebugLogLevel(RTCLoggingSeverity severity);
28 // Logs the log string to the webrtc logstream for the given severity.
29 extern void RTCLogEx(RTCLoggingSeverity severity, NSString* log_string);
32 // Sets the minimum severity to be logged to console.
33 extern void RTCSetMinDebugLogLevel(RTCLoggingSeverity severity);
49 #define RTCLogFormat(severity, format, ...) \
52 RTCLogEx(severity, log_string); \
RTCLogging.mm 15 rtc::LoggingSeverity RTCGetNativeLoggingSeverity(RTCLoggingSeverity severity) {
16 switch (severity) {
28 void RTCLogEx(RTCLoggingSeverity severity, NSString* log_string) {
31 LOG_V(RTCGetNativeLoggingSeverity(severity)) << utf8_string;
35 void RTCSetMinDebugLogLevel(RTCLoggingSeverity severity) {
36 rtc::LogMessage::LogToDebug(RTCGetNativeLoggingSeverity(severity));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
GlobalLintConfiguration.java 27 import com.android.tools.lint.detector.api.Severity;
41 private Map<Issue, Severity> mSeverities;
58 public Severity getSeverity(@NonNull Issue issue) {
61 mSeverities = new HashMap<Issue, Severity>();
70 Severity severity = Severity.valueOf(s[1]); local
71 if (severity != null) {
72 mSeverities.put(d, severity);
80 Severity severity = mSeverities.get(issue) local
138 Severity severity = severities.get(issue); local
    [all...]
  /external/ImageMagick/MagickWand/
wandcli-private.h 25 #define CLIWandException(severity,tag,option) \
26 (void) CLIThrowException(cli_wand,GetMagickModule(),severity,tag, \
29 #define CLIWandExceptionArg(severity,tag,option,arg) \
30 (void) CLIThrowException(cli_wand,GetMagickModule(),severity,tag, \
38 #define CLIWandExceptionFile(severity,tag,context) \
40 (void) CLIThrowException(cli_wand,GetMagickModule(),severity,tag, \
45 #define CLIWandExceptionBreak(severity,tag,option) \
46 { CLIWandException(severity,tag,option); break; }
48 #define CLIWandExceptionReturn(severity,tag,option) \
49 { CLIWandException(severity,tag,option); return;
    [all...]
  /development/tools/checkstyle/
android-style.xml 5 <property name="severity" value="warning"/>
14 <property name="severity" value="error"/>
18 <property name="severity" value="info"/>
22 <property name="severity" value="error"/>
26 <property name="severity" value="error"/>
30 <property name="severity" value="warning"/>
37 <property name="severity" value="error"/>
46 <property name="severity" value="error"/>
50 <property name="severity" value="error"/>
53 <property name="severity" value="error"/
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.td 16 class Severity<string N> {
19 def SEV_Ignored : Severity<"Ignored">;
20 def SEV_Remark : Severity<"Remark">;
21 def SEV_Warning : Severity<"Warning">;
22 def SEV_Error : Severity<"Error">;
23 def SEV_Fatal : Severity<"Fatal">;
64 class Diagnostic<string text, DiagClass DC, Severity defaultmapping> {
73 Severity DefaultSeverity = defaultmapping;
107 class DefaultIgnore { Severity DefaultSeverity = SEV_Ignored; }
108 class DefaultWarn { Severity DefaultSeverity = SEV_Warning;
    [all...]
  /external/libbrillo/brillo/
syslog_logging.cc 36 static bool HandleMessage(int severity,
41 switch (severity) {
43 severity = kSyslogInfo;
47 severity = kSyslogWarning;
51 severity = kSyslogError;
55 severity = kSyslogCritical;
59 severity = kSyslogDebug;
71 syslog(severity, "%s", str);
74 return !s_log_to_stderr && severity != kSyslogCritical;
  /external/webrtc/webrtc/base/java/src/org/webrtc/
Logging.java 62 public enum Severity {
83 // Enable tracing to |path| of messages of |levels| and |severity|.
86 String path, EnumSet<TraceLevel> levels, Severity severity) {
99 nativeEnableTracing(path, nativeLevel, severity.ordinal());
103 public static void log(Severity severity, String tag, String message) {
105 nativeLog(severity.ordinal(), tag, message);
111 switch (severity) {
129 log(Severity.LS_INFO, tag, message)
    [all...]

Completed in 2391 milliseconds

1 2 3 4 5 6 7 8 91011>>