HomeSort by relevance Sort by last modified time
    Searched refs:Warnings (Results 1 - 19 of 19) sorted by null

  /external/clang/include/clang/Frontend/
TextDiagnosticBuffer.h 31 DiagList Errors, Warnings, Notes;
36 const_iterator warn_begin() const { return Warnings.begin(); }
37 const_iterator warn_end() const { return Warnings.end(); }
VerifyDiagnosticConsumer.h 173 DirectiveList Warnings;
178 llvm::DeleteContainerPointers(Warnings);
  /external/clang/utils/analyzer/
SumTimerInfo.py 25 Warnings = 0
44 if ((("warning generated." in line) or ("warnings generated" in line)) and Mode == 1) :
46 Warnings = Warnings + int(s[0])
75 print "Warnings %d" % (Warnings)
  /external/clang/lib/Frontend/
Warnings.cpp 1 //===--- Warnings.cpp - C-Language Front-end ------------------------------===//
19 // Each warning option controls any number of actual warnings.
84 // while the second pass reports warnings/errors. This has the effect that
95 for (unsigned i = 0, e = Opts.Warnings.size(); i != e; ++i) {
96 StringRef Opt = Opts.Warnings[i];
97 StringRef OrigOpt = Opts.Warnings[i];
124 // warnings, including ones not explicitly in a warning group.
Android.mk 52 Warnings.cpp \
TextDiagnosticBuffer.cpp 19 /// HandleDiagnostic - Store the errors, warnings, and notes that are
24 // Default implementation (Warnings/errors count).
36 Warnings.push_back(std::make_pair(Info.getLocation(), Buf.str()));
VerifyDiagnosticConsumer.cpp 301 DL = ED ? &ED->Warnings : NULL;
453 /// expected errors and warnings.
649 NumProblems += CheckLists(Diags, SourceMgr, "warning", ED.Warnings,
763 ED.Warnings.clear();
CompilerInvocation.cpp 100 static void addWarningArgs(ArgList &Args, std::vector<std::string> &Warnings) {
107 Warnings.push_back(A->getOption().getName().substr(1));
117 Warnings.push_back(V);
586 addWarningArgs(Args, Opts.Warnings);
    [all...]
  /external/clang/include/clang/Basic/
DiagnosticOptions.h 59 std::vector<std::string> Warnings;
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 1 //=- AnalysisBasedWarnings.cpp - Sema warnings based on libAnalysis -*- C++ -*-=//
11 // Together they are used by Sema to issue warnings based on inexpensive
631 /// as a warning. If a particular use is one we omit warnings for, returns
    [all...]
SemaDecl.cpp     [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
Resource.js 615 this.dispatchEventToListeners("errors-warnings-updated");
618 get warnings()
623 set warnings(x)
626 this.dispatchEventToListeners("errors-warnings-updated");
633 this.dispatchEventToListeners("errors-warnings-updated");
664 for (var warning in WebInspector.Warnings)
665 this._checkWarning(WebInspector.Warnings[warning]);
672 case WebInspector.Warnings.IncorrectMIMEType.id:
680 String.sprintf(WebInspector.Warnings.IncorrectMIMEType.message, WebInspector.Resource.Type.toUIString(this.type), this.mimeType),
inspector.js 241 get warnings()
246 set warnings(x)
262 if (!this.errors && !this.warnings) {
278 if (this.warnings) {
281 warningsElement.textContent = this.warnings;
286 if (this.warnings) {
288 if (this.warnings == 1)
289 errorWarningElement.title = WebInspector.UIString("%d error, %d warning", this.errors, this.warnings);
291 errorWarningElement.title = WebInspector.UIString("%d error, %d warnings", this.errors, this.warnings);
    [all...]
  /external/webrtc/src/modules/audio_processing/interface/
audio_processing.h 236 // Warnings are non-fatal.
237 enum Warnings {
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 140 // Non-ARC warnings are ignored.
207 I = CInvok->getDiagnosticOpts().Warnings.begin(),
208 E = CInvok->getDiagnosticOpts().Warnings.end(); I != E; ++I) {
213 CInvok->getDiagnosticOpts().Warnings = llvm_move(WarnOpts);
  /external/clang/test/Misc/
warning-flags.c 1 RUN: diagtool list-warnings > %t 2>&1
6 (1) It documents all existing warnings that currently have no associated -W flag,
12 (2) It prevents us adding new warnings to Clang that have no -W flag. All
13 new warnings should have -W flags.
19 The list of warnings below should NEVER grow. It should gradually shrink to 0.
21 CHECK: Warnings without flags (143):
166 The list of warnings in -Wpedantic should NEVER grow.
  /frameworks/compile/slang/
llvm-rs-cc.cpp 204 DiagOpts.Warnings = Args->getAllArgValues(OPT_W);
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp     [all...]

Completed in 707 milliseconds