Lines Matching refs:endl

259 		rOutStm << "//class SvMetaClass" << endl;  in WriteAttributesSvIdl()
264 rOutStm << ';' << endl; in WriteAttributesSvIdl()
391 rOutStm << ';' << endl; in WriteContextSvIdl()
404 rOutStm << ';' << endl; in WriteContextSvIdl()
517 rOutStm << endl; in WriteSvIdl()
519 rOutStm << endl; in WriteSvIdl()
645 rOutStm << "<INTERFACE>" << endl in Write()
649 rOutStm << endl; in Write()
651 rOutStm << "</INTERFACE>" << endl << endl; in Write()
841 rOutStm << "#ifdef " << GetName().GetBuffer() << endl; in WriteSfx()
842 rOutStm << "#undef ShellClass" << endl; in WriteSfx()
843 rOutStm << "#undef " << GetName().GetBuffer() << endl; in WriteSfx()
844 rOutStm << "#define ShellClass " << GetName().GetBuffer() << endl; in WriteSfx()
863 rOutStm << "#endif" << endl << endl; in WriteSfx()
868 rOutStm << "SFX_ARGUMENTMAP(" << GetName().GetBuffer() << ')' << endl in WriteSfx()
869 << '{' << endl; in WriteSfx()
893 rOutStm << "SFX_ARGUMENT( 0, 0, SfxVoidItem )" << endl; in WriteSfx()
895 rOutStm << endl << "};" << endl << endl; in WriteSfx()
906 rOutStm << endl; in WriteSfx()
909 rOutStm << "SFX_SLOTMAP_ARG(" << GetName().GetBuffer() << ')' << endl in WriteSfx()
910 << '{' << endl; in WriteSfx()
924 << "0, SfxVoidItem, 0, 0, \"\", 0 )" << endl; in WriteSfx()
926 rOutStm << endl << "};" << endl << "#endif" << endl << endl; in WriteSfx()
977 << ": public " << pSup << endl in WriteHxx()
978 << '{' << endl in WriteHxx()
979 << "protected:" << endl in WriteHxx()
980 << "\tvirtual SvGlobalName GetTypeName() const;" << endl in WriteHxx()
981 << "\tvirtual sal_Bool FillTypeLibInfo( SvGlobalName *, sal_uInt16 * pMajor," << endl in WriteHxx()
982 << "\t sal_uInt16 * pMinor ) const;" << endl in WriteHxx()
983 …<< "\tvirtual sal_Bool FillTypeLibInfo( ByteString * pName, sal_uInt16 * pMajor," << endl; in WriteHxx()
985 << "\t sal_uInt16 * pMinor ) const;" << endl in WriteHxx()
986 << "\tvirtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) = 0;" << endl in WriteHxx()
987 << "public:" << endl in WriteHxx()
988 << "\t static SvGlobalName ClassName()" << endl in WriteHxx()
989 …e( " << ByteString( GetUUId().GetctorName(), RTL_TEXTENCODING_UTF8 ).GetBuffer() << " ); }" << endl in WriteHxx()
990 << "};" << endl; in WriteHxx()
1007 rOutStm << "SvGlobalName " << name.GetBuffer() << "::GetTypeName() const" << endl in WriteCxx()
1008 << '{' << endl in WriteCxx()
1009 << "\treturn ClassName();" << endl in WriteCxx()
1010 << '}' << endl; in WriteCxx()
1014 rOutStm << "sal_Bool " << name.GetBuffer() << "::FillTypeLibInfo( SvGlobalName * pGN," << endl in WriteCxx()
1015 << "\t sal_uInt16 * pMajor," << endl in WriteCxx()
1016 << "\t sal_uInt16 * pMinor ) const" << endl in WriteCxx()
1017 << '{' << endl in WriteCxx()
1018 …<< ByteString( pMod->GetUUId().GetctorName(), RTL_TEXTENCODING_UTF8 ).GetBuffer() << " );" << endl; in WriteCxx()
1019 rOutStm << "\t*pGN = aN;" << endl in WriteCxx()
1020 …= " << ByteString::CreateFromInt32(pMod->GetVersion().GetMajorVersion()).GetBuffer() << ';' << endl in WriteCxx()
1021 …= " << ByteString::CreateFromInt32(pMod->GetVersion().GetMinorVersion()).GetBuffer() << ';' << endl in WriteCxx()
1022 << "\treturn sal_True;" << endl in WriteCxx()
1023 << '}' << endl; in WriteCxx()
1027 << "\t sal_uInt16 * pMajor," << endl in WriteCxx()
1028 << "\t sal_uInt16 * pMinor ) const" << endl; in WriteCxx()
1029 rOutStm << '{' << endl in WriteCxx()
1030 << "\t*pName = \"" << pMod->GetTypeLibFileName().GetBuffer() << "\";" << endl in WriteCxx()
1031 …= " << ByteString::CreateFromInt32(pMod->GetVersion().GetMajorVersion()).GetBuffer() << ';' << endl in WriteCxx()
1032 …= " << ByteString::CreateFromInt32(pMod->GetVersion().GetMinorVersion()).GetBuffer() << ';' << endl in WriteCxx()
1033 << "\treturn sal_True;" << endl in WriteCxx()
1034 << '}' << endl; in WriteCxx()
1036 …m << "void " << name.GetBuffer() << "::Notify( SfxBroadcaster& rBC, const SfxHint& rHint )" << endl in WriteCxx()
1037 << '{' << endl in WriteCxx()
1038 << "\t" << pSup << "::Notify( rBC, rHint );" << endl in WriteCxx()
1039 << '}' << endl; in WriteCxx()