Searched refs:oct (Results 1 - 7 of 7) sorted by relevance

/haiku/headers/cpp/
H A Dstream.h48 extern char* oct(long, int=0);
49 extern char* oct(int, int=0);
50 extern char* oct(unsigned long, int=0);
51 extern char* oct(unsigned int, int=0);
H A Diostream.h277 { i.setf(ios::dec, ios::dec|ios::hex|ios::oct); return i; }
279 { i.setf(ios::hex, ios::dec|ios::hex|ios::oct); return i; }
280 inline ios& oct(ios& i) function
281 { i.setf(ios::oct, ios::dec|ios::hex|ios::oct); return i; }
H A Dstreambuf.h154 dec=_IO_DEC, oct=_IO_OCT, hex=_IO_HEX, enumerator in enum:ios::__anon71
164 basefield=dec+oct+hex,
/haiku/src/libs/stdc++/legacy/
H A Dstream.cc130 char* oct(long i, int len /* = 0 */) function
134 char* oct(int i, int len /* = 0 */) function
138 char* oct(unsigned long i, int len /* = 0 */) function
142 char* oct(unsigned int i, int len /* = 0 */) function
H A Diomanip.cc41 b = ios::oct; break;
H A Dioextend.cc36 | ios::dec | ios::oct | ios::hex | ios::showbase | ios::showpoint
H A Diostream.cc315 else if ((stream.flags() & ios::basefield) == ios::oct)
518 if ((stream.flags() & ios::basefield) == ios::oct) { // Octal
608 if (n < 0 && (flags() & (ios::oct|ios::hex)) == 0)
635 if (n < 0 && (flags() & (ios::oct|ios::hex)) == 0)
662 if (n < 0 && (flags() & (ios::oct|ios::hex)) == 0)

Completed in 30 milliseconds