Home
last modified time | relevance | path

Searched refs:nLength (Results 101 – 125 of 450) sorted by relevance

12345678910>>...18

/trunk/main/sc/source/filter/xml/
H A DXMLTextPContext.cxx150 sal_Int32 nLength = sSetString.getLength(); in CreateChildContext() local
151 if ( nLength > 0 ) in CreateChildContext()
153 sal_Unicode cLast = sSetString.getStr()[ nLength - 1 ]; in CreateChildContext()
161 …sSetString = sSetString.copy( 0, nLength - 1 ); // remove from the string for SetCursorOnTextImpo… in CreateChildContext()
/trunk/main/autodoc/source/parser/adoc/
H A Ddocu_pe.cxx223 uintt nLength = i_rTok.Length(); in Hdl_DocWord() local
224 if ( nLength > 2 ) in Hdl_DocWord()
227 bool bMayBeFunction = *(i_rTok.Text() + nLength - 2) == '(' in Hdl_DocWord()
228 AND *(i_rTok.Text() + nLength - 1) == ')'; in Hdl_DocWord()
/trunk/main/sc/source/filter/qpro/
H A Dqpro.cxx229 void ScQProReader::readString( String &rString, sal_uInt16 nLength ) in readString() argument
231 sal_Char* pText = new sal_Char[ nLength + 1 ]; in readString()
232 mpStream->Read( pText, nLength ); in readString()
233 pText[ nLength ] = 0; in readString()
/trunk/main/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/
H A Dfilterdetect.cxx172 sal_Int32 nLength = aArguments.getLength(); in initialize() local
173 if ( nLength && ( aArguments[0] >>= aAnySeq ) ) in initialize()
176 nLength = aAnySeq.getLength(); in initialize()
177 for ( sal_Int32 i = 0 ; i < nLength; i++) in initialize()
/trunk/main/forms/source/xforms/
H A Ddatatypes.cxx577 sal_Int32 nLength = rValue.getLength(); in _validate() local
581 if ( nLimit != nLength ) in _validate()
586 if ( ( m_aMaxLength >>= nLimit ) && ( nLength > nLimit ) ) in _validate()
588 else if ( ( m_aMinLength >>= nLimit ) && ( nLength < nLimit ) ) in _validate()
705 sal_Int32 nLength = rValue.getLength(); in _validate() local
710 for( ; pValue[n] != sal_Unicode('.') && n < nLength; n++ ) in _validate()
714 for( ; n < nLength; n++ ) in _validate()
/trunk/main/formula/source/ui/dlg/
H A Dformula.cxx630 xub_StrLen nLength=rStrExp.Len(); in CalcStruct() local
641 if(rStrExp.GetChar(nLength-1)=='(') in CalcStruct()
643 aString.Erase((xub_StrLen)(nLength-1)); in CalcStruct()
656 if(rStrExp.GetChar(nLength-1)=='(') in CalcStruct()
899 sal_Int32 nLength = m_aArguments[i].getLength()+1; in FillControls() local
901 if(nArgPos<=nEditPos && nEditPos<nArgPos+nLength) in FillControls()
1269 sal_Int32 nLength=(*aIter).getLength(); in EditFuncParas() local
1271 if(nArgPos<=nEditPos && nEditPos<nArgPos+nLength) in EditFuncParas()
1276 nArgPos+=nLength+1; in EditFuncParas()
1522 sal_Int32 nLength= m_aArguments[nPos].getLength(); in UpdateSelection() local
[all …]
/trunk/main/unotools/source/config/
H A Dpathoptions.cxx402 sal_Int32 nLength = 0; // = count of letters from "$(" to ")" in string in SubstVar() local
411 nLength = nEndPosition - nPosition + 1; in SubstVar()
415 while ( ( nPosition != STRPOS_NOTFOUND ) && ( nLength > 0 ) ) in SubstVar()
419 OUString aSubString = aWorkText.copy( nPosition, nLength ); in SubstVar()
427 nPosition += nLength; in SubstVar()
435 nLength = 0; in SubstVar()
445 nLength = 0; in SubstVar()
448 nLength = nEndPosition - nPosition + 1; in SubstVar()
/trunk/main/sw/source/core/inc/
H A DSwPortionHandler.hxx59 sal_uInt16 nLength, /// length of this portion in the model string
69 sal_uInt16 nLength, /// length of this portion in the model string
88 sal_uInt16 nLength /// number of 'model string' characters to be skipped
/trunk/main/xmloff/source/text/
H A DXMLIndexBibliographyConfigurationContext.cxx91 sal_Int16 nLength = xAttrList->getLength(); in StartElement() local
92 for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++) in StartElement()
167 sal_Int16 nLength = xAttrList->getLength(); in CreateChildContext() local
168 for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++) in CreateChildContext()
/trunk/main/writerfilter/source/filter/
H A DImportFilter.cxx169 sal_Int32 nLength = aArguments.getLength(); in initialize() local
170 if ( nLength && ( aArguments[0] >>= aAnySeq ) ) in initialize()
173 nLength = aAnySeq.getLength(); in initialize()
174 for ( sal_Int32 i = 0 ; i < nLength; i++) in initialize()
/trunk/main/dbaccess/source/filter/xml/
H A DxmlTable.cxx96 sal_Int16 nLength = (_xAttrList.is()) ? _xAttrList->getLength() : 0; in DBG_NAME() local
97 for(sal_Int16 i = 0; i < nLength; ++i) in DBG_NAME()
264 sal_Int16 nLength = (_xAttrList.is()) ? _xAttrList->getLength() : 0; in fillAttributes() local
265 for(sal_Int16 i = 0; i < nLength; ++i) in fillAttributes()
/trunk/main/svx/source/svdraw/
H A Dsvdotextpathdecomposition.cxx144 xub_StrLen getPortionIndex(xub_StrLen nIndex, xub_StrLen nLength) const in getPortionIndex()
148 return (mnTextStart + (mnTextLength - (nIndex + nLength))); in getPortionIndex()
156 double getDisplayLength(xub_StrLen nIndex, xub_StrLen nLength) const in getDisplayLength()
163 fRetval = aTextLayouter.getTextHeight() * (double)nLength; in getDisplayLength()
167 fRetval = aTextLayouter.getTextWidth(maText, getPortionIndex(nIndex, nLength), nLength); in getDisplayLength()
/trunk/main/toolkit/test/accessibility/
H A DAccessibleTextHandler.java188 int nLength = xText.getCharacterCount(); in textAtIndexNode() local
189 if( nLength > 0 ) in textAtIndexNode()
200 for(int i = 1; i < nLength; i++) in textAtIndexNode()
225 nStart, nLength, in textAtIndexNode()
342 int nLength = xText.getCharacterCount(); in getAttributes() local
343 while( nIndex < nLength ) in getAttributes()
/trunk/main/filter/source/t602/
H A Dt602filter.cxx151 sal_Int32 nLength = Descriptor.getLength(); in detect() local
153 for ( sal_Int32 i = 0 ; i < nLength; i++) in detect()
203 sal_Int32 nLength = aArguments.getLength(); in initialize() local
204 if ( nLength && ( aArguments[0] >>= aAnySeq ) ) in initialize()
207 nLength = aAnySeq.getLength(); in initialize()
208 for ( sal_Int32 i = 0 ; i < nLength; i++) in initialize()
257 sal_Int32 nLength = aDescriptor.getLength(); in importImpl() local
260 for ( sal_Int32 i = 0 ; i < nLength; i++) in importImpl()
/trunk/main/writerfilter/source/doctok/
H A DWW8PropertySetImpl.cxx274 sal_uInt32 nLength = aTmpAttr.getByteLength(); in getAttribute() local
276 if (nOffset + nLength > getCount()) in getAttribute()
277 nLength = getCount() - nOffset; in getAttribute()
280 (new WW8PropertyImpl(*this, nOffset, nLength)); in getAttribute()
/trunk/main/basic/source/runtime/
H A Dcomenumwrapper.cxx38 sal_Int32 nLength = 0; in hasMoreElements() local
40 …m_xInvocation->getValue( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "length" ) ) ) >>= nLength ) in hasMoreElements()
41 && nLength > m_nCurInd ); in hasMoreElements()
/trunk/main/accessibility/source/standard/
H A Dvclxaccessiblelistbox.cxx99 sal_Int32 nLength = aNames.getLength(); in getSupportedServiceNames() local
100 aNames.realloc( nLength + 1 ); in getSupportedServiceNames()
101 aNames[nLength] = ::rtl::OUString::createFromAscii( in getSupportedServiceNames()
H A Dvclxaccessibledropdownlistbox.cxx101 sal_Int32 nLength = aNames.getLength(); in getSupportedServiceNames() local
102 aNames.realloc( nLength + 1 ); in getSupportedServiceNames()
103 aNames[nLength] = ::rtl::OUString::createFromAscii( in getSupportedServiceNames()
H A Dvclxaccessibledropdowncombobox.cxx133 sal_Int32 nLength = aNames.getLength(); in getSupportedServiceNames() local
134 aNames.realloc( nLength + 1 ); in getSupportedServiceNames()
135 aNames[nLength] = ::rtl::OUString::createFromAscii( in getSupportedServiceNames()
H A Dvclxaccessiblecombobox.cxx87 sal_Int32 nLength = aNames.getLength(); in getSupportedServiceNames() local
88 aNames.realloc( nLength + 1 ); in getSupportedServiceNames()
89 aNames[nLength] = ::rtl::OUString::createFromAscii( in getSupportedServiceNames()
H A Dvclxaccessibleedit.cxx344 sal_Int32 nLength = implGetText().getLength(); in getCharacterBounds() local
346 if ( !implIsValidRange( nIndex, nIndex, nLength ) ) in getCharacterBounds()
352 if ( nIndex == nLength ) in getCharacterBounds()
355 for ( sal_Int32 i = 0; i < nLength; ++i ) in getCharacterBounds()
364 if ( i == nLength - 1 ) in getCharacterBounds()
/trunk/main/automation/source/simplecm/
H A Dsimplecm.cxx263 #define READ_SOCKET( pBuffer, nLength )\ argument
265 {bWasError |= pTCPIO->ReceiveBytes( pBuffer, nLength ) != C_ERROR_NONE;}
267 #define READ_SOCKET_LEN( pBuffer, nLength, nTotal )\ argument
268 READ_SOCKET( pBuffer, nLength );\
270 {nTotal += nLength;}
/trunk/main/sfx2/source/doc/
H A Ddoctemplateslocal.cxx226 sal_Int32 nLength = m_aElementsSeq.getLength(); in endElement() local
227 if ( nLength <= 0 ) in endElement()
230 if ( !m_aElementsSeq[nLength-1].equals( aName ) ) in endElement()
233 m_aElementsSeq.realloc( nLength - 1 ); in endElement()
/trunk/main/xmlsecurity/source/xmlsec/
H A Dsaxhelper.cxx103 sal_Int32 nLength = aAttributes.getLength();; in attrlist_to_nxmlstr() local
105 if( nLength != 0 ) in attrlist_to_nxmlstr()
107 attrs = ( const xmlChar** )xmlMalloc( ( nLength * 2 + 2 ) * sizeof( xmlChar* ) ) ; in attrlist_to_nxmlstr()
114 for( int i = 0 , j = 0 ; j < nLength ; ++j ) in attrlist_to_nxmlstr()
/trunk/main/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/
H A DFlatXml.cxx126 sal_Int32 nLength = aSourceData.getLength(); in importer() local
129 for ( sal_Int32 i = 0 ; i < nLength; i++) in importer()
190 sal_Int32 nLength = aSourceData.getLength(); in exporter() local
191 for ( sal_Int32 i = 0 ; i < nLength; i++) in exporter()

Completed in 145 milliseconds

12345678910>>...18