Searched defs:Severity (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/chrome/browser/ui/global_error/
H A Dglobal_error.h24 enum Severity { enum in class:GlobalError
36 virtual Severity GetSeverity();
/external/chromium_org/chrome/browser/ui/toolbar/
H A Dwrench_icon_painter.h35 enum Severity { enum in class:WrenchIconPainter
50 static Severity SeverityFromUpgradeLevel(
58 static Severity GlobalErrorSeverity();
65 void SetSeverity(Severity severity, bool animate);
85 Severity severity_;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
H A DAuditsPanel.js208 * @param {!WebInspector.AuditRule.Severity} severity
264 WebInspector.AuditRule.Severity = {
291 * @param {!WebInspector.AuditRule.Severity} severity
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DLogging.java63 public enum Severity { enum in class:Logging
71 String path, EnumSet<TraceLevel> levels, Severity severity) {
/external/llvm/lib/IR/
H A DDiagnosticInfo.cpp96 DiagnosticSeverity Severity)
97 : DiagnosticInfo(DK_InlineAsm, Severity), LocCookie(0), MsgStr(MsgStr),
94 DiagnosticInfoInlineAsm(const Instruction &I, const Twine &MsgStr, DiagnosticSeverity Severity) argument
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DDiagnosticsBase.h22 enum Severity enum in class:pp::Diagnostics
78 Severity severity(ID id);
/external/clang/include/clang/Basic/
H A DDiagnosticIDs.h62 enum class Severity { class in namespace:clang::diag
73 unsigned Severity : 3;
80 static DiagnosticMapping Make(diag::Severity Severity, bool IsUser, argument
83 Result.Severity = (unsigned)Severity;
91 diag::Severity getSeverity() const { return (diag::Severity)Severity; }
92 void setSeverity(diag::Severity Valu
[all...]
/external/llvm/include/llvm/IR/
H A DDiagnosticInfo.h76 /// Severity gives the severity of the diagnostic.
77 const DiagnosticSeverity Severity; member in class:llvm::DiagnosticInfo
80 DiagnosticInfo(/* DiagnosticKind */ int Kind, DiagnosticSeverity Severity) argument
81 : Kind(Kind), Severity(Severity) {}
86 DiagnosticSeverity getSeverity() const { return Severity; }
113 DiagnosticSeverity Severity = DS_Error)
114 : DiagnosticInfo(DK_InlineAsm, Severity), LocCookie(0), MsgStr(MsgStr),
122 DiagnosticSeverity Severity = DS_Error)
123 : DiagnosticInfo(DK_InlineAsm, Severity), LocCooki
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
H A DExtensionAPI.js35 apiPrivate.audits.Severity = {
43 apiPrivate.console.Severity = {
215 get Severity()
217 return apiPrivate.console.Severity;
678 get Severity()
680 return apiPrivate.audits.Severity;
/external/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp537 lto_codegen_diagnostic_severity_t Severity; local
540 Severity = LTO_DS_ERROR;
543 Severity = LTO_DS_WARNING;
546 Severity = LTO_DS_REMARK;
549 Severity = LTO_DS_NOTE;
562 (*DiagHandler)(Severity, MsgStorage.c_str(), DiagContext);
/external/clang/lib/CodeGen/
H A DCodeGenAction.cpp341 #define ComputeDiagID(Severity, GroupName, DiagID) \
343 switch (Severity) { \
359 #define ComputeDiagRemarkID(Severity, GroupName, DiagID) \
361 switch (Severity) { \
492 llvm::DiagnosticSeverity Severity = DI.getSeverity(); local
498 ComputeDiagID(Severity, inline_asm, DiagID);
503 ComputeDiagID(Severity, backend_frame_larger_than, DiagID);
523 ComputeDiagRemarkID(Severity, backend_plugin, DiagID);
/external/chromium_org/third_party/accessibility-audit/
H A Daxs_testing.js508 axs.constants.Severity = {INFO:"Info", WARNING:"Warning", SEVERE:"Severe"};
1537 d.result == axs.constants.AuditResult.FAIL && (d.rule.severity == axs.constants.Severity.SEVERE ? b.addError(axs.Audit.accessibilityErrorMessage(d)) : b.addWarning(axs.Audit.accessibilityErrorMessage(d)));
1550 for (var b = a.rule.severity == axs.constants.Severity.SEVERE ? "Error: " : "Warning: ", b = b + (a.rule.code + " (" + a.rule.heading + ") failed on the following " + (1 == a.elements.length ? "element" : "elements")), b = 1 == a.elements.length ? b + ":" : b + (" (1 - " + Math.min(5, a.elements.length) + " of " + a.elements.length + "):"), c = Math.min(a.elements.length, 5), d = 0;d < c;d++) {
1562 axs.AuditRule.specs.audioWithoutControls = {name:"audioWithoutControls", heading:"Audio elements should have controls", url:"", severity:axs.constants.Severity.WARNING, relevantElementMatcher:function(a) {
1567 axs.AuditRule.specs.badAriaAttributeValue = {name:"badAriaAttributeValue", heading:"ARIA state and property values must be valid", url:"", severity:axs.constants.Severity.SEVERE, relevantElementMatcher:function(a) {
1586 axs.AuditRule.specs.badAriaRole = {name:"badAriaRole", heading:"Elements with ARIA roles must use a valid, non-abstract ARIA role", url:"https://github.com/GoogleChrome/accessibility-developer-tools/wiki/Audit-Rules#-ax_aria_01--elements-with-aria-roles-must-use-a-valid-non-abstract-aria-role", severity:axs.constants.Severity.SEVERE, relevantElementMatcher:function(a) {
1591 axs.AuditRule.specs.controlsWithoutLabel = {name:"controlsWithoutLabel", heading:"Controls and media elements should have labels", url:"https://github.com/GoogleChrome/accessibility-developer-tools/wiki/Audit-Rules#-ax_text_01--controls-and-media-elements-should-have-labels", severity:axs.constants.Severity.SEVERE, relevantElementMatcher:function(a) {
1607 axs.AuditRule.specs.focusableElementNotVisibleAndNotAriaHidden = {name:"focusableElementNotVisibleAndNotAriaHidden", heading:"These elements are focusable but either invisible or obscured by another element", url:"https://github.com/GoogleChrome/accessibility-developer-tools/wiki/Audit-Rules#-ax_focus_01--these-elements-are-focusable-but-either-invisible-or-obscured-by-another-element", severity:axs.constants.Severity.WARNING, relevantElementMatcher:function(a) {
1627 axs.AuditRule.specs.imagesWithoutAltText = {name:"imagesWithoutAltText", heading:"Images should have an alt attribute", url:"https://github.com/GoogleChrome/accessibility-developer-tools/wiki/Audit-Rules#-ax_text_02--images-should-have-an-alt-attribute-unless-they-have-an-aria-role-of-presentation", severity:axs.constants.Severity.WARNING, relevantElementMatcher:function(a) {
1632 axs.AuditRule.specs.linkWithUnclearPurpose = {name:"linkWithUnclearPurpose", heading:"The purpose of each link should be clear from the link text", url:"", severity:axs.constants.Severity
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmtypes.h3309 struct simple_node Severity[3]; /* lists of IDs in the hash table */ member in struct:gl_client_namespace
/external/mesa3d/src/mesa/main/
H A Dmtypes.h3309 struct simple_node Severity[3]; /* lists of IDs in the hash table */ member in struct:gl_client_namespace
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1555 milliseconds