| /trunk/main/codemaker/source/cunomaker/ |
| H A D | cunotype.cxx | 255 OString CunoType::dumpHeaderDefine(FileStream& o, sal_Char* prefix, sal_Bool bExtended) in dumpHeaderDefine() argument 283 o << "#ifndef " << tmp << "\n#define " << tmp << "\n"; in dumpHeaderDefine() 288 void CunoType::dumpDefaultHIncludes(FileStream& o) in dumpDefaultHIncludes() argument 290 o << "#ifndef _UNO_CUNO_H_\n" in dumpDefaultHIncludes() 304 void CunoType::dumpDefaultCIncludes(FileStream& o) in dumpDefaultCIncludes() argument 306 o << "#ifndef _OSL_MUTEX_H_\n" in dumpDefaultCIncludes() 311 void CunoType::dumpInclude(FileStream& o, const OString& typeName, sal_Char* prefix, sal_Bool bExte… in dumpInclude() argument 347 o << "#ifndef " << tmp << "\n#include <"; in dumpInclude() 350 o << tmpBuf.makeStringAndClear(); in dumpInclude() 353 o << tmpBuf.makeStringAndClear(); in dumpInclude() [all …]
|
| H A D | cunotype.hxx | 74 virtual sal_Bool dumpHFile(FileStream& o) throw( CannotDumpException ) = 0; 75 virtual sal_Bool dumpCFile(FileStream& o) throw( CannotDumpException ) = 0; 77 …virtual ::rtl::OString dumpHeaderDefine(FileStream& o, sal_Char* prefix, sal_Bool bExtended=sal_Fa… 78 virtual void dumpDefaultHIncludes(FileStream& o); 79 virtual void dumpDefaultCIncludes(FileStream& o); 80 …virtual void dumpInclude(FileStream& o, const ::rtl::OString& typeName, sal_Char* prefix, sal_Bool… 81 virtual void dumpDepIncludes(FileStream& o, const ::rtl::OString& typeName, sal_Char* prefix); 83 virtual void dumpOpenExternC(FileStream& o); 84 virtual void dumpCloseExternC(FileStream& o); 86 virtual void dumpGetCunoType(FileStream& o); [all …]
|
| /trunk/main/codemaker/source/cppumaker/ |
| H A D | cpputype.cxx | 312 FileStream& o, char const * prefix, sal_Bool bExtended) in dumpHeaderDefine() argument 339 o << "#ifndef " << tmp << "\n#define " << tmp << "\n"; in dumpHeaderDefine() 461 void CppuType::dumpLightGetCppuType(FileStream& o) in dumpLightGetCppuType() argument 463 dumpGetCppuTypePreamble(o); in dumpLightGetCppuType() 464 o << indent() in dumpLightGetCppuType() 467 o << indent() << "if ( !the_type )\n" << indent() << "{\n"; in dumpLightGetCppuType() 469 o << indent() << "typelib_static_type_init( &the_type, " in dumpLightGetCppuType() 472 o << indent() << "}\n"; in dumpLightGetCppuType() 473 o << indent() in dumpLightGetCppuType() 476 dumpGetCppuTypePostamble(o); in dumpLightGetCppuType() [all …]
|
| H A D | cpputype.hxx | 69 …virtual sal_Bool dumpHFile(FileStream& o, codemaker::cppumaker::Includes & includes) throw( Cannot… 70 …virtual sal_Bool dumpHxxFile(FileStream& o, codemaker::cppumaker::Includes & includes) throw( Cann… 73 FileStream& o, char const * prefix, sal_Bool bExtended=sal_False); 76 virtual void dumpLightGetCppuType(FileStream& o); 77 virtual void dumpNormalGetCppuType(FileStream& o); 78 virtual void dumpComprehensiveGetCppuType(FileStream& o); 80 virtual void dumpType(FileStream& o, const ::rtl::OString& type, bool bConst=false, 84 …void dumpCppuGetType(FileStream& o, const ::rtl::OString& type, sal_Bool bDecl=sal_False, CppuT… 88 void dumpConstantValue(FileStream& o, sal_uInt16 index); 104 void dumpCppuGetTypeMemberDecl(FileStream& o, CppuTypeDecl eDeclFlag); [all …]
|
| /trunk/main/unodevtools/source/skeletonmaker/ |
| H A D | javacompskeleton.cxx | 36 void generatePackage(std::ostream & o, const OString & implname) in generatePackage() argument 40 o << "package " << implname.copy(0, index) << ";\n\n"; in generatePackage() 43 void generateImports(std::ostream & o, ProgramOptions const & options, in generateImports() argument 49 o << "import com.sun.star.uno.UnoRuntime;\n"; in generateImports() 50 o << "import com.sun.star.uno.XComponentContext;\n"; in generateImports() 52 o << "import com.sun.star.lib.uno.helper.Factory;\n"; in generateImports() 53 o << "import com.sun.star.lang.XSingleComponentFactory;\n"; in generateImports() 54 o << "import com.sun.star.registry.XRegistryKey;\n"; in generateImports() 59 o << "import com.sun.star.lib.uno.helper.ComponentBase;\n"; in generateImports() 61 o << "import com.sun.star.lib.uno.helper.WeakBase;\n"; in generateImports() [all …]
|
| H A D | cpptypemaker.cxx | 34 void printType(std::ostream & o, in printType() argument 45 o << "sal_False"; in printType() 57 o << "0"; in printType() 71 o << name.copy(name.lastIndexOf('/')) in printType() 87 o << "const "; in printType() 90 o << ((options.shortnames) ? "css::uno::Sequence< " : in printType() 94 o << ((options.shortnames) ? "css::uno::Reference< " : in printType() 98 o << scopedCppName(codemaker::cpp::translateUnoToCppType( in printType() 103 o << " >"; in printType() 106 o << "< "; in printType() [all …]
|
| H A D | javatypemaker.cxx | 33 void printType(std::ostream & o, 38 void printType(std::ostream & o, in printType() argument 49 o << "false"; in printType() 61 o << "0"; in printType() 75 o << "null"; in printType() 78 o << "com.sun.star.uno.Any.VOID"; in printType() 81 o << "com.sun.star.uno.Type.VOID"; in printType() 85 o << "new "; in printType() 92 o << sType.getStr(); in printType() 94 o << '<'; in printType() [all …]
|
| H A D | cppcompskeleton.cxx | 36 void generateIncludes(std::ostream & o, in generateIncludes() argument 42 o << "#include \"sal/config.h\"\n"; in generateIncludes() 44 o << "#include \"cppuhelper/factory.hxx\"\n" in generateIncludes() 47 o << "#include \"com/sun/star/uno/XComponentContext.hpp\"\n"; in generateIncludes() 50 o << "#include \"cppuhelper/compbase" << interfaces.size() << ".hxx\"\n"; in generateIncludes() 51 o << "#include \"cppuhelper/basemutex.hxx\"\n"; in generateIncludes() 53 o << "#include \"cppuhelper/implbase" << interfaces.size() << ".hxx\"\n"; in generateIncludes() 58 o << "#include \"cppuhelper/rpopshlp.hxx\"\n"; in generateIncludes() 60 o << "#include \"cppuhelper/propertysetmixin.hxx\"\n"; in generateIncludes() 66 o << "#include \"" in generateIncludes() [all …]
|
| /trunk/main/sc/qa/unoapi/ |
| H A D | sc.sce | 21 # i84653 -o sc.ScPageObj 22 # i84554 -o sc.AccessibleEditableTextPara_PreviewNote 23 # i88241 -o sc.AccessibleEditableTextPara_HeaderFooter 24 -o sc.AccessibleEditableTextPara_PreviewCell 25 -o sc.ScAccessibleCell 26 # i91044 -o sc.ScAccessibleCsvCell 27 # i91044 -o sc.ScAccessibleCsvGrid 28 # i84641 -o sc.ScAccessibleCsvRuler 29 # i88330 -o sc.ScAccessibleDocument 30 # i91045 -o sc.ScAccessibleDocumentPagePreview [all …]
|
| /trunk/main/codemaker/source/bonobowrappermaker/ |
| H A D | corbatype.cxx | 78 sal_Bool CorbaType::dump(CorbaOptions* pOptions, FileStream& o, TypeSet* allreadyDumped) in dump() argument 83 ret = dumpConversionFunctions(o, allreadyDumped); in dump() 88 sal_Bool CorbaType::dumpDependedTypes(CorbaOptions* pOptions, FileStream& o, TypeSet* allreadyDumpe… in dumpDependedTypes() argument 110 o, allreadyDumped, m_generatedConversions)) in dumpDependedTypes() 124 sal_Bool CorbaType::dumpConversionFunctions(FileStream& o, TypeSet* allreadyDumped) in dumpConversionFunctions() argument 129 dumpInclude(o, allreadyDumped, m_typeName, "hpp", sal_False); in dumpConversionFunctions() 130 dumpDepIncludes(o, allreadyDumped, m_typeName, "hpp"); in dumpConversionFunctions() 132 dumpFunctions(o); in dumpConversionFunctions() 139 void CorbaType::dumpDefaultHxxIncludes(FileStream& o) in dumpDefaultHxxIncludes() argument 141 o << "#ifndef _OSL_MUTEX_HXX_\n" in dumpDefaultHxxIncludes() [all …]
|
| H A D | corbatype.hxx | 82 …virtual sal_Bool dump(CorbaOptions* pOptions, FileStream& o, TypeSet* allreadyDumped) throw( Canno… 83 …virtual sal_Bool dumpDependedTypes(CorbaOptions* pOptions, FileStream& o, TypeSet* allreadyDumped)… 84 …virtual sal_Bool dumpConversionFunctions(FileStream& o, TypeSet* allreadyDumped) throw( CannotDump… 86 static void dumpDefaultHxxIncludes(FileStream& o); 88 …virtual void dumpInclude(FileStream& o, TypeSet* allreadyDumped, const ::rtl::OString& typeName, s… 89 …virtual void dumpDepIncludes(FileStream& o, TypeSet* allreadyDumped, const ::rtl::OString& typeNam… 91 …virtual void dumpNameSpace(FileStream& o, sal_Bool bOpen = sal_True, sal_Bool bFull = sal_False, c… 92 virtual void dumpFunctions(FileStream& o) = 0; 100 virtual void dumpUnoType(FileStream& o, 112 virtual void dumpCorbaType(FileStream& o, [all …]
|
| /trunk/main/sw/qa/unoapi/ |
| H A D | sw.sce | 21 -o sw.CharacterStyle 22 -o sw.ConditionalParagraphStyle 23 -o sw.PageStyle 24 -o sw.ParagraphStyle 25 #i111197 -o sw.SwAccessibleDocumentPageView 26 #i86751 -o sw.SwAccessibleDocumentView 27 -o sw.SwAccessibleEndnoteView 28 #i113142 -o sw.SwAccessibleFooterView 29 #i114637 -o sw.SwAccessibleFootnoteView 30 #i113142 -o sw.SwAccessibleHeaderView [all …]
|
| /trunk/main/codemaker/source/idlmaker/ |
| H A D | idltype.cxx | 149 OString IdlType::dumpHeaderDefine(FileStream& o, sal_Char* prefix ) in dumpHeaderDefine() argument 168 o << "#ifndef " << tmp << "\n#define " << tmp << "\n"; in dumpHeaderDefine() 173 void IdlType::dumpDefaultHIncludes(FileStream& o) in dumpDefaultHIncludes() argument 177 void IdlType::dumpInclude(FileStream& o, const OString& genTypeName, const OString& typeName, sal_C… in dumpInclude() argument 198 o << "#ifndef " << tmp << "\n#include <"; in dumpInclude() 205 o << "../"; in dumpInclude() 211 o << tmp; in dumpInclude() 212 o << ">\n#endif\n"; in dumpInclude() 215 void IdlType::dumpDepIncludes(FileStream& o, const OString& typeName, sal_Char* prefix) in dumpDepIncludes() argument 244 o << "\n"; in dumpDepIncludes() [all …]
|
| /trunk/main/toolkit/qa/unoapi/ |
| H A D | toolkit.sce | 21 #i86007 -o toolkit.AccessibleButton 22 #i88332 -o toolkit.AccessibleCheckBox 23 #i86008 -o toolkit.AccessibleComboBox 24 -o toolkit.AccessibleDropDownComboBox 25 -o toolkit.AccessibleDropDownListBox 26 #i86110 -o toolkit.AccessibleEdit 27 -o toolkit.AccessibleFixedText 28 #i86110 -o toolkit.AccessibleList 29 #i86110 -o toolkit.AccessibleListBox 30 #i86110 -o toolkit.AccessibleListItem [all …]
|
| /trunk/main/forms/qa/unoapi/ |
| H A D | forms.sce | 21 -o forms.OButtonControl 22 #i111285 -o forms.OButtonModel 23 -o forms.OCheckBoxControl 24 -o forms.OCheckBoxModel 25 -o forms.OComboBoxControl 26 -o forms.OComboBoxModel 27 -o forms.OCurrencyControl 28 -o forms.OCurrencyModel 29 #-o forms.ODatabaseForm 30 -o forms.ODateControl [all …]
|
| /trunk/extras/l10n/source/pt/ |
| H A D | localize.sdf | 39 …BASIC_START SbERR_DUPLICATE_DEF & ERRCODE_RES_MASK 0 pt Definição duplicada. … 40 … RID_BASIC_START SbERR_ZERODIV & ERRCODE_RES_MASK 0 pt Divisão por zero. … 41 …IC_START SbERR_VAR_UNDEFINED & ERRCODE_RES_MASK 0 pt Variável não definida. … 47 … ERRCODE_RES_MASK 0 pt Procedimento de subprocedimento ou função não definidos. … 48 …RT SbERR_BAD_DLL_LOAD & ERRCODE_RES_MASK 0 pt Erro ao carregar o ficheiro DLL. … 49 …BASIC_START SbERR_BAD_DLL_CALL & ERRCODE_RES_MASK 0 pt Convenção de chamada de DLL in… 52 …IC_START SbERR_FILE_NOT_FOUND & ERRCODE_RES_MASK 0 pt Ficheiro não encontrado. … 62 …SIC_START SbERR_NO_DEVICE & ERRCODE_RES_MASK 0 pt Dispositivo não disponível. … 64 …RID_BASIC_START SbERR_NOT_READY & ERRCODE_RES_MASK 0 pt Disco não preparado. … 65 …D_BASIC_START SbERR_NOT_IMPLEMENTED & ERRCODE_RES_MASK 0 pt Não implementado. … [all …]
|
| /trunk/extras/l10n/source/pt-BR/ |
| H A D | localize.sdf | 39 …C_START SbERR_DUPLICATE_DEF & ERRCODE_RES_MASK 0 pt-BR Definição duplicada. … 40 …D_BASIC_START SbERR_ZERODIV & ERRCODE_RES_MASK 0 pt-BR Divisão por zero. … 41 …TART SbERR_VAR_UNDEFINED & ERRCODE_RES_MASK 0 pt-BR Variável não definida. … 47 …RES_MASK 0 pt-BR Procedimento Sub ou procedimento de Function não definido. … 49 …C_START SbERR_BAD_DLL_CALL & ERRCODE_RES_MASK 0 pt-BR Convenção de chamada de DLL in… 52 …START SbERR_FILE_NOT_FOUND & ERRCODE_RES_MASK 0 pt-BR Arquivo não encontrado. … 64 …SIC_START SbERR_NOT_READY & ERRCODE_RES_MASK 0 pt-BR O disco não está pronto. … 65 …SIC_START SbERR_NOT_IMPLEMENTED & ERRCODE_RES_MASK 0 pt-BR Não implementado. … 68 …START SbERR_PATH_NOT_FOUND & ERRCODE_RES_MASK 0 pt-BR Caminho não encontrado. … 69 …bERR_NO_OBJECT & ERRCODE_RES_MASK 0 pt-BR Variável do objeto não definida. … [all …]
|
| /trunk/main/framework/qa/unoapi/ |
| H A D | framework.sce | 21 -o fwl.ContentHandlerFactory 22 -o fwl.FilterFactory 23 -o fwl.FrameLoaderFactory 24 -o fwl.SubstituteVariables 25 #i113245 -o fwl.TypeDetection 26 #i84346 -o fwl.PathSettings 27 -o fwk.DispatchRecorder 28 -o fwk.DispatchRecorderSupplier 29 -o fwk.FooterMenuController 30 -o fwk.ObjectMenuController [all …]
|
| /trunk/main/svx/qa/unoapi/ |
| H A D | svx.sce | 21 #i98339 -o svx.AccessibleControlShape 22 #i111278 -o svx.AccessibleEditableTextPara 23 #i111252 -o svx.AccessibleGraphicShape 24 #i46736 -o svx.AccessibleImageBullet 25 #i111252 -o svx.AccessibleOLEShape 26 #i111252 -o svx.AccessiblePageShape 27 #i111216 -o svx.AccessiblePresentationGraphicShape 28 #i111216 -o svx.AccessiblePresentationOLEShape 29 #i85539 -o svx.AccessiblePresentationShape 30 -o svx.AccessibleShape [all …]
|
| /trunk/main/chart2/qa/unoapi/ |
| H A D | sch.sce | 21 -o sch.ChXChartDocument 22 #i79073 -o sch.AccArea 23 #i79073 -o sch.AccAxis 24 #i79073 -o sch.AccDataPoint 25 #i79073 -o sch.AccDataSeries 26 #i79073 -o sch.AccDiagram 27 #i79073 -o sch.AccFloor 28 #i79073 -o sch.AccGrid 29 #i79073 -o sch.AccLegend 30 #i79073 -o sch.AccLegendEntry [all …]
|
| /trunk/main/xmloff/qa/unoapi/ |
| H A D | xmloff.sce | 21 #111102# -o xmloff.Chart.XMLContentExporter 22 #111102# -o xmloff.Chart.XMLContentImporter 23 #111102# -o xmloff.Chart.XMLExporter 24 #111102# -o xmloff.Chart.XMLImporter 25 #111102# -o xmloff.Chart.XMLStylesExporter 26 #111102# #i112047 -o xmloff.Chart.XMLStylesImporter 27 -o xmloff.Draw.XMLContentExporter 28 -o xmloff.Draw.XMLContentImporter 29 -o xmloff.Draw.XMLExporter 30 -o xmloff.Draw.XMLImporter [all …]
|
| /trunk/main/solenv/inc/ |
| H A D | rules.mk | 29 @$(RM) $@ $(@:s/.obj/.o/) 30 …LAGS) $(GLOBAL_EXCEPTIONS_FLAGS)) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(OBJ)/$*.o $(CFLAGSINCXX)$(PWD)… 33 $(COMMAND_ECHO)$(ADJUSTVISIBILITY) -p $(@:s/.obj/.o/) 36 @$(IFEXIST) $(@:s/.obj/.o/) $(THEN) $(TOUCH) $@ $(FI) 53 @$(RM) $@ $(@:s/.obj/.o/) 54 …LAGS) $(GLOBAL_EXCEPTIONS_FLAGS)) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(OBJ)/$*.o $(CFLAGSINCXX)$(PWD)… 56 $(COMMAND_ECHO)$(ADJUSTVISIBILITY) -p $(@:s/.obj/.o/) 58 @$(IFEXIST) $(@:s/.obj/.o/) $(THEN) $(TOUCH) $@ $(FI) 75 @$(RM) $@ $(@:s/.obj/.o/) 76 …LAGS) $(GLOBAL_EXCEPTIONS_FLAGS)) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(OBJ)/$*.o $(CFLAGSINCXX)$(PWD)… [all …]
|
| /trunk/main/sd/qa/unoapi/ |
| H A D | sd.sce | 21 -o sd.AccessibleDrawDocumentView 22 #i111199 -o sd.AccessibleOutlineView 23 #i35935# -o sd.AccessibleSlideView 24 #i111042# -o sd.DrawController_DrawView 25 #i111042# -o sd.DrawController_HandoutView 26 #i111042# -o sd.DrawController_NotesView 27 #i111043# -o sd.DrawController_OutlineView 28 #i111042# -o sd.DrawController_PresentationView 29 -o sd.SdDocLinkTargets 30 -o sd.SdDrawPage [all …]
|
| /trunk/main/xmlhelp/source/cxxhelp/inc/qe/ |
| H A D | Query.hxx | 66 bool betterThan( const QueryHit* o ) in betterThan() argument 68 if( penalty_ != o->penalty_ ) in betterThan() 69 return penalty_ < o->penalty_; in betterThan() 70 else if( begin_ != o->begin_ ) in betterThan() 71 return begin_ < o->begin_; in betterThan() 72 else if( end_ != o->end_ ) in betterThan() 73 return end_ < o->end_; in betterThan() 78 bool worseThan( const QueryHit* o ) in worseThan() argument 80 if( penalty_ != o->penalty_ ) in worseThan() 81 return penalty_ > o->penalty_; in worseThan() [all …]
|
| /trunk/main/pyuno/source/module/ |
| H A D | pyuno_runtime.cxx | 215 OString o = OUStringToOString( str, osl_getThreadTextEncoding() ); in readLoggingConfig() local 216 o += "."; in readLoggingConfig() 217 o += OString::valueOf( (sal_Int32)data.Ident ); in readLoggingConfig() 219 *ppFile = fopen( o.getStr() , "w" ); in readLoggingConfig() 493 OString o = OUStringToOString( t.getTypeName(), RTL_TEXTENCODING_ASCII_US ); in any2PyObject() local 496 o.getStr(), (com::sun::star::uno::TypeClass)t.getTypeClass(), *this), in any2PyObject() 629 static Sequence< Type > invokeGetTypes( const Runtime & r , PyObject * o ) in invokeGetTypes() argument 633 PyRef method( PyObject_GetAttrString( o , const_cast< char * >("getTypes") ), SAL_NO_ACQUIRE ); in invokeGetTypes() 667 PyObject *o = source.get(); in pyObject2Any() local 668 if( Py_None == o ) in pyObject2Any() [all …]
|