HomeSort by relevance Sort by last modified time
    Searched refs:Warning (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /dalvik/dexgen/src/com/android/dexgen/util/
Warning.java 20 * Exception which is meant to indicate a non-fatal warning.
22 public class Warning extends RuntimeException {
28 public Warning(String message) {
  /dalvik/dx/src/com/android/dx/util/
Warning.java 20 * Exception which is meant to indicate a non-fatal warning.
22 public class Warning extends RuntimeException {
28 public Warning(String message) {
  /external/dexmaker/src/dx/java/com/android/dx/util/
Warning.java 20 * Exception which is meant to indicate a non-fatal warning.
22 public class Warning extends RuntimeException {
28 public Warning(String message) {
  /external/chromium_org/extensions/browser/
warning_set.h 25 class Warning {
29 // does not have localized warning messages for the UI.
50 Warning(const Warning& other);
51 ~Warning();
52 Warning& operator=(const Warning& other);
54 // Factory methods for various warning types.
55 static Warning CreateNetworkDelayWarning(
57 static Warning CreateNetworkConflictWarning
    [all...]
warning_set.cc 30 // Warning
33 Warning::Warning(
42 // These are invalid here because they do not have corresponding warning
49 Warning::Warning(const Warning& other)
55 Warning::~Warning() {
58 Warning& Warning::operator=(const Warning& other)
    [all...]
warning_service_unittest.cc 23 void AddWarning(const Warning& warning) {
25 warnings.insert(warning);
40 const Warning::WarningType warning_1 =
41 Warning::kNetworkDelay;
42 const Warning::WarningType warning_2 =
43 Warning::kNetworkConflict;
47 // Check that inserting a warning triggers notifications, whereas inserting
48 // the same warning again is silent.
55 // Insert warning for the first time
    [all...]
warning_service.cc 29 const std::set<Warning::WarningType>& types) {
46 std::set<Warning::WarningType> WarningService::
49 std::set<Warning::WarningType> result;
122 std::set<Warning::WarningType> warning_types =
warning_service.h 32 // etc.) trigger a warning badge in the UI and and provide means to resolve
49 void ClearWarnings(const std::set<Warning::WarningType>& types);
52 std::set<Warning::WarningType> GetWarningTypesAffectingExtension(
61 // Adds a set of warnings and notifies observers if any warning is new.
65 // new |warnings| occurred and triggers a warning badge.
  /external/nist-sip/java/gov/nist/javax/sip/header/
WarningList.java 34 * A list of Warning headers.
43 public class WarningList extends SIPHeaderList<Warning> {
58 super(Warning.class, Warning.NAME);
Warning.java 45 public class Warning extends SIPHeader implements WarningHeader {
57 * the Warning header, for use in debugging
68 public Warning() {
69 super(WARNING);
121 "Code parameter in the Warning header is invalid: code="
132 throw new NullPointerException("the host parameter in the Warning header is null");
146 "The text parameter in the Warning header is null",
153 * $Log: Warning.java,v $
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditCategories.js 44 this.addRule(new WebInspector.AuditRules.UnusedCssRule(), WebInspector.AuditRule.Severity.Warning);
47 this.addRule(new WebInspector.AuditRules.VendorPrefixedCSSProperties(), WebInspector.AuditRule.Severity.Warning);
67 this.addRule(new WebInspector.AuditRules.ImageDimensionsRule(), WebInspector.AuditRule.Severity.Warning);
68 this.addRule(new WebInspector.AuditRules.CookieSizeRule(400), WebInspector.AuditRule.Severity.Warning);
69 this.addRule(new WebInspector.AuditRules.StaticCookielessRule(5), WebInspector.AuditRule.Severity.Warning);
72 this.addRule(new WebInspector.AuditRules.MinimizeDnsLookupsRule(4), WebInspector.AuditRule.Severity.Warning);
73 this.addRule(new WebInspector.AuditRules.ParallelizeDownloadRule(4, 10, 0.5), WebInspector.AuditRule.Severity.Warning);
75 this.addRule(new WebInspector.AuditRules.ProxyCacheControlRule(), WebInspector.AuditRule.Severity.Warning);
  /external/chromium_org/chrome/browser/extensions/
extension_warning_badge_service_unittest.cc 26 void AddWarning(const Warning& warning) {
28 warnings.insert(warning);
41 virtual const std::set<Warning>&
63 // warning.
70 // Insert first warning.
71 warnings.AddWarning(Warning::CreateNetworkDelayWarning(ext1_id));
74 // Suppress first warning.
79 std::set<Warning::WarningType> to_clear =
84 // Set first warning again and verify that not badge is shown this time
    [all...]
extension_warning_badge_service.h 19 // A service that is responsible for showing an extension warning badge on the
28 // trigger a warning badge again for the life-time of the browsing session.
33 virtual const std::set<Warning>& GetCurrentWarnings() const;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_report_decorator.h 30 const char *Warning() { return Red(); }
  /external/chromium_org/ppapi/generators/
idl_lint.py 18 Option('wcomment', 'Disable warning for missing comment.')
19 Option('wenum', 'Disable warning for missing enum value.')
20 Option('winline', 'Disable warning for inline blocks.')
21 Option('wname', 'Disable warning for inconsistent interface name.')
23 Option('wparam', 'Disable warning for missing [in|out|inout] on param.')
24 Option('wpass', 'Disable warning for mixed passByValue and returnByValue.')
43 node.Warning('Expecting a comment.')
50 node.Warning('Expecting a label in a file containing interfaces.')
62 node.Warning('%s passByValue but %s returnByValue.' % (pbv, ret))
67 node.Warning('Expecting value for enumeration.'
    [all...]
  /external/clang/include/clang/Frontend/
SerializedDiagnosticPrinter.h 56 Warning,
  /external/llvm/lib/AsmParser/
LLLexer.h 67 void Warning(LocTy WarningLoc, const Twine &Msg) const;
68 void Warning(const Twine &Msg) const { return Warning(getLoc(), Msg); }
  /external/compiler-rt/lib/msan/
msan_report.cc 33 const char *Warning() { return Red(); }
67 Printf(" %sinvalid origin id(%d)%s\n", d.Warning(), id, d.End());
105 Printf("%s", d.Warning());
106 Report(" WARNING: MemorySanitizer: use-of-uninitialized-value\n");
118 Printf(" WARNING: Expected use of uninitialized value not found\n");
145 Printf("%s", d.Warning());
204 Printf("%s", d.Warning());
269 Printf("%s", d.Warning());
271 d.Warning(), d.Name(), what, d.Warning(), offset, start, size
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 59 bool Warning(SMLoc L, const Twine &Msg) {
60 return getParser().Warning(L, Msg);
  /external/clang/bindings/python/tests/cindex/
test_diagnostics.py 9 assert tu.diagnostics[0].severity == Diagnostic.Warning
19 assert tu.diagnostics[0].severity == Diagnostic.Warning
31 assert tu.diagnostics[0].severity == Diagnostic.Warning
45 assert tu.diagnostics[0].severity == Diagnostic.Warning
68 assert d.severity == Diagnostic.Warning
  /external/nist-sip/java/gov/nist/javax/sip/parser/
WarningParser.java 34 * Parser for Warning header.
50 * @param warning -
51 * Warning header to parse
53 public WarningParser(String warning) {
54 super(warning);
80 headerName(TokenTypes.WARNING);
83 Warning warning = new Warning(); local
84 warning.setHeaderName(SIPHeaderNames.WARNING)
    [all...]
  /external/chromium_org/extensions/renderer/
logging_native_handler.h 41 // Equivalent to LOG(WARNING) << message.
44 void Warning(const v8::FunctionCallbackInfo<v8::Value>& args);
  /external/clang/lib/Frontend/
TextDiagnosticBuffer.cpp 35 case DiagnosticsEngine::Warning:
54 Diags.Report(Diags.getCustomDiagID(DiagnosticsEngine::Warning, "%0"))
  /external/lldb/source/Core/
AddressResolverName.cpp 43 log->Warning ("function name regexp: \"%s\" did not compile.", m_func_name.AsCString());
106 log->Warning ("Class/method function specification not supported yet.\n");
147 log->Warning ("glob is not supported yet.");
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 257 // warning on functions that do not terminate.
397 // noreturn, that don't return. If people would like this warning to be more
839 /// as a warning. If a particular use is one we omit warnings for, returns
849 // specifically avoid warning about self references which take the
    [all...]

Completed in 352 milliseconds

1 2 3 4 5 6 7 8