Lines Matching refs:c

59 sal_Bool DumpChar( sal_uInt8 c );
782 sal_uInt8 c; in DumpIt() local
783 xStrm->Read( &c, sizeof(c) ); in DumpIt()
784 *pOut << "<0x" << hex2 << (sal_uInt16)c << dec2 << "> "; in DumpIt()
797 sal_uInt8 c; in DumpItSmall() local
799 rStrm.Read( &c, sizeof(c) ); in DumpItSmall()
801 if( c <= 9 ) in DumpItSmall()
802 *pOut << (sal_uInt16)c; in DumpItSmall()
804 *pOut << "0x" << hex2 << (sal_uInt16)c << dec2; in DumpItSmall()
958 sal_uInt8 c; in DumpFkp() local
970 xStrm->Read( &c, 1 ); // lese Word Offset ( evtl. Teil von BX ) in DumpFkp()
974 nOfs= c * 2; // -> Byte Offset in DumpFkp()
976 xStrm->Read( &c, 1 ); in DumpFkp()
978 if( !c ) in DumpFkp()
979 xStrm->Read( &c, 1 ); in DumpFkp()
990 *pOut << ", Len: " << (short)c << endl1; in DumpFkp()
991 DumpSprms( nVersion, *xStrm, (short)c ); in DumpFkp()
995 short nLen = c * 2; // So weit bis zum naechsten ! in DumpFkp()
1238 sal_uInt8 c; in DumpPcd() local
1241 xTableStream->Read( &c, 1 ); in DumpPcd()
1243 if( c == 2 ) in DumpPcd()
1419 sal_uInt8 c; in DumpPlainText1() local
1426 xStrm->Read( &c, sizeof(c) ); in DumpPlainText1()
1427 if ( DumpChar( c ) ) in DumpPlainText1()
1461 sal_Bool DumpChar( sal_uInt8 c ) in DumpChar() argument
1463 if ( ( c >= 32 ) && ( c <= 127 ) ){ in DumpChar()
1464 *pOut << c; in DumpChar()
1467 switch (c){ in DumpChar()
1474 case 0xdc: *pOut << c; return sal_False; in DumpChar()
1479 case 0xc: *pOut << "<0x" << hex2 << (sal_uInt16)c << dec2 << '>'; in DumpChar()
1481 default: *pOut << "<0x" << hex2 << (sal_uInt16)c << dec2 << '>'; in DumpChar()
2312 sal_uInt8 c; in DumpEscherRec() local
2313 *xTableStream >> c; in DumpEscherRec()
2314 *pOut << sHex[ ( c & 0xf0 ) >> 4 ] << sHex[ c & 0x0f ] << ' '; in DumpEscherRec()
2344 unsigned char c; in DumpEscherRecs() local
2345 *xTableStream >> c; in DumpEscherRecs()
2355 << "DummyChar: 0x" << hex << (int)c << dec << endl1; in DumpEscherRecs()
2500 char c; in Dump1Style() local
2509 case 1: c = 'P'; break; in Dump1Style()
2510 case 2: c = 'C'; break; in Dump1Style()
2511 default: c = '?'; break; in Dump1Style()
2513 *pOut << c << "-Style Nr:" << nNr << ' '; in Dump1Style()
2534 end( *pOut, *xTableStream ) << c << "-Style" << endl1; in Dump1Style()