HomeSort by: relevance | last modified time | path
    Searched defs:Warnings (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
TextDiagnosticBuffer.h 32 DiagList Errors, Warnings, Remarks, Notes;
44 const_iterator warn_begin() const { return Warnings.begin(); }
45 const_iterator warn_end() const { return Warnings.end(); }
VerifyDiagnosticConsumer.h 238 DirectiveList Warnings;
244 Warnings.clear();
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
DiagnosticOptions.h 111 std::vector<std::string> Warnings;
113 /// The list of prefixes from -Wundef-prefix=... used to generate warnings
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
DebugMap.h 185 Warnings.push_back(std::string(Warning));
187 const std::vector<std::string> &getWarnings() const { return Warnings; }
207 std::vector<std::string> Warnings;
  /src/external/bsd/ntp/dist/ntpd/
check_y2k.c 141 Warnings++; else Fatals++
147 int Warnings;
186 Fatals = Warnings = 0;
191 "%4d: %s(%d): FATAL DID NOT INCREMENT (Fatals=%d Warnings=%d)\n",
192 (int)year, __FILE__, __LINE__, (int)Fatals, (int)Warnings );
197 Fatals = Warnings = 0;
199 if ( Warnings == 0 )
202 "%4d: %s(%d): WARNING DID NOT INCREMENT (Fatals=%d Warnings=%d)\n",
203 (int)year, __FILE__, __LINE__, (int)Fatals, (int)Warnings );
206 Fatals = Warnings = 0
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ObjDumper.h 128 std::unordered_set<std::string> Warnings;
  /src/external/bsd/pcc/dist/pcc/mip/
common.c 187 * conditional warnings
189 struct Warning Warnings[] = {
235 struct Warning *w = Warnings;
237 for (w = Warnings; w->flag; w++) {
258 for (w = Warnings; w->flag; w++)
277 for (w = Warnings; w->flag; w++) {
312 if (Warnings[type].warn == 0)
314 if (Warnings[type].err) {
322 vfprintf(stderr, Warnings[type].fmt, ap);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFLinker.h 106 /// Emit DIE containing warnings.
217 const std::vector<std::string> &Warnings)
218 : FileName(Name), Dwarf(Dwarf), Addresses(Addresses), Warnings(Warnings) {
227 /// warnings for object file.
228 const std::vector<std::string> &Warnings;
311 /// Set warning handler which would be used to report warnings.
416 /// Emit warnings as Dwarf compile units to leave a trail after linking.
  /src/external/bsd/ntp/dist/parseutil/
dcfd.c 499 * extract various warnings from DCF77
1120 * control synchronisation status (warnings) and do periodic adjusts
1278 int Fatals, Warnings;
1280 Warnings++; else Fatals++
1282 Fatals = Warnings = 0;
1875 * cleanup warnings
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 1645 SmallVector<std::pair<SMLoc, std::string>, 2> Warnings;
1690 Warnings.push_back(std::make_pair(
1702 // Produce warnings only if all the operands passed the adjustment - prevent
1703 // legal cases like "movsd (%rax), %xmm0" mistakenly produce warnings
1704 for (auto &WarningMsg : Warnings) {
4227 FeatureBitset ErrorInfoMissingFeatures; // Init suppresses compiler warnings.
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 1882 /// DiagnoseUnusedDecl - Emit warnings about declarations that are not used
3745 SmallVector<GNUCompatibleParamWarning, 16> Warnings;
3767 Warnings.push_back(Warn);
3774 for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) {
3775 Diag(Warnings[Warn].NewParm->getLocation(),
3777 << Warnings[Warn].PromotedType
3778 << Warnings[Warn].OldParm->getType();
3779 if (Warnings[Warn].OldParm->getLocation().isValid())
3780 Diag(Warnings[Warn].OldParm->getLocation(),
4627 // Don't emit warnings after this error
    [all...]

Completed in 27 milliseconds