HomeSort by relevance Sort by last modified time
    Searched full:cerr (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/stlport/stlport/using/h/
iostream.h 11 #if !defined(cerr)
12 using _STLP_OLD_IO_NAMESPACE::cerr;
  /external/stlport/stlport/using/
iostream 6 using _STLP_VENDOR_STD::cerr;
  /external/stlport/test/eh/
main.cpp 117 // using std::cerr;
130 cerr<<"Usage : "<<name<<" [-n <iterations>] [-s <size>] [-l] [-e] [-q]/[-v] [-t] [test_name...]\n";
131 cerr<<"\t[-n <iterations>] : number of test iterations, default==100;"<<endl;
132 cerr<<"\t[-s <size>] : base value for random container sizes, default==1000;"<<endl;
133 cerr<<"\t[-e] : don't throw exceptions, test for leak in normal conditions;"<<endl;
135 // cerr<<"\t[-i] : ignore leak errors;"<<endl;
136 cerr<<"\t[-q] : quiet mode;"<<endl;
137 cerr<<"\t[-v] : verbose mode;"<<endl;
138 cerr<<"\t[-t] : track each allocation;"<<endl;
139 cerr<<"\t[test name [test name...]] : run only some of the tests by name (default==all tests):"<<endl
    [all...]
nc_alloc.cpp 288 EH_STD::cerr<<"\nEH TEST FAILURE !\n"; member in class:EH_STD
291 EH_STD::cerr << "ERROR : " << alloc_count << " outstanding allocations.\n";
293 EH_STD::cerr << "ERROR : " << object_count << " non-destroyed objects.\n";
312 EH_STD::cerr<<"["<<current_container<<"] :";
313 EH_STD::cerr<<"testing "<<current_test <<" (" << current_test_category <<")";
315 EH_STD::cerr<<EH_STD::endl;
317 EH_STD::cerr<<" ... "; member in class:EH_STD
322 EH_STD::cerr<<(count+1)<<" try successful"<<EH_STD::endl;
LeakCheck.h 172 EH_STD::ostream_iterator<value_type> o(EH_STD::cerr, " ");
173 EH_STD::cerr<<"EH test FAILED:\nStrong guaranee failed !\n";
175 EH_STD::cerr<<"\nOriginal is:\n";
177 EH_STD::cerr<<EH_STD::endl;
  /external/astl/include/
iostream 41 * initialize the cout/cerr streams and that statics are initialized
43 * just in case another included one uses cout/cerr in a static
46 * The storage for cout and cerr is in ios_globals.cpp.
53 extern ostream cerr; // Linked to standard error (unbuffered)
57 // streams (cout, cerr, etc...) have been initialized.
stdio_filebuf.h 38 * Implementation of the streambuf used to build the cout and cerr
  /external/astl/src/
ios_globals.cpp 31 // contains forward declarations for cout, cerr... that will conflict
38 // Global instances of cout and cerr. Here we reserve the memory for
43 // - cout and cerr are mandated by the standard.
45 // stderr streambuf implementation used to build the cout and cerr
56 ostream_mem cerr; member in namespace:std
ios_base.cpp 32 #include <iostream> // For cout, cerr
107 // Create the global cout and cerr
109 // cout/cerr storage are in ios_globals.cpp.
113 new (&cerr) ostream(&stdio_filebuf_cerr);
122 cerr.flush();
  /external/oprofile/libabi/
opimport.cpp 62 cerr << "source byte order is: "
90 cerr << hex << "get " << sz << " = " << nbytes
103 cerr << " = " << targ << endl;
149 cerr << "extracting " << node_nr << " nodes of " << step << " bytes each " << endl;
160 cerr << strerror(rc) << endl;
175 cerr << "error: must specify exactly 1 input file" << endl;
184 cerr << "error: cannot open abi file "
192 cerr << "input abi is identical to native. "
211 cerr << "odb_open() fail:\n"
219 cerr << "caught abi exception: " << e.desc << endl
    [all...]
  /external/stlport/stlport/
iostream 53 # define cerr _STLP_cerr
61 // program; the same applies to cout and wcout, and cerr/clog and
68 extern _STLP_DECLSPEC ofstream cerr;
72 extern _STLP_DECLSPEC ostream cerr;
iostream.h 39 using _STLP_STD::cerr;
  /external/astl/tests/
test_iostream.cpp 57 EXPECT_TRUE(std::cerr.precision() == 6);
60 std::cerr.precision(20);
63 EXPECT_TRUE(std::cerr.precision() == 20);
66 std::cerr.precision(6);
72 std::cerr << "Hi from stderr\n"; member in class:android::std
  /external/skia/emoji/
GmojiMaker.cpp 56 std::cerr << "Can't open " << argv[1] << " for input. Aborting\n";
74 std::cerr << "Expected hex char on line " << lineNo
81 std::cerr << "PUA not in expected range " << pua << " line "
86 std::cerr << "PUA value not in ascending order line "
  /external/stlport/test/unit/
swap_test.cpp 124 cerr << "false type" << endl;
126 cerr << "true type" << endl;
128 cerr << "unknown type" << endl;
iostream_test.cpp 87 CPPUNIT_CHECK( cerr.rdbuf()->in_avail() == -1 );
num_put_get_test.cpp 587 // cerr << str.str() << endl;
608 // cerr.setf(ios::fixed, ios::floatfield);
609 // cerr << DBL_MAX << endl;
610 // cerr << 1.0e+37 << endl;
1067 // cerr << buf << endl;
1088 // cerr << buf << endl;
    [all...]
  /external/stlport/src/
iostream.cpp 39 # define cerr _STLP_cerr macro
72 _STLP_DECLSPEC ostream cerr(0);
102 _STLP_DECLSPEC _Stl_aligned_buffer<ostream> cerr;
107 _Stl_aligned_buffer<ostream> cerr;
112 # pragma alias("?cerr@std@@3V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@A", "?cerr@std@@3T?$_Stl_aligned_buffer@std@V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@@1@A")
226 ostream* ptr_cerr = new(&cerr) ostream(cerr_buf.get()); cerr_buf.release();
252 ostream* ptr_cerr = &cerr;
342 delete (&cerr)->rdbuf(cerr_buf.release());
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
ofstream.h 20 /// \brief A string stream that writes to an fd. Implements cout and cerr.
76 extern ofstream cout, cerr;
  /external/bison/m4/
cxx.m4 36 [std::cerr << "";
  /external/icu4c/tools/tzcode/
tz2icu.cpp 495 cerr << os.str() << "; using 0" << endl;
507 cerr << "Warning: unused abbreviation: " << ii << endl;
631 cerr << "Error: Invalid directory: " << dirname << endl;
646 cerr << "Error: While processing \"" << path << "\", "
672 cerr << "Error: Invalid directory: " << dir << endl;
676 cerr << "Error: Directory name too long" << endl;
697 cerr << "Error: While processing \"" << path << "\", "
710 cerr << "Error: While processing \"" << subfiles[i] << "\", "
    [all...]
icuzdump.cpp 298 cerr << "Illegal command line argument(s)" << endl << endl;
302 cerr
390 cerr << "Cannot open file " << path << endl;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compat.h 246 std::cerr << type << ": ";
249 std::cerr << endl;
253 ostream &stream() { return std::cerr; }
  /external/stlport/stlport/stl/config/
_dm.h 44 DYNAMIC: Export issues with cin, cout, cerr, clog in src/iostream.cpp.
  /external/bison/tests/
c++.at 43 std::cerr << l << s << std::endl;

Completed in 298 milliseconds

1 2 3