Home
last modified time | relevance | path

Searched refs:eOp (Results 1 – 25 of 68) sorted by path

123

/trunk/main/basegfx/source/tools/
H A Db2dclipstate.cxx120 void addRange(const B2DRange& rRange, Operation eOp) in addRange()
126 if( mePendingOps != eOp ) in addRange()
129 mePendingOps = eOp; in addRange()
135 void addPolygon(B2DPolygon aPoly, Operation eOp) in addPolygon()
138 if( mePendingOps != eOp ) in addPolygon()
141 mePendingOps = eOp; in addPolygon()
145 void addPolyPolygon(B2DPolyPolygon aPoly, Operation eOp) in addPolyPolygon()
148 if( mePendingOps != eOp ) in addPolyPolygon()
151 mePendingOps = eOp; in addPolyPolygon()
155 void addClipState(const ImplB2DClipState& rOther, Operation eOp) in addClipState()
[all …]
/trunk/main/basic/source/classes/
H A Ddisas.cxx253 eOp = _NOP; in SbiDisas()
258 switch( eOp ) in SbiDisas()
295 eOp = (SbiOpcode) ( *p++ & 0xFF ); in Fetch()
296 if( eOp <= SbOP0_END ) in Fetch()
303 else if( eOp <= SbOP1_END ) in Fetch()
312 else if( eOp <= SbOP2_END ) in Fetch()
367 if( eOp == _STMNT && nOp1 != nLine ) in DisasLine()
441 snprintf( cBuf, sizeof(cBuf), pMask[ nParts ], nPC, (sal_uInt16) eOp, nOp1, nOp2 ); in DisasLine()
445 int n = eOp; in DisasLine()
446 if( eOp >= SbOP2_START ) in DisasLine()
[all …]
H A Dsbxmod.cxx1525 SbiOpcode eOp = (SbiOpcode ) ( *p++ ); in FindNextStmnt() local
1527 if( bFollowJumps && eOp == _JUMP && pImg ) in FindNextStmnt()
1534 else if( eOp >= SbOP1_START && eOp <= SbOP1_END ) in FindNextStmnt()
1536 else if( eOp == _STMNT ) in FindNextStmnt()
1546 else if( eOp >= SbOP2_START && eOp <= SbOP2_END ) in FindNextStmnt()
1548 else if( !( eOp >= SbOP0_START && eOp <= SbOP0_END ) ) in FindNextStmnt()
/trunk/main/basic/source/comp/
H A Dcodegen.cxx390 SbiOpcode eOp = (SbiOpcode)(*pCode++); in visitBuffer() local
392 if ( eOp <= SbOP0_END ) in visitBuffer()
393 visitor.processOpCode0( eOp ); in visitBuffer()
394 else if( eOp >= SbOP1_START && eOp <= SbOP1_END ) in visitBuffer()
400 visitor.processOpCode1( eOp, nOp1 ); in visitBuffer()
402 else if( eOp >= SbOP2_START && eOp <= SbOP2_END ) in visitBuffer()
458 m_ConvertedBuf += (sal_uInt8)eOp; in processOpCode0()
462 m_ConvertedBuf += (sal_uInt8)eOp; in processOpCode1()
463 switch( eOp ) in processOpCode1()
487 m_ConvertedBuf += (sal_uInt8)eOp; in processOpCode2()
[all …]
H A Ddim.cxx285 if( eOp == _REDIM ) in DefVar()
286 eOp = _REDIMP; in DefVar()
317 if( pOld && !(eOp == _REDIM || eOp == _REDIMP) ) in DefVar()
326 if( !bRtlSym && (eOp == _REDIM || eOp == _REDIMP) ) in DefVar()
352 if( !bDefined && !(eOp == _REDIM || eOp == _REDIMP) in DefVar()
410 if( eOp == _REDIMP ) in DefVar()
472 if( eOp == _REDIM ) in DefVar()
485 else if( eOp == _REDIMP ) in DefVar()
497 aGen.Gen( (eOp == _STATIC) ? _DIM : eOp ); in DefVar()
775 SbiOpcode eOp = _GLOBAL; in DefEnum() local
[all …]
H A Dexprgen.cxx34 SbiOpcode eOp; // Opcode member
87 SbiOpcode eOp; in Gen() local
90 eOp = _PARAM; in Gen()
110 eOp = _ELEM; // .-Ausdruck in WITH in Gen()
118 if( eOp == _FIND ) in Gen()
123 eOp = _FIND_CM; in Gen()
126 eOp = _FIND_STATIC; in Gen()
133 p->GenElement( eOp ); in Gen()
134 eOp = _ELEM; in Gen()
155 pGen->Gen( p->eOp ); break; in Gen()
[all …]
H A Dloops.cxx335 SbiOpcode eOp = eCurTok == GOTO ? _JUMP : _GOSUB; in Goto() local
340 aGen.Gen( eOp, nOff ); in Goto()
H A Dparser.cxx541 SbiOpcode eOp = _PUT; in Symbol() local
549 eOp = _SET; in Symbol()
557 aGen.Gen( eOp ); in Symbol()
/trunk/main/basic/source/inc/
H A Ddisas.hxx38 SbiOpcode eOp; // Opcode member in SbiDisas
H A Dparser.hxx54 void DefVar( SbiOpcode eOp, sal_Bool bStatic ); // DIM/REDIM einlesen
/trunk/main/basic/source/runtime/
H A Druntime.cxx732 SbiOpcode eOp = (SbiOpcode ) ( *pCode++ ); in Step() local
734 if (eOp < SbOP0_END) in Step()
736 (this->*( aStep0[ eOp ] ) )(); in Step()
738 else if (eOp >= SbOP1_START && eOp < SbOP1_END) in Step()
742 (this->*( aStep1[ eOp - SbOP1_START ] ) )( nOp1 ); in Step()
744 else if (eOp >= SbOP2_START && eOp < SbOP2_END) in Step()
748 (this->*( aStep2[ eOp - SbOP2_START ] ) )( nOp1, nOp2 ); in Step()
H A Dstep0.cxx53 void SbiRuntime::StepArith( SbxOperator eOp ) in StepArith() argument
88 p2->Compute( eOp, *p1 ); in StepArith()
93 void SbiRuntime::StepUnary( SbxOperator eOp ) in StepUnary() argument
97 p->Compute( eOp, *p ); in StepUnary()
100 void SbiRuntime::StepCompare( SbxOperator eOp ) in StepCompare() argument
141 if( p2->Compare( eOp, *p1 ) ) in StepCompare()
H A Dstep1.cxx243 SbxOperator eOp = ( pForStk->refInc->GetDouble() < 0 ) ? SbxLT : SbxGT; in StepTESTFOR() local
244 if( pForStk->refVar->Compare( eOp, *pForStk->refEnd ) ) in StepTESTFOR()
/trunk/main/basic/source/sbx/
H A Dsbxvalue.cxx1158 ( eOp == SbxMUL || eOp == SbxDIV || eOp == SbxPLUS || eOp == SbxMINUS ) ) in Compute()
1164 if( eOp == SbxCAT || eOp == SbxPLUS ) in Compute()
1193 else if( ( eOp >= SbxIDIV && eOp <= SbxNOT ) || eOp == SbxMOD ) in Compute()
1299 ( eOp == SbxMUL || eOp == SbxDIV || eOp == SbxPLUS || eOp == SbxMINUS || eOp == SbxNEG ) ) in Compute()
1315 switch( eOp ) in Compute()
1419 switch( eOp ) in Compute()
1488 bRes = sal_Bool( eOp == SbxLT || eOp == SbxLE || eOp == SbxNE ); in Compare()
1493 bRes = sal_Bool( eOp == SbxGT || eOp == SbxGE || eOp == SbxNE ); in Compare()
1526 switch( eOp ) in Compare()
1552 switch( eOp ) in Compare()
[all …]
/trunk/main/formula/inc/formula/
H A DFormulaCompiler.hxx132 inline const String& getSymbol( const OpCode eOp ) const in getSymbol()
134 DBG_ASSERT( sal_uInt16(eOp) < mnSymbols, "OpCodeMap::getSymbol: OpCode out of range"); in getSymbol()
135 if (sal_uInt16(eOp) < mnSymbols) in getSymbol()
136 return mpTable[ eOp ]; in getSymbol()
164 void putOpCode( const String & rStr, const OpCode eOp );
220 static const String& GetNativeSymbol( OpCode eOp );
H A Dtoken.hxx93 OpCode eOp; member in formula::FormulaToken
104 eOp(e), eType( eTypeP ), nRefCnt(0) {} in FormulaToken()
106 eOp(r.eOp), eType( r.eType ), nRefCnt(0) {} in FormulaToken()
122 inline OpCode GetOpCode() const { return eOp; } in GetOpCode()
172 inline void NewOpCode( OpCode e, const PrivateAccess& ) { eOp = e; } in NewOpCode()
H A Dtokenarray.hxx59 inline bool isRewriteNeeded( OpCode eOp ) const;
207 FormulaToken* AddExternal( const String& rStr, OpCode eOp = ocExternal );
/trunk/main/formula/source/core/api/
H A DFormulaCompiler.cxx490 if (0 < eOp && sal_uInt16(eOp) < mnSymbols) in putOpCode()
492 DBG_ASSERT( (mpTable[eOp].Len() == 0) || (mpTable[eOp] == rStr) || (eOp == ocCurrency), in putOpCode()
881 if( eOp == ocPush || eOp == ocColRowNameAuto || eOp == ocMatRef || in Factor()
884 || (eOp == ocColRowName) || (eOp == ocBad))) in Factor()
993 else if( eOp == ocNot || eOp == ocNeg in Factor()
1070 else if (eOp == ocIf || eOp == ocChose) in Factor()
1508 if( eOp >= ocAnd && eOp <= ocOr ) in CreateStringFromToken()
1546 else if( eOp >= ocInternalBegin && eOp <= ocInternalEnd ) in CreateStringFromToken()
1684 if ( (eOp == ocPush || eOp == ocColRowNameAuto) && in NextToken()
1696 if ( eOp != ocAnd && eOp != ocOr && in NextToken()
[all …]
H A Dtoken.cxx92 return (eOp != ocPush && eOp != ocBad && eOp != ocColRowName && in IsFunction()
93 eOp != ocColRowNameAuto && eOp != ocName && eOp != ocDBArea && in IsFunction()
111 if ( eOp < SC_OPCODE_STOP_DIV && eOp != ocExternal && eOp != ocMacro && in GetParamCount()
112 eOp != ocIf && eOp != ocChose && eOp != ocPercentSign ) in GetParamCount()
125 else if (SC_OPCODE_START_1_PAR <= eOp && eOp < SC_OPCODE_STOP_1_PAR) in GetParamCount()
127 else if ( eOp == ocIf || eOp == ocChose ) in GetParamCount()
845 else if ( eOp == ocIf || eOp == ocChose ) in HasMatrixDoubleRefOps()
887 switch (eOp) in isRewriteNeeded()
1011 switch (eOp) in AddMissing()
1173 eOp == SC_OPCODE_OPEN || eOp == SC_OPCODE_SEP ) in MayReferenceFollow()
[all …]
/trunk/main/formula/source/ui/dlg/
H A Dformula.cxx504 const sal_Int32 eOp = pIter->OpCode; in GetFunctionPos() local
510 if(!bUserMatrixFlag && FormulaCompiler::IsMatrixFunction((OpCode)eOp) ) in GetFunctionPos()
515 …if ( eOp == m_aSpecialOpCodes[sheet::FormulaMapGroupSpecialOffset::PUSH].Token.OpCode || eOp == m_… in GetFunctionPos()
542 if ( eOp == m_aSeparatorsOpCodes[TOKEN_OPEN].OpCode ) in GetFunctionPos()
547 else if ( eOp == m_aSeparatorsOpCodes[TOKEN_CLOSE].OpCode ) in GetFunctionPos()
555 …bIsFunction && m_aSpecialOpCodes[sheet::FormulaMapGroupSpecialOffset::SPACES].Token.OpCode != eOp ) in GetFunctionPos()
671 OpCode eOp = _pToken->GetOpCode(); in MakeTree() local
689 (eOp==ocAdd || eOp==ocMul || in MakeTree()
690 eOp==ocAmpersand)) in MakeTree()
696 if(eOp==ocBad) in MakeTree()
[all …]
/trunk/main/framework/inc/services/
H A Dpathsettings.hxx264 void impl_notifyPropListener( PathSettings::EChangeOp eOp ,
/trunk/main/framework/inc/uiconfiguration/
H A Dmoduleuiconfigurationmanager.hxx191 …ts_notifyContainerListener( const ::com::sun::star::ui::ConfigurationEvent& aEvent, NotifyOp eOp );
H A Duiconfigurationmanager.hxx179 …ts_notifyContainerListener( const ::com::sun::star::ui::ConfigurationEvent& aEvent, NotifyOp eOp );
/trunk/main/framework/source/services/
H A Dpathsettings.cxx189 PathSettings::EChangeOp eOp = impl_updatePath(sPath, sal_True); in changesOccurred() local
191 (eOp == PathSettings::E_ADDED ) || in changesOccurred()
192 (eOp == PathSettings::E_REMOVED) in changesOccurred()
399 PathSettings::EChangeOp eOp = PathSettings::E_UNDEFINED; in impl_updatePath() local
415 { eOp = PathSettings::E_REMOVED; } in impl_updatePath()
443 if (eOp == PathSettings::E_UNDEFINED) in impl_updatePath()
446 eOp = PathSettings::E_CHANGED; in impl_updatePath()
448 eOp = PathSettings::E_ADDED; in impl_updatePath()
451 switch(eOp) in impl_updatePath()
459 impl_notifyPropListener(eOp, sPath, pPathOld, pPathNew); in impl_updatePath()
[all …]
/trunk/main/framework/source/uiconfiguration/
H A Dimagemanagerimpl.cxx1420 … ImageManagerImpl::implts_notifyContainerListener( const ConfigurationEvent& aEvent, NotifyOp eOp ) in implts_notifyContainerListener() argument
1431 switch ( eOp ) in implts_notifyContainerListener()

Completed in 170 milliseconds

123