HomeSort by: relevance | last modified time | path
    Searched refs:errs (Results 1 - 25 of 632) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/Support/
SystemUtils.cpp 20 errs() << "WARNING: You're attempting to print out a bitcode file.\n"
Allocator.cpp 22 errs() << "\nNumber of memory regions: " << NumSlabs << '\n'
34 errs() << "Recycler element size: " << Size << '\n'
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ModuleFile.cpp 40 llvm::errs() << " " << Name << ":\n";
43 llvm::errs() << " " << I->first << " -> " << I->second << "\n";
48 llvm::errs() << "\nModule: " << FileName << "\n";
50 llvm::errs() << " Imports: ";
53 llvm::errs() << ", ";
54 llvm::errs() << Imports[I]->FileName;
56 llvm::errs() << "\n";
60 llvm::errs() << " Base source location offset: " << SLocEntryBaseOffset
64 llvm::errs() << " Base identifier ID: " << BaseIdentifierID << '\n'
68 llvm::errs() << " Base macro ID: " << BaseMacroID << '\n
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
ReduceAliases.cpp 38 errs() << "----------------------------\n";
39 errs() << "Aliases Index Reference:\n";
42 errs() << "\t" << ++Count << ": " << GA.getName() << "\n";
44 errs() << "----------------------------\n";
49 errs() << "*** Reducing Aliases ...\n";
52 errs() << "----------------------------\n";
ReduceFunctionBodies.cpp 40 errs() << "----------------------------\n";
41 errs() << "Function Definition Index Reference:\n";
45 errs() << "\t" << ++FunctionDefinitionCount << ": " << F.getName()
48 errs() << "----------------------------\n";
53 errs() << "*** Reducing Function Bodies...\n";
56 errs() << "----------------------------\n";
ReduceSpecialGlobals.cpp 46 errs() << "----------------------------\n";
47 errs() << "Special Globals Index Reference:\n";
51 errs() << "\t" << ++Count << ": " << Used->getName() << "\n";
53 errs() << "----------------------------\n";
58 errs() << "*** Reducing Special Globals ...\n";
61 errs() << "----------------------------\n";
Delta.cpp 38 errs() << "Error making unique filename: " << EC.message() << "!\n";
46 errs() << "Error emitting bitcode to file '" << CurrentFilepath << "'!\n";
69 errs() << "Increasing granularity...";
85 errs() << "Success! New Chunks:\n";
87 errs() << '\t';
89 errs() << '\n';
104 errs() << "\nNothing to reduce\n";
111 errs() << "\nInput isn't interesting! Verify interesting-ness test\n";
115 assert(!verifyModule(*Program, &errs()) &&
148 if (verifyModule(*Clone.get(), &errs())) {
    [all...]
ReduceFunctions.cpp 58 errs() << "----------------------------\n";
59 errs() << "Function Index Reference:\n";
65 errs() << '\t' << ++FunctionCount << ": " << F.getName() << '\n';
68 errs() << "----------------------------\n";
73 errs() << "*** Reducing Functions...\n";
76 errs() << "----------------------------\n";
  /src/external/gpl3/gdb/dist/readline/readline/examples/
rlkeymaps.c 18 int r, errs; local
20 errs = 0;
27 errs++;
35 errs++;
42 errs++;
50 errs++;
57 errs++;
60 exit (errs);
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/
rlkeymaps.c 18 int r, errs; local
20 errs = 0;
27 errs++;
35 errs++;
42 errs++;
50 errs++;
57 errs++;
60 exit (errs);
  /src/share/man/tools/
ckspell 10 date > $TMPDIR/sp.errs
11 echo >> $TMPDIR/sp.errs
16 echo "cat <<'EOF' >----------------" >> $TMPDIR/sp.errs
17 echo "Section $dir" >> $TMPDIR/sp.errs
22 sort $TMPDIR/tmp.$$ | uniq | comm -23 - $TOOLS/sp.ignore >> $TMPDIR/sp.errs
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
litlint.py 47 errs = 0
52 errs += 1
56 return errs
66 errs = 0 variable
68 errs += LintFile(p)
71 if errs > 0:
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Hello/
Hello.cpp 32 errs() << "Hello: ";
33 errs().write_escaped(F.getName()) << '\n';
50 errs() << "Hello: ";
51 errs().write_escaped(F.getName()) << '\n';
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
HelloWorld.cpp 15 errs() << F.getName() << "\n";
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
AnalysisOrderChecker.cpp 63 llvm::errs() << "PreStmt<CastExpr> (Kind : " << CE->getCastKindName()
69 llvm::errs() << "PostStmt<CastExpr> (Kind : " << CE->getCastKindName()
76 llvm::errs() << "PreStmt<ArraySubscriptExpr>\n";
82 llvm::errs() << "PostStmt<ArraySubscriptExpr>\n";
87 llvm::errs() << "PreStmt<CXXNewExpr>\n";
92 llvm::errs() << "PostStmt<CXXNewExpr>\n";
97 llvm::errs() << "PreStmt<CXXDeleteExpr>\n";
102 llvm::errs() << "PostStmt<CXXDeleteExpr>\n";
107 llvm::errs() << "PreStmt<CXXConstructExpr>\n";
112 llvm::errs() << "PostStmt<CXXConstructExpr>\n"
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/opt/
PrintSCC.cpp 75 errs() << "SCCs for Function " << F.getName() << " in PostOrder:";
78 errs() << "\nSCC #" << ++sccNum << " : ";
80 BB->printAsOperand(errs(), false);
81 errs() << ", ";
84 errs() << " (Has self-loop).";
86 errs() << "\n";
96 errs() << "SCCs for the program in PostOrder:";
100 errs() << "\nSCC #" << ++sccNum << " : ";
103 errs() << ((*I)->getFunction() ? (*I)->getFunction()->getName()
106 errs() << " (Has self-loop)."
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/diagtool/
diagtool_main.cpp 22 llvm::errs() << "usage: diagtool <command> [<args>]\n\n";
23 diagTools->printCommands(llvm::errs());
  /src/external/apache2/llvm/dist/clang/tools/libclang/
ARCMigrate.cpp 37 llvm::errs() << "error: feature not enabled in this build\n";
44 llvm::errs() << "clang_getRemappings was called with NULL parameter\n";
50 llvm::errs() << "Error by clang_getRemappings(\"" << migrate_dir_path
52 llvm::errs() << "\"" << migrate_dir_path << "\" does not exist\n";
64 llvm::errs() << "Error by clang_getRemappings(\"" << migrate_dir_path
68 llvm::errs() << I->second << '\n';
80 llvm::errs() << "error: feature not enabled in this build\n";
89 llvm::errs() << "clang_getRemappingsFromFileList was called with "
96 llvm::errs() << "clang_getRemappingsFromFileList was called with "
109 llvm::errs() << "Error by clang_getRemappingsFromFileList\n"
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineCheckDebugify.cpp 35 errs() << "WARNING: Please run mir-debugify to generate "
68 errs() << "WARNING: Instruction with empty DebugLoc in function ";
69 errs() << F.getName() << " --";
70 MI.print(errs());
91 errs() << "WARNING: Missing line " << Idx + 1 << "\n";
96 errs() << "WARNING: Missing variable " << Idx + 1 << "\n";
99 errs() << "Machine IR debug info check: ";
100 errs() << (Fail ? "FAIL" : "PASS") << "\n";
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
ErrorHandling.h 24 WithColor::error(errs(), "llvm-profgen");
26 errs() << Whence.str() << ": ";
27 errs() << Message << "\n";
  /src/bin/ed/test/
Makefile 11 @if grep -h '\*\*\*' errs.o scripts.o; then :; else \
16 @if [ -f errs.o ]; then :; else \
ckscripts.sh 19 done >errs.o 2>&1
37 grep -h '\*\*\*' errs.o scripts.o
  /src/external/ibm-public/postfix/dist/src/cleanup/
cleanup_api.c 233 state->errs |= CLEANUP_STAT_RCPT;
235 state->errs |= CLEANUP_STAT_BAD;
243 state->errs = 0;
290 ((state->errs & CLEANUP_STAT_MASK_CANT_BOUNCE) == 0 \
294 if (state->errs != 0 && CAN_BOUNCE())
307 if (state->errs == 0 && (state->flags & CLEANUP_FLAG_DISCARD) == 0) {
340 state->errs = mail_stream_finish(state->handle, (VSTRING *) 0);
360 if (state->errs != 0 || (state->flags & CLEANUP_FLAG_DISCARD) != 0) {
365 msg_info("%s: removed (%s)", state->queue_id, state->errs ?
388 msg_info("cleanup_flush: status %d", state->errs);
    [all...]
  /src/crypto/external/bsd/netpgp/dist/src/lib/
types.h 58 void *errs; /* file stream to put error messages */ member in struct:pgp_io_t
  /src/external/apache2/llvm/dist/clang/lib/Basic/
LangOptions.cpp 58 llvm::errs() << "\n " #NAME " " << get##NAME();
60 llvm::errs() << "\n";
66 llvm::errs() << "\n " #NAME " Override is " << get##NAME##Override();
68 llvm::errs() << "\n";

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011>>