Home
last modified time | relevance | path

Searched refs:pMethod (Results 1 – 25 of 39) sorted by path

12

/trunk/main/basctl/source/basicide/
H A Dbaside2.cxx349 SbMethod* pMethod = 0; in BasicExecute() local
360 pMethod = pM; in BasicExecute()
366 pMethod = pM; in BasicExecute()
370 if ( !pMethod ) in BasicExecute()
377 if ( pMethod ) in BasicExecute()
379 pMethod->SetDebugFlags( aStatus.nBasicFlags ); in BasicExecute()
381 BasicIDE::RunMethod( pMethod ); in BasicExecute()
611 pMethod->SetDebugFlags( pMethod->GetDebugFlags() | SbDEBUG_BREAK ); in ToggleBreakPoint()
862 if ( pMethod ) in EditMacro()
864 pMethod->GetLineRange( nStart, nEnd ); in EditMacro()
[all …]
H A Dbaside2b.cxx1627 SbMethod* pMethod = StarBASIC::GetActiveMethod( nScope ); in IMPL_LINK_INLINE_END() local
1628 while ( pMethod ) in IMPL_LINK_INLINE_END()
1634 aEntry += pMethod->GetName(); in IMPL_LINK_INLINE_END()
1635 SbxArray* pParams = pMethod->GetParameters(); in IMPL_LINK_INLINE_END()
1636 SbxInfo* pInfo = pMethod->GetInfo(); in IMPL_LINK_INLINE_END()
1666 pMethod = StarBASIC::GetActiveMethod( nScope ); in IMPL_LINK_INLINE_END()
H A Dbasobj2.cxx278 SbMethod* pMethod = NULL; in ChooseMacro() local
296 pMethod = pChooser->GetMacro(); in ChooseMacro()
298 pMethod = pChooser->CreateMacro(); in ChooseMacro()
300 if ( !pMethod ) in ChooseMacro()
303 SbModule* pModule = pMethod->GetModule(); in ChooseMacro()
318 aName += pMethod->GetName(); in ChooseMacro()
409 if( pMethod->IsHidden() ) in GetMethodNames()
418 if( pMethod->IsHidden() ) in GetMethodNames()
420 DBG_ASSERT( pMethod, "Method not found! (NULL)" ); in GetMethodNames()
421 aSeqMethods.getArray()[ iTarget++ ] = pMethod->GetName(); in GetMethodNames()
[all …]
H A Dbasobj3.cxx159 SbMethod* pMethod = (SbMethod*)pModule->GetMethods()->Find( aMacroName, SbxCLASS_METHOD ); in CreateMacro() local
169 return pMethod; in CreateMacro()
324 void RunMethod( SbMethod* pMethod ) in RunMethod() argument
328 pMethod->Get( aRes ); in RunMethod()
H A Dmacrodlg.cxx285 SbMethod* pMethod = 0; in GetMacro() local
296 return pMethod; in GetMacro()
303 SbMethod* pMethod = GetMacro(); in DeleteMacro() local
305 if ( pMethod && QueryDelMacro( pMethod->GetName(), this ) ) in DeleteMacro()
352 SbMethod* pMethod = 0; in CreateMacro() local
405 return pMethod; in CreateMacro()
506 if ( pMethod && !QueryReplaceMacro( pMethod->GetName(), this ) ) in IMPL_LINK_INLINE_START()
560 if( pMethod->IsHidden() ) in IMPL_LINK()
675 SbModule* pModule = pMethod ? pMethod->GetModule() : NULL; in IMPL_LINK()
700 if ( pMethod && !QueryReplaceMacro( pMethod->GetName(), this ) ) in IMPL_LINK()
[all …]
/trunk/main/basctl/source/inc/
H A Dbasobj.hxx55 void RunMethod( SbMethod* pMethod );
/trunk/main/basic/source/basmgr/
H A Dbasmgr.cxx1903 if( pMethod ) in lcl_queryMacro()
1904 return pMethod; in lcl_queryMacro()
1921 SbMethod* pMethod = lcl_queryMacro( this, i_fullyQualifiedName ); in ExecuteMacro() local
1923 if ( pMethod ) in ExecuteMacro()
1926 pMethod->SetParameters( i_arguments ); in ExecuteMacro()
1927 nError = pMethod->Call( i_retValue ); in ExecuteMacro()
1936 SbMethod* pMethod = lcl_queryMacro( this, i_fullyQualifiedName ); in ExecuteMacro() local
1937 if ( !pMethod ) in ExecuteMacro()
1969 sCall += pMethod->GetName(); in ExecuteMacro()
1973 SbxVariable* pRet = pMethod->GetParent()->Execute( sCall ); in ExecuteMacro()
[all …]
/trunk/main/basic/source/classes/
H A Dsb.cxx646 SbMethod* pMethod = PTR_CAST(SbMethod, pVar ); in TYPEINIT1() local
647 if( pMethod ) in TYPEINIT1()
649 sal_uInt16 nFlags_ = pMethod->GetFlags(); in TYPEINIT1()
650 pMethod->SetFlag( SBX_NO_BROADCAST ); in TYPEINIT1()
651 SbMethod* pNewMethod = new SbMethod( *pMethod ); in TYPEINIT1()
653 pMethod->SetFlags( nFlags_ ); in TYPEINIT1()
H A Dsbxmod.cxx260 SbMethodRef pMethod = getMethod( aFunctionName ); in invoke() local
261 if ( !pMethod ) in invoke()
265 SbxInfo* pInfo = pMethod->GetInfo(); in invoke()
301 pMethod->SetParameters( xSbxParams ); in invoke()
307 nErr = pMethod->Call( xReturn ); in invoke()
312 SbxInfo* pInfo_ = pMethod->GetInfo(); in invoke()
345 pMethod->SetParameters( NULL ); in invoke()
411 SbMethodRef pMethod = NULL; in getMethod() local
417 pMethod = (SbMethod*) m_pMod->SbModule::Find( aName, SbxCLASS_METHOD ); in getMethod()
421 return pMethod; in getMethod()
/trunk/main/basic/source/comp/
H A Dparser.cxx172 SbxMethod* pMethod = (SbxMethod*) pVar; in CheckRTLForSym() local
173 if ( pMethod && pMethod->IsRuntimeFunction() ) in CheckRTLForSym()
175 pProc_->SetType( pMethod->GetRuntimeFunctionReturnType() ); in CheckRTLForSym()
H A Dsbcomp.cxx311 String lcl_dumpMethodParameters( SbMethod* pMethod ) in lcl_dumpMethodParameters() argument
314 if( pMethod == NULL ) in lcl_dumpMethodParameters()
319 SbxArray* pParams = pMethod->GetParameters(); in lcl_dumpMethodParameters()
320 SbxInfo* pInfo = pMethod->GetInfo(); in lcl_dumpMethodParameters()
635 void dbg_traceNotifyCall( SbModule* pModule, SbMethod* pMethod, sal_Int32 nCallLvl, bool bLeave ) in dbg_traceNotifyCall() argument
663 if( pMethod != NULL ) in dbg_traceNotifyCall()
666 String aMethodName = pMethod->GetName(); in dbg_traceNotifyCall()
778 aStr += lcl_dumpMethodParameters( pMethod ); in dbg_traceNotifyCall()
/trunk/main/basic/source/inc/
H A Dsbtrace.hxx46 void dbg_traceNotifyCall( SbModule* pModule, SbMethod* pMethod, sal_Int32 nCallLvl, bool bLeave = f…
/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_arm/
H A Duno2cpp.cxx237 sal_uInt32 pMethod = *((sal_uInt32*)pThis); in callVirtualMethod() local
238 pMethod += 4 * nVtableIndex; in callVirtualMethod()
239 pMethod = *((sal_uInt32 *)pMethod); in callVirtualMethod()
242 FunctionCall pFunc = (FunctionCall)pMethod; in callVirtualMethod()
/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_powerpc64/
H A Duno2cpp.cxx119 sal_uInt64 pMethod = *((sal_uInt64 *)pThis); in callVirtualMethod() local
120 pMethod += 8 * nVtableIndex; in callVirtualMethod()
121 pMethod = *((sal_uInt64 *)pMethod); in callVirtualMethod()
124 FunctionCall pFunc = (FunctionCall)pMethod; in callVirtualMethod()
/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/
H A Duno2cpp.cxx103 sal_uInt64 pMethod = *((sal_uInt64 *)pThis); in callVirtualMethod() local
104 pMethod += 8 * nVtableIndex; in callVirtualMethod()
105 pMethod = *((sal_uInt64 *)pMethod); in callVirtualMethod()
157 : "m" ( pMethod ), "m" ( pGPR ), "m" ( pFPR ), "m" ( nFPR ), in callVirtualMethod()
/trunk/main/bridges/source/cpp_uno/gcc3_linux_alpha/
H A Duno2cpp.cxx169 sal_uInt64 pMethod = *((sal_uInt64 *)pThis); in callVirtualMethod() local
171 pMethod += 8 * nVtableIndex; in callVirtualMethod()
172 pMethod = *((sal_uInt64 *)pMethod); in callVirtualMethod()
175 FunctionCall pFunc = (FunctionCall)pMethod; in callVirtualMethod()
/trunk/main/bridges/source/cpp_uno/gcc3_linux_arm/
H A Duno2cpp.cxx237 sal_uInt32 pMethod = *((sal_uInt32*)pThis); in callVirtualMethod() local
238 pMethod += 4 * nVtableIndex; in callVirtualMethod()
239 pMethod = *((sal_uInt32 *)pMethod); in callVirtualMethod()
242 FunctionCall pFunc = (FunctionCall)pMethod; in callVirtualMethod()
/trunk/main/bridges/source/cpp_uno/gcc3_linux_hppa/
H A Dcall.cxx100 sal_uInt32 pMethod = *((sal_uInt32*)pThis); in callVirtualMethod() local
101 pMethod += 4 * nVtableIndex; in callVirtualMethod()
102 pMethod = *((sal_uInt32 *)pMethod); in callVirtualMethod()
125 FunctionCall pFunc = (FunctionCall)pMethod; in callVirtualMethod()
/trunk/main/bridges/source/cpp_uno/gcc3_linux_ia64/
H A Duno2cpp.cxx198 sal_uInt64 pMethod = *((sal_uInt64 *)pThis); in callVirtualMethod() local
201 pMethod += 16 * nVtableIndex; in callVirtualMethod()
204 FunctionCall pFunc = (FunctionCall)pMethod; in callVirtualMethod()
/trunk/main/bridges/source/cpp_uno/gcc3_linux_m68k/
H A Duno2cpp.cxx119 sal_uInt32 pMethod = *((sal_uInt32*)pThis); in callVirtualMethod() local
120 pMethod += 4 * nVtableIndex; in callVirtualMethod()
121 pMethod = *((sal_uInt32 *)pMethod); in callVirtualMethod()
124 FunctionCall pFunc = (FunctionCall)pMethod; in callVirtualMethod()
/trunk/main/bridges/source/cpp_uno/gcc3_linux_powerpc64/
H A Duno2cpp.cxx119 sal_uInt64 pMethod = *((sal_uInt64 *)pThis); in callVirtualMethod() local
120 pMethod += 8 * nVtableIndex; in callVirtualMethod()
121 pMethod = *((sal_uInt64 *)pMethod); in callVirtualMethod()
124 FunctionCall pFunc = (FunctionCall)pMethod; in callVirtualMethod()
/trunk/main/bridges/source/cpp_uno/gcc3_linux_s390x/
H A Duno2cpp.cxx166 sal_uInt64 pMethod = *((sal_uInt64 *)pThis); in callVirtualMethod() local
168 pMethod += 8 * nVtableIndex; in callVirtualMethod()
169 pMethod = *((sal_uInt64 *)pMethod); in callVirtualMethod()
172 FunctionCall pFunc = (FunctionCall)pMethod; in callVirtualMethod()
/trunk/main/bridges/source/cpp_uno/gcc3_linux_x86-64/
H A Duno2cpp.cxx96 sal_uInt64 pMethod = *((sal_uInt64 *)pThis); in callVirtualMethod() local
97 pMethod += 8 * nVtableIndex; in callVirtualMethod()
98 pMethod = *((sal_uInt64 *)pMethod); in callVirtualMethod()
150 : "m" ( pMethod ), "m" ( pGPR ), "m" ( pFPR ), "m" ( nFPR ), in callVirtualMethod()
/trunk/main/bridges/source/cpp_uno/s5abi_macosx_x86-64/
H A Duno2cpp.cxx96 sal_uInt64 pMethod = *((sal_uInt64 *)pThis); in callVirtualMethod() local
97 pMethod += 8 * nVtableIndex; in callVirtualMethod()
98 pMethod = *((sal_uInt64 *)pMethod); in callVirtualMethod()
150 : "m" ( pMethod ), "m" ( pGPR ), "m" ( pFPR ), "m" ( nFPR ), in callVirtualMethod()
/trunk/main/cppu/source/threadpool/
H A Dcurrent.cxx83 typelib_InterfaceMethodTypeDescription * pMethod = 0; in get_type_XCurrentContext() local
98 &pMethod, in get_type_XCurrentContext()
103 typelib_typedescription_register( (typelib_TypeDescription**)&pMethod ); in get_type_XCurrentContext()
104 typelib_typedescription_release( (typelib_TypeDescription*)pMethod ); in get_type_XCurrentContext()

Completed in 172 milliseconds

12