Lines Matching refs:eOp
352 virtual void processOpCode0( SbiOpcode eOp ) = 0;
353 virtual void processOpCode1( SbiOpcode eOp, T nOp1 ) = 0;
354 virtual void processOpCode2( SbiOpcode eOp, T nOp1, T nOp2 ) = 0;
390 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()
411 visitor.processOpCode2( eOp, nOp1, nOp2 ); in visitBuffer()
456 virtual void processOpCode0( SbiOpcode eOp ) in processOpCode0() argument
458 m_ConvertedBuf += (sal_uInt8)eOp; in processOpCode0()
460 virtual void processOpCode1( SbiOpcode eOp, T nOp1 ) in processOpCode1() argument
462 m_ConvertedBuf += (sal_uInt8)eOp; in processOpCode1()
463 switch( eOp ) in processOpCode1()
485 virtual void processOpCode2( SbiOpcode eOp, T nOp1, T nOp2 ) in processOpCode2() argument
487 m_ConvertedBuf += (sal_uInt8)eOp; in processOpCode2()
488 if ( eOp == _CASEIS ) in processOpCode2()