| /trunk/main/vcl/source/helper/ |
| H A D | strhelper.cxx | 128 const sal_Unicode* pRun = rLine.GetBuffer(); in GetCommandLineToken() local 131 while( *pRun && nActualToken <= nToken ) in GetCommandLineToken() 133 while( *pRun && isSpace( *pRun ) ) in GetCommandLineToken() 134 pRun++; in GetCommandLineToken() 136 while( *pRun && ! isSpace( *pRun ) ) in GetCommandLineToken() 138 if( *pRun == '\\' ) in GetCommandLineToken() 141 pRun++; in GetCommandLineToken() 142 *pLeap = *pRun; in GetCommandLineToken() 144 if( *pRun ) in GetCommandLineToken() 145 pRun++; in GetCommandLineToken() [all …]
|
| /trunk/main/sdext/source/pdfimport/pdfparse/ |
| H A D | pdfentries.cxx | 265 const sal_Char* pRun = pStr+1; in getFilteredString() local 266 while( pRun - pStr < nLen-1 ) in getFilteredString() 268 if( *pRun == '\\' ) in getFilteredString() 270 pRun++; in getFilteredString() 271 if( pRun - pStr < nLen ) in getFilteredString() 274 if( *pRun == 'n' ) in getFilteredString() 276 else if( *pRun == 'r' ) in getFilteredString() 278 else if( *pRun == 't' ) in getFilteredString() 280 else if( *pRun == 'b' ) in getFilteredString() 282 else if( *pRun == 'f' ) in getFilteredString() [all …]
|
| /trunk/main/sc/source/core/tool/ |
| H A D | parclass.cxx | 229 RunData* pRun = &pData[ pRaw->eOp ]; in Init() local 231 if ( pRun->aData.nParam[0] != Unknown ) in Init() 236 memcpy( &(pRun->aData), &(pRaw->aData), sizeof(CommonData)); in Init() 238 if ( pRun->aData.nRepeatLast ) in Init() 242 if ( pRun->aData.nParam[j] ) in Init() 243 pRun->nMinParams = sal::static_int_cast<sal_uInt8>( j+1 ); in Init() 244 else if (j >= pRun->aData.nRepeatLast) in Init() 245 pRun->aData.nParam[j] = pRun->aData.nParam[j - pRun->aData.nRepeatLast]; in Init() 249 pRun->aData.nParam[j] = Unknown; in Init() 257 if ( !pRun->aData.nParam[j] ) in Init() [all …]
|
| /trunk/main/sd/source/ui/slidesorter/view/ |
| H A D | SlsInsertAnimator.cxx | 47 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); 306 void InsertAnimator::Implementation::AddRun (const ::boost::shared_ptr<PageObjectRun> pRun) in AddRun() argument 308 if (pRun) in AddRun() 310 maRuns.insert(pRun); in AddRun() 314 OSL_ASSERT(pRun); in AddRun() 322 void InsertAnimator::Implementation::RemoveRun (const ::boost::shared_ptr<PageObjectRun> pRun) in RemoveRun() argument 324 if (pRun) in RemoveRun() [all …]
|
| /trunk/main/basic/source/runtime/ |
| H A D | runtime.cxx | 52 if ( pInst && pINST->pRun ) in isVBAEnabled() 53 result = pInst->pRun->bVBAEnabled; in isVBAEnabled() 281 pRun = NULL; in SbiInstance() 296 while( pRun ) in ~SbiInstance() 298 SbiRuntime* p = pRun->pNext; in ~SbiInstance() 299 delete pRun; in ~SbiInstance() 300 pRun = p; in ~SbiInstance() 419 for( SbiRuntime* p = pRun; p; p = p->pNext ) in Stop() 441 pRun->Error( n ); in Error() 457 pRun->Error( SbERR_BASIC_COMPAT, bVBATranslationAlreadyDone ); in ErrorVB() [all …]
|
| H A D | methods1.cxx | 191 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 D | methods.cxx | 995 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()
|
| /trunk/main/oox/source/drawingml/ |
| H A D | textbodycontext.cxx | 82 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/vcl/source/gdi/ |
| H A D | base14.cxx | 37 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/basic/inc/basic/ |
| H A D | basicrt.hxx | 35 SbiRuntime* pRun; member in BasicRuntime 37 BasicRuntime( SbiRuntime* p ) : pRun ( p ){;} in BasicRuntime() 45 sal_Bool IsValid() { return pRun != NULL; } in IsValid()
|
| /trunk/main/vcl/unx/generic/printer/ |
| H A D | ppdparser.cxx | 2055 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 …]
|
| /trunk/main/oox/inc/oox/drawingml/ |
| H A D | textparagraph.hxx | 47 inline void addRun( const TextRunPtr & pRun ) { maRuns.push_back( pRun ); } in addRun() argument
|
| /trunk/main/basic/source/classes/ |
| H A D | sbxmod.cxx | 1149 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()
|
| H A D | sb.cxx | 1397 if( !pINST->pRun ) in FindSBXInCurrentScope() 1399 return pINST->pRun->FindElementExtern( rName ); in FindSBXInCurrentScope() 2298 SbiRuntime* pRT = pInst ? pInst->pRun : NULL; in CollRemove()
|
| /trunk/main/basic/source/inc/ |
| H A D | runtime.hxx | 204 SbiRuntime* pRun; // Call-Stack member in SbiInstance
|