Lines Matching refs:sal_Bool

60 	sal_Bool		bFormulas;				// Formeln im Text?
61 sal_Bool bIncludeFiltered; // include filtered rows? (default true)
62 sal_Bool bAll; // keine Selektion
63 sal_Bool bSingle; // Einfachselektion
64 sal_Bool bUndo; // Mit Undo?
65 sal_Bool bOverflow; // zuviele Zeilen/Spalten
71 sal_Bool StartPaste(); // Protect-Check, Undo einrichten
73 sal_Bool Doc2Text( SvStream& );
74 sal_Bool Text2Doc( SvStream& );
75 sal_Bool Doc2Sylk( SvStream& );
76 sal_Bool Sylk2Doc( SvStream& );
77 sal_Bool Doc2HTML( SvStream&, const String& );
78 sal_Bool Doc2RTF( SvStream& );
79 sal_Bool Doc2Dif( SvStream& );
80 sal_Bool Dif2Doc( SvStream& );
81 sal_Bool ExtText2Doc( SvStream& ); // mit pExtOptions
82 sal_Bool RTF2Doc( SvStream&, const String& rBaseURL );
83 sal_Bool HTML2Doc( SvStream&, const String& rBaseURL );
94 sal_Bool IsDoubleRef() const { return sal_Bool( !( bAll || bSingle ) ); } in IsDoubleRef()
95 sal_Bool IsSingleRef() const { return bSingle; } in IsSingleRef()
96 sal_Bool IsNoRef() const { return bAll; } in IsNoRef()
97 sal_Bool IsRef() const { return sal_Bool( !bAll ); } in IsRef()
101 sal_Bool IsUndo() const { return bUndo; } in IsUndo()
102 void SetUndo( sal_Bool b ) { bUndo = b; } in SetUndo()
104 static sal_Bool IsFormatSupported( sal_uLong nFormat );
107 …static void WriteUnicodeOrByteString( SvStream& rStrm, const String& rString, sal_Bool bZero = sal…
109 static inline sal_Bool IsEndianSwap( const SvStream& rStrm );
118 sal_Bool IsFormulas() const { return bFormulas; } in IsFormulas()
119 void SetFormulas( sal_Bool b ) { bFormulas = b; } in SetFormulas()
120 sal_Bool IsIncludeFiltered() const { return bIncludeFiltered; } in IsIncludeFiltered()
121 void SetIncludeFiltered( sal_Bool b ) { bIncludeFiltered = b; } in SetIncludeFiltered()
128 sal_Bool ImportString( const ::rtl::OUString&, sal_uLong=FORMAT_STRING );
129 sal_Bool ExportString( ::rtl::OUString&, sal_uLong=FORMAT_STRING );
130 sal_Bool ExportByteString( ByteString&, rtl_TextEncoding, sal_uLong=FORMAT_STRING );
132 sal_Bool ImportStream( SvStream&, const String& rBaseURL, sal_uLong=FORMAT_STRING );
133 sal_Bool ExportStream( SvStream&, const String& rBaseURL, sal_uLong=FORMAT_STRING );
135 sal_Bool ImportData( const String& rMimeType,
137 sal_Bool ExportData( const String& rMimeType,
140 sal_Bool IsOverflow() const { return bOverflow; } // nach dem Importieren in IsOverflow()
152 inline sal_Bool ScImportExport::IsEndianSwap( const SvStream& rStrm ) in IsEndianSwap()