Lines Matching refs:rCID

665 OUString ObjectIdentifier::getDragMethodServiceName( const OUString& rCID )  in getDragMethodServiceName()  argument
669 sal_Int32 nIndexStart = rCID.indexOf( m_aDragMethodEquals ); in getDragMethodServiceName()
672 nIndexStart = rCID.indexOf( '=', nIndexStart ); in getDragMethodServiceName()
676 sal_Int32 nNextSlash = rCID.indexOf( '/', nIndexStart ); in getDragMethodServiceName()
680 sal_Int32 nNextColon = rCID.indexOf( ':', nIndexStart ); in getDragMethodServiceName()
683 aRet = rCID.copy(nIndexStart,nIndexEnd-nIndexStart); in getDragMethodServiceName()
690 OUString ObjectIdentifier::getDragParameterString( const OUString& rCID ) in getDragParameterString() argument
694 sal_Int32 nIndexStart = rCID.indexOf( m_aDragParameterEquals ); in getDragParameterString()
697 nIndexStart = rCID.indexOf( '=', nIndexStart ); in getDragParameterString()
701 sal_Int32 nNextSlash = rCID.indexOf( '/', nIndexStart ); in getDragParameterString()
705 sal_Int32 nNextColon = rCID.indexOf( ':', nIndexStart ); in getDragParameterString()
708 aRet = rCID.copy(nIndexStart,nIndexEnd-nIndexStart); in getDragParameterString()
911 ObjectType ObjectIdentifier::getObjectType( const OUString& rCID ) in getObjectType() argument
914 sal_Int32 nLastSign = rCID.lastIndexOf( ':' );//last sign before the type string in getObjectType()
916 nLastSign = rCID.lastIndexOf( '/' ); in getObjectType()
919 sal_Int32 nEndIndex = rCID.lastIndexOf( '=' ); in getObjectType()
927 if( rCID.match(C2U("Page"),nLastSign) ) in getObjectType()
929 else if( rCID.match(C2U("Title"),nLastSign) ) in getObjectType()
931 else if( rCID.match(C2U("LegendEntry"),nLastSign) ) in getObjectType()
933 else if( rCID.match(C2U("Legend"),nLastSign) ) in getObjectType()
935 else if( rCID.match(C2U("DiagramWall"),nLastSign) ) in getObjectType()
937 else if( rCID.match(C2U("DiagramFloor"),nLastSign) ) in getObjectType()
939 else if( rCID.match(C2U("D="),nLastSign) ) in getObjectType()
941 else if( rCID.match(C2U("AxisUnitLabel"),nLastSign) ) in getObjectType()
943 else if( rCID.match(C2U("Axis"),nLastSign) ) in getObjectType()
945 else if( rCID.match(C2U("Grid"),nLastSign) ) in getObjectType()
947 else if( rCID.match(C2U("SubGrid"),nLastSign) ) in getObjectType()
949 else if( rCID.match(C2U("Series"),nLastSign) ) in getObjectType()
951 else if( rCID.match(C2U("Point"),nLastSign) ) in getObjectType()
953 else if( rCID.match(C2U("DataLabels"),nLastSign) ) in getObjectType()
955 else if( rCID.match(C2U("DataLabel"),nLastSign) ) in getObjectType()
957 else if( rCID.match(C2U("ErrorsX"),nLastSign) ) in getObjectType()
959 else if( rCID.match(C2U("ErrorsY"),nLastSign) ) in getObjectType()
961 else if( rCID.match(C2U("ErrorsZ"),nLastSign) ) in getObjectType()
963 else if( rCID.match(C2U("Errors"),nLastSign) ) in getObjectType()
965 else if( rCID.match(C2U("Curve"),nLastSign) ) in getObjectType()
967 else if( rCID.match(C2U("Equation"),nLastSign) ) in getObjectType()
969 else if( rCID.match(C2U("Average"),nLastSign) ) in getObjectType()
971 else if( rCID.match(C2U("StockRange"),nLastSign) ) in getObjectType()
973 else if( rCID.match(C2U("StockLoss"),nLastSign) ) in getObjectType()
975 else if( rCID.match(C2U("StockGain"),nLastSign) ) in getObjectType()
1068 OUString ObjectIdentifier::getParticleID( const OUString& rCID ) in getParticleID() argument
1071 sal_Int32 nLast = rCID.lastIndexOf('='); in getParticleID()
1073 aRet = rCID.copy(++nLast); in getParticleID()
1077 OUString ObjectIdentifier::getFullParentParticle( const OUString& rCID ) in getFullParentParticle() argument
1081 sal_Int32 nStartPos = rCID.lastIndexOf('/'); in getFullParentParticle()
1085 sal_Int32 nEndPos = rCID.lastIndexOf(':'); in getFullParentParticle()
1088 aRet = rCID.copy(nStartPos,nEndPos-nStartPos); in getFullParentParticle()
1095 OUString ObjectIdentifier::getObjectID( const rtl::OUString& rCID ) in getObjectID() argument
1099 sal_Int32 nStartPos = rCID.lastIndexOf('/'); in getObjectID()
1103 sal_Int32 nEndPos = rCID.getLength(); in getObjectID()
1104 aRet = rCID.copy(nStartPos,nEndPos-nStartPos); in getObjectID()
1358 TitleHelper::eTitleType ObjectIdentifier::getTitleTypeForCID( const OUString& rCID ) in getTitleTypeForCID() argument
1362 OUString aParentParticle = ObjectIdentifier::getFullParentParticle( rCID ); in getTitleTypeForCID()
1377 OUString ObjectIdentifier::getSeriesParticleFromCID( const OUString& rCID ) in getSeriesParticleFromCID() argument
1381 lcl_parseCooSysIndices( nDiagramIndex, nCooSysIndex, rCID ); in getSeriesParticleFromCID()
1386 lcl_parseSeriesIndices( nChartTypeIndex, nSeriesIndex, nPointIndex, rCID ); in getSeriesParticleFromCID()