Home
last modified time | relevance | path

Searched refs:pRun (Results 1 – 15 of 15) sorted by path

/trunk/main/basic/inc/basic/
H A Dbasicrt.hxx35 SbiRuntime* pRun; member in BasicRuntime
37 BasicRuntime( SbiRuntime* p ) : pRun ( p ){;} in BasicRuntime()
45 sal_Bool IsValid() { return pRun != NULL; } in IsValid()
/trunk/main/basic/source/classes/
H A Dsb.cxx1397 if( !pINST->pRun ) in FindSBXInCurrentScope()
1399 return pINST->pRun->FindElementExtern( rName ); in FindSBXInCurrentScope()
2298 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in CollRemove()
H A Dsbxmod.cxx1149 pRt->pNext = pINST->pRun; in Run()
1152 pINST->pRun = pRt; in Run()
1181 pINST->pRun = pRt->pNext; in Run()
1284 pRt->pNext = pINST->pRun; in RunInit()
1285 pINST->pRun = pRt; in RunInit()
1293 pINST->pRun = pRt->pNext; in RunInit()
1618 if( pINST && pINST->pRun ) in SetBP()
1619 pINST->pRun->SetDebugFlags( SbDEBUG_BREAK ); in SetBP()
/trunk/main/basic/source/inc/
H A Druntime.hxx204 SbiRuntime* pRun; // Call-Stack member in SbiInstance
/trunk/main/basic/source/runtime/
H A Dmethods.cxx995 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in RTLFUNC()
1076 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in RTLFUNC()
1412 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in RTLFUNC()
1640 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in RTLFUNC()
H A Dmethods1.cxx191 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in RTLFUNC()
753 if ( pINST && pINST->pRun ) in IsBaseIndexOne()
755 sal_uInt16 res = pINST->pRun->GetBase(); in IsBaseIndexOne()
H A Druntime.cxx52 if ( pInst && pINST->pRun ) in isVBAEnabled()
281 pRun = NULL; in SbiInstance()
296 while( pRun ) in ~SbiInstance()
299 delete pRun; in ~SbiInstance()
300 pRun = p; in ~SbiInstance()
441 pRun->Error( n ); in Error()
476 pRun->FatalError( n ); in FatalError()
488 pErrBasic->RTError( nErr, aErrorMsg, pRun->nLine, pRun->nCol1, pRun->nCol2 ); in Abort()
508 if( pRun ) in GetActiveModule()
516 SbiRuntime* p = pRun; in GetCaller()
[all …]
/trunk/main/oox/inc/oox/drawingml/
H A Dtextparagraph.hxx47 inline void addRun( const TextRunPtr & pRun ) { maRuns.push_back( pRun ); } in addRun() argument
/trunk/main/oox/source/drawingml/
H A Dtextbodycontext.cxx82 TextRunPtr pRun( new TextRun ); in createFastChildContext() local
83 mrParagraph.addRun( pRun ); in createFastChildContext()
84 xRet.set( new RegularTextRunContext( *this, pRun ) ); in createFastChildContext()
89 TextRunPtr pRun( new TextRun ); in createFastChildContext() local
90 pRun->setLineBreak(); in createFastChildContext()
91 mrParagraph.addRun( pRun ); in createFastChildContext()
92 xRet.set( new RegularTextRunContext( *this, pRun ) ); in createFastChildContext()
/trunk/main/sc/source/core/tool/
H A Dparclass.cxx238 if ( pRun->aData.nRepeatLast ) in Init()
245 pRun->aData.nParam[j] = pRun->aData.nParam[j - pRun->aData.nRepeatLast]; in Init()
264 if ( !pRun->nMinParams && in Init()
270 … if ( pRun->aData.nParam[j] == ForceArray || pRun->aData.nParam[j] == ReferenceOrForceArray ) in Init()
425 pRun->aData.nRepeatLast = 2; in MergeArgumentsFromFunctionResource()
430 pRun->aData.nRepeatLast = 1; in MergeArgumentsFromFunctionResource()
438 pRun->aData.nRepeatLast = 1; in MergeArgumentsFromFunctionResource()
443 pRun->aData.nParam[j] = Value; in MergeArgumentsFromFunctionResource()
445 if ( pRun->aData.nRepeatLast ) in MergeArgumentsFromFunctionResource()
449 pRun->aData.nParam[j] = Value; in MergeArgumentsFromFunctionResource()
[all …]
/trunk/main/sd/source/ui/slidesorter/view/
H A DSlsInsertAnimator.cxx47 virtual void AddRun (const ::boost::shared_ptr<PageObjectRun> pRun) = 0;
48 virtual void RemoveRun (const ::boost::shared_ptr<PageObjectRun> pRun) = 0;
135 virtual void AddRun (const ::boost::shared_ptr<PageObjectRun> pRun);
136 virtual void RemoveRun (const ::boost::shared_ptr<PageObjectRun> pRun);
308 if (pRun) in AddRun()
310 maRuns.insert(pRun); in AddRun()
314 OSL_ASSERT(pRun); in AddRun()
324 if (pRun) in RemoveRun()
327 if (pRun->mnLocalInsertIndex == -1) in RemoveRun()
332 OSL_ASSERT(*iRun == pRun); in RemoveRun()
[all …]
/trunk/main/sdext/source/pdfimport/pdfparse/
H A Dpdfentries.cxx316 pRun++; in getFilteredString()
322 while( *pRun != '>' && pRun - pStr < nLen ) in getFilteredString()
325 if( *pRun >= '0' && *pRun <= '9' ) in getFilteredString()
327 else if( *pRun >= 'a' && *pRun <= 'f' ) in getFilteredString()
329 else if( *pRun >= 'A' && *pRun <= 'F' ) in getFilteredString()
331 pRun++; in getFilteredString()
332 if( *pRun != '>' && pRun - pStr < nLen ) in getFilteredString()
334 if( *pRun >= '0' && *pRun <= '9' ) in getFilteredString()
336 else if( *pRun >= 'a' && *pRun <= 'f' ) in getFilteredString()
338 else if( *pRun >= 'A' && *pRun <= 'F' ) in getFilteredString()
[all …]
/trunk/main/vcl/source/gdi/
H A Dbase14.cxx37 const char* pRun = m_pPSName; in getNameObject() local
40 while( *pRun ) in getNameObject()
42 if( *pRun >= 'A' && *pRun <= 'Z' ) in getNameObject()
45 aBuf.append( *pRun ); in getNameObject()
46 pRun++; in getNameObject()
/trunk/main/vcl/source/helper/
H A Dstrhelper.cxx133 while( *pRun && isSpace( *pRun ) ) in GetCommandLineToken()
184 while( *pRun && isSpace( *pRun ) ) in GetCommandLineToken()
233 while( *pRun && isSpace( *pRun ) ) in GetCommandLineTokenCount()
248 do pRun++; while( *pRun && *pRun != '`' ); in GetCommandLineTokenCount()
254 do pRun++; while( *pRun && *pRun != '\'' ); in GetCommandLineTokenCount()
260 do pRun++; while( *pRun && *pRun != '"' ); in GetCommandLineTokenCount()
299 do pRun++; while( *pRun && *pRun != '`' ); in GetCommandLineTokenCount()
305 do pRun++; while( *pRun && *pRun != '\'' ); in GetCommandLineTokenCount()
311 do pRun++; while( *pRun && *pRun != '"' ); in GetCommandLineTokenCount()
336 if( *pRun && isSpace( *pRun ) ) in WhitespaceToSpace()
[all …]
/trunk/main/vcl/unx/generic/printer/
H A Dppdparser.cxx2055 char* pRun = (char*)pBuffer; in getStreamableBuffer() local
2060 memcpy( pRun, aCopy.GetBuffer(), nBytes ); in getStreamableBuffer()
2061 pRun += nBytes; in getStreamableBuffer()
2062 *pRun++ = ':'; in getStreamableBuffer()
2068 memcpy( pRun, aCopy.GetBuffer(), nBytes ); in getStreamableBuffer()
2069 pRun += nBytes; in getStreamableBuffer()
2071 *pRun++ = 0; in getStreamableBuffer()
2085 char* pRun = (char*)pBuffer; in rebuildFromStreamBuffer() local
2086 while( nBytes && *pRun ) in rebuildFromStreamBuffer()
2088 ByteString aLine( pRun ); in rebuildFromStreamBuffer()
[all …]

Completed in 99 milliseconds