Home
last modified time | relevance | path

Searched refs:func (Results 1 – 25 of 154) sorted by relevance

1234567

/trunk/main/sal/systools/win32/uwinapi/
H A Dmacros.h108 static void func##_Thunk(); \
109 EXTERN_C _declspec( dllexport ) FARPROC module##_##func##_Ptr = (FARPROC)func##_Thunk; \
117 static void func##_Thunk() \
119 …ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func, (FARPROC)func##_##resolve, …
137 …ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func, (FARPROC)func##_##resolve, …
159 static void func##_Thunk() \
161 ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func ); \
176 ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func ); \
183 EXTERN_C _declspec( dllexport ) FARPROC module##_##func##_Ptr = (FARPROC)func##_Thunk;
194 …ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func, NULL, (FARPROC)func##_##Fai…
[all …]
H A DUwinapi.h119 static _declspec ( naked ) func##_Thunk() \
121 …ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func, (FARPROC)func##_##resolve, …
122 _asm jmp [module##_##func##_Ptr] \
126 _asm jmp [module##_##func##_Ptr] \
128 EXTERN_C _declspec( dllexport ) FARPROC module##_##func##_Ptr = (FARPROC)func##_Thunk; \
129 static rettype calltype func##_##Failure params \
148 static _declspec ( naked ) func##_Thunk() \
150 ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func ); \
151 _asm jmp [module##_##func##_Ptr] \
155 _asm jmp [module##_##func##_Ptr] \
[all …]
H A DResolveUnicows.cpp62 #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 \
/trunk/main/sd/
H A DLibrary_sd.mk298 sd/source/ui/func/fupoor \
299 sd/source/ui/func/fudraw \
300 sd/source/ui/func/futext \
301 sd/source/ui/func/fuzoom \
302 sd/source/ui/func/fusel \
311 sd/source/ui/func/fuline \
312 sd/source/ui/func/sdundo \
316 sd/source/ui/func/fuarea \
317 sd/source/ui/func/fuchar \
322 sd/source/ui/func/fuoutl \
[all …]
/trunk/main/i18npool/source/localedata/
H A Dlocaledata.cxx299 if ( func ) { in getLocaleItem()
512 if ( func ) { in getAllCalendars()
585 if ( func ) { in getAllCurrencies2()
677 if (func) in getAllFormats()
724 if ( func ) { in getCollatorRuleByAlgorithm()
743 if ( func ) { in getCollatorImplementations()
768 if ( func ) { in getCollationOptions()
790 if ( func ) { in getSearchOptions()
809 if (func) in getIndexArray()
1092 if ( func ) in getContinuousNumberingLevels()
[all …]
H A Dfilewriter.cxx64 void OFileWriter::writeFunction(const char *func, const char *count, const char *array) const in writeFunction() argument
66 …fprintf(m_f, "SAL_DLLPUBLIC_EXPORT sal_Unicode ** SAL_CALL %s%s(sal_Int16& count)\n{\n", func, th… 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_DLLPUBLIC_EXPORT sal_Unicode ** SAL_CALL %s%s(sal_Int16& count)\n{\n", func, th… in writeRefFunction()
77 fprintf(m_f, "\treturn %s%s(count);\n}\n", func, locale); in writeRefFunction()
97 fprintf(m_f, "\treturn %s%s(count, from, tmp);\n}\n", func, locale); in writeRefFunction()
108 void OFileWriter::writeRefFunction2(const char *func, const ::rtl::OUString& useLocale) const in writeRefFunction2() argument
114 fprintf(m_f, "\treturn %s%s(nStyles, nAttributes);\n}\n", func, locale); in writeRefFunction2()
126 void OFileWriter::writeRefFunction3(const char *func, const ::rtl::OUString& useLocale) const in writeRefFunction3() argument
[all …]
H A DLocaleNode.hxx63 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;
/trunk/main/slideshow/source/inc/
H A Ddelayevent.hxx43 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()
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_()
133 FuncT const& func, double nTimeout, in makeDelay_() argument
[all …]
H A Dlistenercontainerimpl.hxx72 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 Dlistenercontainer.hxx216 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()
/trunk/main/vcl/inc/vcl/
H A Dthreadex.hxx92 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
276 inline typename FuncT::result_type syncExecute( FuncT const& func ) in syncExecute() argument
[all …]
/trunk/main/i18npool/source/indexentry/
H A Dindexentrysupplier_asian.cxx65 sal_uInt16** (*func)(sal_Int16*)=NULL; in getIndexCharacter() local
67func=(sal_uInt16** (*)(sal_Int16*))osl_getFunctionSymbol(hModule, (get+rLocale.Language+OUString::… in getIndexCharacter()
68 if (!func) in getIndexCharacter()
69func=(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
123func=(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()
/trunk/main/sc/workben/celltrans/
H A Dparse.py50 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())
/trunk/main/i18npool/source/breakiterator/
H A Dxdictionary.cxx76 sal_IntPtr (*func)(); in xdictionary() local
77func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getExistMark")… in xdictionary()
78 existMark = (sal_uInt8*) (*func)(); in xdictionary()
79func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getIndex1").pD… in xdictionary()
80 index1 = (sal_Int16*) (*func)(); in xdictionary()
81func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getIndex2").pD… in xdictionary()
82 index2 = (sal_Int32*) (*func)(); in xdictionary()
83func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getLenArray").… in xdictionary()
84 lenArray = (sal_Int32*) (*func)(); in xdictionary()
85func = (sal_IntPtr(*)()) osl_getFunctionSymbol( hModule, OUString::createFromAscii("getDataArea").… in xdictionary()
[all …]
/trunk/main/soltools/cpp/
H A DTest.txt67 #define func abc(func)
68 a = func // a = abc(func)
70 #define func1 func(abc)
71 a = func1 // a = abc(func)(abc)
73 #define args(func, args) func args
/trunk/main/autodoc/inc/cosv/tpl/
H A Dfuncall.hxx35 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()
/trunk/main/sal/qa/helper/gcov/
H A Dgcov_filter.pl161 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)
/trunk/main/i18npool/source/collator/
H A Dcollator_unicode.cxx91 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()
/trunk/main/pyuno/source/module/
H A Dpyuno_dlopenwrapper.c60 void* (*func)(void); local
62 void (*func)(void); local
81 func = (void* (*)(void))dlsym (h, "PyInit_pyuno");
83 func = (void (*)(void))dlsym (h, "initpyuno");
85 return (func) ();
/trunk/main/svl/source/svdde/
H A Dddewrap.cxx89 #define DEFINE_WAPI_FUNC(func) \ argument
90 func##_PROC lpfn##func = (LONG)GetVersion() >= 0 ? func : func##_9x;
H A Dddewrap.hxx25 #define DECLARE_WAPI_FUNC(func) \ argument
26 extern func##_PROC lpfn##func;
/trunk/main/i18npool/source/transliteration/
H A Dtransliteration_OneToOne.cxx88 *dst ++ = func ? func( c) : (*table)[ c ]; in transliterate()
100 return func ? func( inChar) : (*table)[ inChar ]; in transliterateChar2Char()
H A Dtransliteration_Ignore.cxx192 c = func ? func( c) : (*table)[ c ]; in folding()
213 return func ? func( inChar) : table ? (*table)[ inChar ] : inChar; in transliterateChar2Char()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/
H A DSOFunctionManager.java146 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()
/trunk/main/scripting/source/pyprov/
H A Dpythonscript.py866 def __init__( self, func, mod ): argument
867 self.func = func
872 ret = self.func( *args )
877 str(self.func.__name__) + " in module " + \
890 str(self.func.__name__) + " in module " + \
998 func = mod.__dict__[ funcName ]
1000 log.debug( "got func " + str( func ) )
1001 return PythonScript( func, mod )

Completed in 124 milliseconds

1234567