Lines Matching refs:nEnd
89 sal_Int32 nStart,nEnd; in splitLastFromConfigurationPath() local
107 nEnd = nPos; in splitLastFromConfigurationPath()
108 nPos = _sInPath.lastIndexOf(chQuote,nEnd); in splitLastFromConfigurationPath()
114 nEnd = nPos + 1; in splitLastFromConfigurationPath()
115 nPos = _sInPath.lastIndexOf('[',nEnd); in splitLastFromConfigurationPath()
126 nStart = 0, nEnd = _sInPath.getLength(); in splitLastFromConfigurationPath()
133 nEnd = nPos+1; in splitLastFromConfigurationPath()
134 nPos = _sInPath.lastIndexOf('/',nEnd); in splitLastFromConfigurationPath()
139 nStart < nEnd && in splitLastFromConfigurationPath()
140 nEnd <= _sInPath.getLength() ); in splitLastFromConfigurationPath()
145 _rsLocalName = _sInPath.copy(nStart, nEnd-nStart); in splitLastFromConfigurationPath()
159 sal_Int32 nEnd = nSep; in extractFirstFromConfigurationPath() local
169 nEnd = _sInPath.indexOf(chQuote, nStart+1); in extractFirstFromConfigurationPath()
170 nBracket = nEnd+1; in extractFirstFromConfigurationPath()
174 nEnd = _sInPath.indexOf(']',nStart); in extractFirstFromConfigurationPath()
175 nBracket = nEnd; in extractFirstFromConfigurationPath()
177 …OSL_ENSURE(nEnd > nStart && _sInPath[nBracket] == ']', "Invalid config path: improper mismatch of … in extractFirstFromConfigurationPath()
184 OUString sResult = (nEnd >= 0) ? _sInPath.copy(nStart, nEnd-nStart) : _sInPath; in extractFirstFromConfigurationPath()