| /AOO41X/main/sal/systools/win32/uwinapi/ |
| H A D | macros.h | 107 #define IMPLEMENT_THUNK( module, resolve, rettype, calltype, func, params ) \ argument 108 static void func##_Thunk(); \ 109 EXTERN_C _declspec( dllexport ) FARPROC module##_##func##_Ptr = (FARPROC)func##_Thunk; \ 110 EXTERN_C rettype calltype func params \ 113 asm(" jmp *(%0)"::"m"(module##_##func##_Ptr)); \ 115 EXTERN_C rettype calltype func##_##resolve params; \ 116 static rettype calltype func##_##Failure params; \ 117 static void func##_Thunk() \ 119 …ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func, (FARPROC)func##_##resolve, … 122 asm(" jmp *(%0)"::"m"(module##_##func##_Ptr)); \ [all …]
|
| H A D | Uwinapi.h | 115 #define IMPLEMENT_THUNK( module, resolve, rettype, calltype, func, params ) \ argument 116 EXTERN_C _declspec( dllexport ) FARPROC module##_##func##_Ptr; \ 117 EXTERN_C rettype calltype func##_##resolve params; \ 118 static rettype calltype func##_##Failure params; \ 119 static _declspec ( naked ) func##_Thunk() \ 121 …ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func, (FARPROC)func##_##resolve, … 122 _asm jmp [module##_##func##_Ptr] \ 124 EXTERN_C _declspec( naked ) rettype calltype func params \ 126 _asm jmp [module##_##func##_Ptr] \ 128 EXTERN_C _declspec( dllexport ) FARPROC module##_##func##_Ptr = (FARPROC)func##_Thunk; \ [all …]
|
| H A D | ResolveUnicows.cpp | 62 #define DEFINE_UNICOWS_THUNK( module, rettype, calltype, func, params ) \ argument 63 static void func##_Thunk(); \ 64 EXTERN_C { _declspec( dllexport ) FARPROC module##_##func##_Ptr = (FARPROC)func##_Thunk; } \ 65 static rettype calltype func##_##Failure params; \ 66 static void func##_Thunk() \ 68 …ResolveThunk_UNICOWS( &module##_##func##_Ptr, #module ".dll", #func, (FARPROC)func##_##Failure ); \ 71 asm(" jmp *(%0)"::"m"(module##_##func##_Ptr)); \ 73 EXTERN_C rettype calltype func params \ 76 asm(" jmp *(%0)"::"m"(module##_##func##_Ptr)); \ 78 static rettype calltype func##_##Failure params \
|
| /AOO41X/main/i18npool/source/localedata/ |
| H A D | filewriter.cxx | 64 void OFileWriter::writeFunction(const char *func, const char *count, const char *array) const in writeFunction() argument 66 fprintf(m_f, "sal_Unicode ** SAL_CALL %s%s(sal_Int16& count)\n{\n", func, theLocale); in writeFunction() 71 void OFileWriter::writeRefFunction(const char *func, const ::rtl::OUString& useLocale) const in writeRefFunction() argument 75 fprintf(m_f, "extern sal_Unicode ** SAL_CALL %s%s(sal_Int16& count);\n", func, locale); in writeRefFunction() 76 fprintf(m_f, "sal_Unicode ** SAL_CALL %s%s(sal_Int16& count)\n{\n", func, theLocale); in writeRefFunction() 77 fprintf(m_f, "\treturn %s%s(count);\n}\n", func, locale); in writeRefFunction() 80 void OFileWriter::writeFunction(const char *func, const char *count, const char *array, const char … in writeFunction() argument 82 …L %s%s(sal_Int16& count, const sal_Unicode*& from, const sal_Unicode*& to)\n{\n", func, theLocale); in writeFunction() 89 void OFileWriter::writeRefFunction(const char *func, const ::rtl::OUString& useLocale, const char *… in writeRefFunction() argument 93 …L_CALL %s%s(sal_Int16& count, const sal_Unicode*& from, const sal_Unicode*& to);\n", func, locale); in writeRefFunction() [all …]
|
| H A D | localedata.cxx | 295 MyFunc_Type func = (MyFunc_Type) getFunctionSymbol( rLocale, "getLocaleItem" ); in getLocaleItem() local 297 if ( func ) { in getLocaleItem() 298 dataItem = func(dataItemCount); in getLocaleItem() 508 MyFunc_Type func = (MyFunc_Type) getFunctionSymbol( rLocale, "getAllCalendars" ); in getAllCalendars() local 510 if ( func ) { in getAllCalendars() 511 allCalendars = func(calendarsCount); in getAllCalendars() 581 MyFunc_Type func = (MyFunc_Type) getFunctionSymbol( rLocale, "getAllCurrencies" ); in getAllCurrencies2() local 583 if ( func ) { in getAllCurrencies2() 584 allCurrencies = func(currencyCount); in getAllCurrencies2() 665 MyFunc_FormatCode func; in getAllFormats() member [all …]
|
| H A D | LocaleNode.hxx | 63 virtual void writeFunction(const char *func, const char *count, const char *array) const; 64 virtual void writeRefFunction(const char *func, const ::rtl::OUString& useLocale) const; 65 …virtual void writeFunction(const char *func, const char *count, const char *array, const char *fr… 66 …virtual void writeRefFunction(const char *func, const ::rtl::OUString& useLocale, const char *to)… 67 …virtual void writeFunction2(const char *func, const char *style, const char* attr, const char *ar… 68 virtual void writeRefFunction2(const char *func, const ::rtl::OUString& useLocale) const; 69 …virtual void writeFunction3(const char *func, const char *style, const char* levels, const char* … 70 virtual void writeRefFunction3(const char *func, const ::rtl::OUString& useLocale) const;
|
| /AOO41X/main/slideshow/source/inc/ |
| H A D | delayevent.hxx | 43 Delay( FuncT const& func, in Delay() argument 51 mnTimeout(nTimeout), maFunc(func), mbWasFired(false) {} in Delay() 53 Delay( const boost::function0<void>& func, in Delay() argument 62 maFunc(func), in Delay() 91 inline EventSharedPtr makeDelay_( FuncT const& func, double nTimeout ) in makeDelay_() argument 93 return EventSharedPtr( new Delay( func, nTimeout ) ); in makeDelay_() 104 inline EventSharedPtr makeEvent_( FuncT const& func ) in makeEvent_() argument 106 return EventSharedPtr( new Delay( func, 0.0 ) ); in makeEvent_() 119 Delay_( FuncT const& func, double nTimeout, in Delay_() argument 122 : Delay(func, nTimeout, rsDescription), in Delay_() [all …]
|
| H A D | listenercontainerimpl.hxx | 72 FuncT func, in apply() 75 return func(rArg); in apply() 82 FuncT func, in apply() 85 func(rArg); in apply() 98 FuncT func ) in notifySingleListener() 106 func ) != aEnd); in notifySingleListener() 113 FuncT func ) in notifyAllListeners() 122 func, in notifyAllListeners() 151 FuncT func ) in notifySingleListener() 159 if( pListener && func(pListener) ) in notifySingleListener() [all …]
|
| H A D | listenercontainer.hxx | 216 template< typename FuncT > bool apply( FuncT func ) const in apply() 228 func )); in apply() 252 template< typename FuncT > bool applyAll( FuncT func ) const in applyAll() 264 func )); in applyAll()
|
| /AOO41X/main/vcl/inc/vcl/ |
| H A D | threadex.hxx | 92 static ResultT exec( FuncT const& func ) in exec() argument 95 ::std::auto_ptr<ExecutorT> const pExecutor( new ExecutorT(func) ); in exec() 105 explicit GenericSolarThreadExecutor( FuncT const& func ) in GenericSolarThreadExecutor() argument 106 : m_exc(), m_func(func), m_result() {} in GenericSolarThreadExecutor() 135 static void exec( FuncT const& func ) in exec() argument 138 ::std::auto_ptr<ExecutorT> const pExecutor( new ExecutorT(func) ); in exec() 147 explicit GenericSolarThreadExecutor( FuncT const& func ) in GenericSolarThreadExecutor() argument 148 : m_exc(), m_func(func) {} in GenericSolarThreadExecutor() 270 inline ResultT syncExecute( FuncT const& func ) in syncExecute() argument 272 return detail::GenericSolarThreadExecutor<FuncT, ResultT>::exec(func); in syncExecute() [all …]
|
| /AOO41X/main/i18npool/source/indexentry/ |
| H A D | indexentrysupplier_asian.cxx | 65 sal_uInt16** (*func)(sal_Int16*)=NULL; in getIndexCharacter() local 67 …func=(sal_uInt16** (*)(sal_Int16*))osl_getFunctionSymbol(hModule, (get+rLocale.Language+OUString::… in getIndexCharacter() 68 if (!func) in getIndexCharacter() 69 …func=(sal_uInt16** (*)(sal_Int16*))osl_getFunctionSymbol(hModule, (get+rLocale.Language+OUString('… in getIndexCharacter() 70 if (func) { in getIndexCharacter() 72 sal_uInt16** idx=func(&max_index); in getIndexCharacter() 116 sal_uInt16 **(*func)(sal_Int16*)=NULL; in getPhoneticCandidate() local 123 …func=(sal_uInt16 **(*)(sal_Int16*))osl_getFunctionSymbol(hModule, OUString::createFromAscii(func_n… in getPhoneticCandidate() 124 if (func) { in getPhoneticCandidate() 127 sal_uInt16** idx=func(&max_index); in getPhoneticCandidate()
|
| /AOO41X/main/sc/workben/celltrans/ |
| H A D | parse.py | 50 def getLocaleFuncVarName (self, func, pair): argument 51 return func.lower() + "_" + getAscii(pair[1]).lower() + "_" + self.locale 67 for func in funcs: 68 for item in self.funcList[func]: 69 … chars += "static const sal_Unicode " + self.getLocaleFuncVarName(func, item) + "[] = {\n" 90 for func in funcs: 91 for item in self.funcList[func]: 93 chars += "{%s, \"%s\", %s},\n"%(self.getLocaleFuncVarName(func, item), 95 "oc"+func.capitalize())
|
| /AOO41X/main/i18npool/source/breakiterator/ |
| H A D | xdictionary.cxx | 76 sal_IntPtr (*func)(); in xdictionary() local 77 …func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getExistMark")… in xdictionary() 78 existMark = (sal_uInt8*) (*func)(); in xdictionary() 79 …func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getIndex1").pD… in xdictionary() 80 index1 = (sal_Int16*) (*func)(); in xdictionary() 81 …func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getIndex2").pD… in xdictionary() 82 index2 = (sal_Int32*) (*func)(); in xdictionary() 83 …func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getLenArray").… in xdictionary() 84 lenArray = (sal_Int32*) (*func)(); in xdictionary() 85 …func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getDataArea").… in xdictionary() [all …]
|
| /AOO41X/main/cosv/inc/cosv/tpl/ |
| H A D | funcall.hxx | 35 namespace func namespace 203 inline func::ff_pn_cn<R> 206 return func::ff_pn_cn<R>(i_f); in make_func() 234 inline func::fc_pn_co<R,C> 237 return func::fc_pn_co<R,C>(i_f); in make_func() 246 inline func::fc_pm_co<R,C,P> 249 return func::fc_pm_co<R,C,P>(i_f, i_p); in make_func()
|
| /AOO41X/main/sal/qa/helper/gcov/ |
| H A D | gcov_filter.pl | 161 my $func; 162 foreach $func (@aExportedFunctionList) 164 print("$func\n"); 260 my $func; 269 foreach $func (@$list) # (@aExportedFunctionList) 272 if ($value eq $func) 288 if ($_ eq $func)
|
| /AOO41X/main/i18npool/source/collator/ |
| H A D | collator_unicode.cxx | 91 const sal_uInt8* (*func)() = NULL; in loadCollatorAlgorithm() local 96 func=(const sal_uInt8* (*)()) osl_getFunctionSymbol(hModule, in loadCollatorAlgorithm() 98 if (!func) in loadCollatorAlgorithm() 99 … func=(const sal_uInt8* (*)()) osl_getFunctionSymbol(hModule, (func_base + rAlgorithm).pData); in loadCollatorAlgorithm() 112 … func=(const sal_uInt8* (*)()) osl_getFunctionSymbol(hModule, aBuf.makeStringAndClear().pData); in loadCollatorAlgorithm() 114 if (func) { in loadCollatorAlgorithm() 115 const sal_uInt8* ruleImage=func(); in loadCollatorAlgorithm()
|
| /AOO41X/main/svl/source/svdde/ |
| H A D | ddewrap.cxx | 89 #define DEFINE_WAPI_FUNC(func) \ argument 90 func##_PROC lpfn##func = (LONG)GetVersion() >= 0 ? func : func##_9x;
|
| H A D | ddewrap.hxx | 25 #define DECLARE_WAPI_FUNC(func) \ argument 26 extern func##_PROC lpfn##func;
|
| /AOO41X/main/i18npool/source/transliteration/ |
| H A D | transliteration_OneToOne.cxx | 88 *dst ++ = func ? func( c) : (*table)[ c ]; in transliterate() 100 return func ? func( inChar) : (*table)[ inChar ]; in transliterateChar2Char()
|
| H A D | transliteration_Ignore.cxx | 192 c = func ? func( c) : (*table)[ c ]; in folding() 213 return func ? func( inChar) : table ? (*table)[ inChar ] : inChar; in transliterateChar2Char()
|
| /AOO41X/main/reportbuilder/java/com/sun/star/report/pentaho/ |
| H A D | SOFunctionManager.java | 146 final FunctionDescription func = functionRegistry.getMetaData(arg0); in getFunctionByName() local 147 if (func == null) in getFunctionByName() 154 if (categories[i] == func.getCategory()) in getFunctionByName() 161 return new StarFunctionDescription(defaultContext, m_xContext, getCategory(i), func); in getFunctionByName()
|
| /AOO41X/main/scripting/source/pyprov/ |
| H A D | pythonscript.py | 860 def __init__( self, func, mod ): argument 861 self.func = func 866 ret = self.func( *args ) 871 str(self.func.__name__) + " in module " + \ 884 str(self.func.__name__) + " in module " + \ 992 func = mod.__dict__[ funcName ] 994 log.debug( "got func " + str( func ) ) 995 return PythonScript( func, mod )
|
| /AOO41X/main/pyuno/source/module/ |
| H A D | pyuno_dlopenwrapper.c | 39 void (*func)(void); in initpyuno() local 52 func = (void (*)())dlsym (h, "initpyuno"); in initpyuno() 53 (func) (); in initpyuno()
|
| /AOO41X/main/tools/workben/ |
| H A D | solar.c | 39 int check( TestFunc func, Type eT, void* p ); 167 int check( TestFunc func, Type eT, void* p ) in check() argument 182 exit( func( eT, p ) ); in check() 196 result = func( eT, p ); in check()
|
| /AOO41X/main/shell/source/unix/misc/ |
| H A D | gnome-open-url.c | 85 GnomeVFSResult (* func) (const char *url) = in gnome_url_show() local 88 if( NULL != func ) in gnome_url_show() 89 ret = (GNOME_VFS_OK == func(url)); in gnome_url_show()
|