Home
last modified time | relevance | path

Searched refs:length (Results 126 – 150 of 1498) sorted by relevance

12345678910>>...60

/aoo41x/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/
H A DWSEncoder.java128 nrChars += ((WseTextRun)e).getText().length(); in getRecords()
156 int length = e.getByteCount(); in getRecords() local
157 if ((length + currRecLen) <= 4096) { in getRecords()
158 System.arraycopy(e.getBytes(), 0, currRec, currRecLen, length); in getRecords() local
159 currRecLen += length; in getRecords()
172 currRecLen, length - firstPartLen); in getRecords()
173 currRecLen += length - firstPartLen; in getRecords()
/aoo41x/main/toolkit/qa/complex/toolkit/
H A DAssert.java70 for ( int i=0; i<i_argClasses.length; ++i ) in assertException()
73 if ( i<i_argClasses.length - 1 ) in assertException()
137 final Class[] argClasses = new Class[ i_argClasses.length ]; in impl_getMethod()
138 for ( int i=0; i < argClasses.length; ++i ) in impl_getMethod()
144 for ( int c=0; c<substitutionTable.length; ++c ) in impl_getMethod()
182 Class[] argClasses = new Class[ i_methodArgs.length ]; in assertException()
183 for ( int i=0; i<i_methodArgs.length; ++i ) in assertException()
/aoo41x/main/xmerge/source/palmtests/qa/comparator/
H A DRecord.java64 data = new byte[d.length]; in Record()
65 System.arraycopy(d, 0, data, 0, d.length); in Record()
76 return data.length; in getSize()
102 out.writeShort(data.length); in write()
145 if (rec.getSize() == data.length) { in equals()
147 for (int i = 0; i < data.length; i++) { in equals()
H A Dpdbcomparison.java112 if (logFile == null || logFile.length() == 0) in parsePropertyFile()
115 if (outFile == null || outFile.length() == 0) in parsePropertyFile()
394 long len = raf.length(); in writeToLog()
432 long len = raf.length(); in writeToOutputFile()
465 int nargs = args.length; in main()
503 (pdbarr1.length == 0) || in main()
504 (pdbarr1.length == 0)) in main()
513 for (int i=0; i<pdbarr1.length; i++) in main()
/aoo41x/main/setup_native/source/win32/customactions/shellextensions/
H A Dupgrade.cxx52 assert((guid.length() == 36) && "No GUID or wrong format!"); in GetGuidPart()
73 char* buff = reinterpret_cast<char*>(_alloca(str.length())); in Invert()
74 strncpy(buff, str.c_str(), str.length()); in Invert()
77 char* back = buff + str.length() - 1; in Invert()
82 return string(buff, str.length()); in Invert()
137 return (GetMsiProperty(handle, sProperty).length() > 0); in IsSetMsiProperty()
179 upgradeCode = ConvertGuid(string(upgradeCode.c_str() + 1, upgradeCode.length() - 2)); in SetProductInstallMode()
/aoo41x/main/cosv/source/strings/
H A Dstreamstr.cxx179 size_type nLength = i_s.length(); in operator <<()
384 seek_type nLength = seek_type( length() ); in seekp()
470 size_type nCount = min(i_nCount, length()); in pop_front()
482 size_type nCount = min(i_nCount, length()); in pop_back()
628 if (i_nStart >= length() OR i_nSize < 1) in replace()
681 while ( p <= length() - nSearch ) in replace_all()
709 if ( i_nStart < length() ) in to_lower()
711 char * pStop = i_nStart + i_nLength < length() in to_lower()
740 if ( i_nStart < length() ) in to_upper()
742 char * pStop = i_nStart + i_nLength < length() in to_upper()
[all …]
/aoo41x/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/
H A DRecord.java87 data = new byte[d.length]; in Record()
89 System.arraycopy(d, 0, data, 0, d.length); in Record()
100 return data.length; in getSize()
145 out.writeShort(data.length); in write()
196 if (rec.getSize() == data.length) { in equals()
198 for (int i = 0; i < data.length; i++) { in equals()
/aoo41x/main/lingucomponent/source/spellcheck/macosxspell/
H A Dmacspellimp.cxx166 … OUString lang([aLang cStringUsingEncoding: NSUTF8StringEncoding], [aLang length], aEnc); in getLocales()
167 … OUString country([ aCountry cStringUsingEncoding: NSUTF8StringEncoding], [aCountry length], aEnc); in getLocales()
258 …NSString* aNSStr = [[NSString alloc] initWithCharacters: nWord.getStr() length: nWord.getLength()]; in GetSpellFailure()
259 …NSString* aLang = [[NSString alloc] initWithCharacters: rLocale.Language.getStr() length: rLocale.… in GetSpellFailure()
262 …Country = [[NSString alloc] initWithCharacters: rLocale.Country.getStr() length: rLocale.Country.g… in GetSpellFailure()
272 if(range.length>0) in GetSpellFailure()
365 …NSString* aNSStr = [[NSString alloc] initWithCharacters: nWord.getStr() length: nWord.getLength()]; in GetProposals()
366 …NSString* aLang = [[NSString alloc] initWithCharacters: rLocale.Language.getStr() length: rLocale.… in GetProposals()
369 …Country = [[NSString alloc] initWithCharacters: rLocale.Country.getStr() length: rLocale.Country.g… in GetProposals()
386 …onst sal_Unicode*)[guess cStringUsingEncoding:NSUnicodeStringEncoding], (sal_Int32)[guess length]); in GetProposals()
/aoo41x/test/testcommon/source/org/openoffice/test/
H A DRun.java66 for (int i = 0; i < args.length; i++) { in main()
81 if (++i >= args.length) in main()
86 if (++i >= args.length) in main()
90 if (++i >= args.length) in main()
94 if (++i >= args.length) in main()
98 if (++i >= args.length) in main()
102 if (++i >= args.length) in main()
/aoo41x/main/qadevOOo/tests/java/mod/_fwl/
H A DFilterFactory.java129 for (int i = 0; i < filterNames.length; i++) { in createTestEnvironment()
142 if (filterImpl != null && filterImpl.length() > 0) { in createTestEnvironment()
177 while (i < props.length && !props[i].Name.equals(pName)) { in getPropertyValueValue()
180 return i < props.length ? props[i].Value : null; in getPropertyValueValue()
186 while (i < props.length && !props[i].Name.equals(pName)) { in setPropertyValueValue()
194 while (i < props.length && !props[i].Name.equals(pName)) { in getPropertyValue()
197 return i < props.length ? props[i] : null; in getPropertyValue()
/aoo41x/test/testuno/source/fvt/uno/sd/bullet/
H A DNumberingProperty.java170 for(int i=0;i<proValues2.length;i++) in testPrefix()
213 for(int i=0;i<proValues2.length;i++) in testSuffix()
259 for(int i=0;i<proValues2.length;i++) in testStartWith()
307 for(int i=0;i<proValues2.length;i++) in testFirstLineOffset()
352 for(int i=0;i<proValues2.length;i++) in testLeftMargin()
402 for(int i=0;i<proValues2.length;i++) in testSymbolTextDistance()
435 for(int i=0;i<proValues2.length;i++) in testAjustRight()
480 for(int i=0;i<proValues2.length;i++) in testAjustCenter()
511 for(int i=0;i<proValues2.length;i++) in testAjustLeft()
555 for(int i=0;i<proValues2.length;i++) in testSymbolColor()
[all …]
/aoo41x/main/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/
H A DXMLPackageDescription.java66 public void characters(char[] ch, int start, int length) { in characters() argument
68 entity.value = entity.value == null ? new String(ch, start, length) in characters()
69 : entity.value + new String(ch, start, length); in characters()
192 …if ((childParentName != null) && (childParentName.length() > 0) && (! childParentName.equals(self)… in adjust()
217 for (int i = 0; i < file.length; i++) { in read()
280 if ((value != null) && (value.length() > 0)) { in dump()
282 if (trimmedValue.length() > 60) { in dump()
285 if (trimmedValue.length() > 0) { in dump()
/aoo41x/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/
H A DConvert.java328 if (args.length == 0) { in checkClParameters()
357 for (int i = 1; i < args.length; i++) { in checkClParameters()
361 if (args.length > i + 1) { in checkClParameters()
372 if (args.length > i + 1) { in checkClParameters()
374 if (args.length > i +1 &&!args[i+1].startsWith("-")) { in checkClParameters()
386 if (args.length > i + 1) { in checkClParameters()
399 if (args.length > i + 1 in checkClParameters()
429 if (args.length > i + 1) { in checkClParameters()
/aoo41x/main/qadevOOo/tests/java/ifc/i18n/
H A D_XExtendedIndexEntrySupplier.java61 for (int i = 0; i < locales.length; i++) { in _getAlgorithmList()
65 locResult = algNames != null && algNames.length > 0; in _getAlgorithmList()
68 for (int j=0; j<algNames.length; j++) { in _getAlgorithmList()
87 for (int i = 0; i < locales.length; i++) { in _getIndexKey()
92 for (int k=0;k<algs.length;k++) { in _getIndexKey()
109 tRes.tested("getLocaleList()", locales.length > 0); in _getLocaleList()
157 for (int j = 0; j < names.length; j++) { in _loadAlgorithm()
198 for (int i = 0; i < locales.length; i++) { in _usePhoneticEntry()
/aoo41x/main/javaunohelper/com/sun/star/lib/uno/adapter/
H A DXOutputStreamToByteArrayAdapter.java60 size = buffer.length; in XOutputStreamToByteArrayAdapter()
79 if ( buffer.length > position && !externalBuffer ) in closeOutput()
101 if ( values.length > size-position ) in writeBytes()
106 while ( values.length > size-position ) in writeBytes()
113 System.arraycopy(values, 0, buffer, position, values.length); in writeBytes()
114 position += values.length; in writeBytes()
/aoo41x/main/wizards/com/sun/star/wizards/common/
H A DProperties.java46 for (int i = 0; i < props.length; i++) in getPropertyValue()
58 for (int i = 0; i < props.length; i++) in hasPropertyValue()
78 for (int i = 0; i < pv.length; i++) in getProperties()
110 if (_oObjectArray.length > 0) in convertToPropertyValueArray()
112 retproperties = new PropertyValue[_oObjectArray.length]; in convertToPropertyValueArray()
113 for (int i = 0; i < _oObjectArray.length; i++) in convertToPropertyValueArray()
/aoo41x/main/framework/qa/complex/imageManager/
H A D_XImageManager.java50 for (int i=0; i<(imageNames.length>10?10:imageNames.length); i++) in _getAllImageNames()
71 for (int i=0; i<(imageNames.length>10?10:imageNames.length); i++) in _hasImage()
84 oObj.insertImages((short)imageNames.length, imageNames, xGraphicArray); in _insertImages()
97 oObj.removeImages((short)(imageNames.length-1), imageNames); in _removeImages()
/aoo41x/main/offapi/com/sun/star/accessibility/
H A DXAccessibleText.idl71 use indices from 0 to length.</p>
137 The valid range is 0..length-1.
158 The valid range is 0..length-1.
217 The valid range is 0..length.
313 The valid range is 0..length.
317 The valid range is 0..length.
356 The valid range is 0..length.
360 The valid range is 0..length.
384 The valid range is 0..length.
423 The valid range is 0..length.
[all …]
H A DXAccessibleEditableText.idl65 The valid range is 0..length.
69 The valid range is 0..length.
92 The valid range is 0..length.
114 The valid range is 0..length.
118 The valid range is 0..length.
140 The valid range is 0..length.
167 The valid range is 0..length.
171 The valid range is 0..length.
199 The valid range is 0..length.
203 The valid range is 0..length.
/aoo41x/main/xmerge/source/aportisdoc/java/org/openoffice/xmerge/converter/xml/sxw/aportisdoc/
H A DDocEncoder.java113 textLen = textBytes.length; in getRecords()
114 textRecCount = (short) (textBytes.length / TEXT_RECORD_SIZE); in getRecords()
126 System.arraycopy(textBytes, pos, recBytes, 0, recBytes.length); in getRecords()
127 pos += recBytes.length; in getRecords()
139 System.arraycopy(textBytes, pos, recBytes, 0, recBytes.length); in getRecords()
151 for (int i = 1; i < allRecords.length; i++) { in getRecords()
/aoo41x/main/swext/mediawiki/src/com/sun/star/wiki/
H A DHelper.java328 if ( sResultURL.length() == 0 ) in GetMainURL()
532 if ( xContext != null && aTypeName != null && aTypeName.length() != 0 in GetFilterName()
533 && aDocServiceName != null && aDocServiceName.length() != 0 ) in GetFilterName()
554 int nLen = pFilterProps.length; in GetFilterName()
701 if ( xContext != null && sURL != null && sURL.length() > 0 ) in ShowURLInBrowser()
786 if ( sLoginPage != null && sLoginPage.length() > 0 ) in GetLoginToken()
838 if ( sLoginToken.length() > 0 ) in Login()
843 for ( int nArgInd = 0; nArgInd < pArgs.length; nArgInd++ ) in Login()
924 …if ( xContext != null && sURL != null && sURL.length() > 0 && sUserName != null && sUserName.lengt… in GetPasswordsForURLAndUser()
1081 if ( pNames != null && pNames.length > 0 ) in GetSpecialArgs()
[all …]
/aoo41x/main/l10ntools/source/help/
H A DHelpLinker.cxx180 unsigned int nKeyLen = aKeyStr.length(); in writeKeyValue_DBHelp()
181 unsigned int nValueLen = aValueStr.length(); in writeKeyValue_DBHelp()
283 for (size_t i=0; i < rIn.length(); ++i) in encode()
307 int fileLen = fileB.length(); in addBookmark()
309 fileLen += (1 + anchorB.length()); in addBookmark()
310 int dataLen = 1 + fileLen + 1 + jarfileB.length() + 1 + titleB.length(); in addBookmark()
315 for (size_t j = 0; j < fileB.length(); ++j) in addBookmark()
320 for (size_t j = 0; j < anchorB.length(); ++j) in addBookmark()
324 for (size_t j = 0; j < jarfileB.length(); ++j) in addBookmark()
327 dataB[i++] = static_cast<unsigned char>(titleB.length()); in addBookmark()
[all …]
/aoo41x/main/scripting/java/org/openoffice/netbeans/modules/office/filesystem/
H A DOpenOfficeDocFileSystem.java517 name.substring(File.separator.length()): name); in zipName()
666 if((oname.length() == 0) || (nname.length() == 0)) { in rename()
699 if(zname.length() == 0) { in delete()
835 parent = (name.length() > 0)? (name + SEPARATOR): ""; in setParent()
847 if( (entry.getName().length() > 0) && in evaluate()
852 if(parent.length() > 0) { in evaluate()
853 child = entry.getName().substring(parent.length()); in evaluate()
919 if(entry.getName().length() == 0) in evaluate()
986 0, name.length() - SEPARATOR.length()); in Entry()
/aoo41x/main/qadevOOo/runner/util/
H A DDBTools.java209 for (int i = 0; i < Info.length; i++) { in printInfo()
211 if (i + 1 < Info.length) out.print("; ") ; in printInfo()
224 for (int i = 0; i < TableFilter.length; i++) { in printInfo()
226 if (i+1 < TableFilter.length) out.print("; "); in printInfo()
234 for (int i = 0; i < TableTypeFilter.length; i++) { in printInfo()
236 if (i+1 < TableTypeFilter.length) out.print("; "); in printInfo()
571 for (int i = 0; i < values.length; i++) { in addRowToTestTable()
620 for (int i = 0; i < TST_TABLE_VALUES.length; i++) { in initializeTestTable()
723 for(int i = 0; i < DBTools.TST_TABLE_VALUES.length; i++) { in insertContentMySQLTable()
726 while(j < DBTools.TST_TABLE_VALUES[i].length) { in insertContentMySQLTable()
[all …]
/aoo41x/main/odk/examples/java/Storage/
H A DTestHelper.java101 if ( nSize != pBytes.length ) in WriteBytesToStream()
394 xInput.readBytes( pContents, pBytes.length + 1 ); in InternalCheckStream()
403 if ( pContents.length == 0 ) in InternalCheckStream()
409 if ( pBytes.length != pContents[0].length ) in InternalCheckStream()
411 …+ sName + "' contains wrong amount of data! (" + pContents[0].length + "/" + pBytes.length + ")" ); in InternalCheckStream()
416 for ( int ind = 0; ind < pBytes.length; ind++ ) in InternalCheckStream()
447 if ( nPropSize != pBytes.length ) in InternalCheckStream()
501 if ( pPass.length == 0 ) in checkEncrStream()

Completed in 268 milliseconds

12345678910>>...60