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

1 2 3

  /external/stlport/stlport/using/h/
iomanip.h 5 using ::setprecision;
  /ndk/sources/cxx-stl/stlport/stlport/using/h/
iomanip.h 5 using ::setprecision;
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/using/h/
iomanip.h 5 using ::setprecision;
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/using/h/
iomanip.h 5 using ::setprecision;
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/using/h/
iomanip.h 5 using ::setprecision;
  /external/stlport/stlport/using/
iomanip 5 using _STLP_NEW_IO_NAMESPACE::setprecision;
  /ndk/sources/cxx-stl/stlport/stlport/using/
iomanip 5 using _STLP_NEW_IO_NAMESPACE::setprecision;
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/using/
iomanip 5 using _STLP_NEW_IO_NAMESPACE::setprecision;
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/using/
iomanip 5 using _STLP_NEW_IO_NAMESPACE::setprecision;
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/using/
iomanip 5 using _STLP_NEW_IO_NAMESPACE::setprecision;
  /external/astl/include/
iomanip 42 // This allows something like that : cout << setprecision(10);
47 struct SetPrecision { int precision; };
53 inline android::SetPrecision setprecision(int precision) {
54 android::SetPrecision params;
59 inline ostream& operator<<(ostream& os, android::SetPrecision params) {
  /external/zlib/contrib/iostream2/
zstream_test.cpp 20 out << setw(50) << setfill('#') << setprecision(20) << x << endl << y << endl << z << endl;
  /external/stlport/test/unit/
num_put_get_test.cpp 197 str << scientific << setprecision(50) << limits::max();
279 str << setprecision(limits::digits10 + 2) << limits::max();
292 str << setprecision(limits::digits10 + 1) << limits::max();
414 ostr << setprecision(200) << 1.23457e+17f;
422 ostr << setprecision(200) << numeric_limits<float>::min();
450 ostr << fixed << showpos << setprecision(100) << 1.23457e+17f;
460 ostr << scientific << setprecision(8) << 0.12345678f;
470 ostr << fixed << setprecision(8) << setw(30) << setfill('0') << 0.12345678f;
478 ostr << fixed << showpos << setprecision(8) << setw(30) << setfill('0') << 0.12345678f;
486 ostr << fixed << showpos << setprecision(8) << setw(30) << left << setfill('0') << 0.12345678f
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
num_put_get_test.cpp 197 str << scientific << setprecision(50) << limits::max();
279 str << setprecision(limits::digits10 + 2) << limits::max();
292 str << setprecision(limits::digits10 + 1) << limits::max();
414 ostr << setprecision(200) << 1.23457e+17f;
422 ostr << setprecision(200) << numeric_limits<float>::min();
450 ostr << fixed << showpos << setprecision(100) << 1.23457e+17f;
460 ostr << scientific << setprecision(8) << 0.12345678f;
470 ostr << fixed << setprecision(8) << setw(30) << setfill('0') << 0.12345678f;
478 ostr << fixed << showpos << setprecision(8) << setw(30) << setfill('0') << 0.12345678f;
486 ostr << fixed << showpos << setprecision(8) << setw(30) << left << setfill('0') << 0.12345678f
    [all...]
  /ndk/tests/device/test-stlport/unit/
num_put_get_test.cpp 197 str << scientific << setprecision(50) << limits::max();
279 str << setprecision(limits::digits10 + 2) << limits::max();
292 str << setprecision(limits::digits10 + 1) << limits::max();
414 ostr << setprecision(200) << 1.23457e+17f;
422 ostr << setprecision(200) << numeric_limits<float>::min();
450 ostr << fixed << showpos << setprecision(100) << 1.23457e+17f;
460 ostr << scientific << setprecision(8) << 0.12345678f;
470 ostr << fixed << setprecision(8) << setw(30) << setfill('0') << 0.12345678f;
478 ostr << fixed << showpos << setprecision(8) << setw(30) << setfill('0') << 0.12345678f;
486 ostr << fixed << showpos << setprecision(8) << setw(30) << left << setfill('0') << 0.12345678f
    [all...]
  /external/stlport/stlport/
iomanip.h 36 using _STLP_STD::setprecision;
  /ndk/sources/cxx-stl/stlport/stlport/
iomanip.h 36 using _STLP_STD::setprecision;
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/
iomanip.h 36 using _STLP_STD::setprecision;
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/
iomanip.h 36 using _STLP_STD::setprecision;
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/
iomanip.h 36 using _STLP_STD::setprecision;
  /external/oprofile/libutil++/
string_manip.cpp 121 << setprecision(fract_width) << value;
127 << setprecision(fract_width - 3) << value;
  /external/astl/tests/
test_iomanip.cpp 46 s << std::setprecision(20);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyMotionEvent.java 108 public MonkeyMotionEvent setPrecision(float xPrecision, float yPrecision) {
  /external/stlport/stlport/stl/
_iomanip.h 119 setprecision(int __n) { function
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_iomanip.h 119 setprecision(int __n) { function

Completed in 403 milliseconds

1 2 3