Home
last modified time | relevance | path

Searched refs:j (Results 1 – 25 of 1026) sorted by relevance

12345678910>>...42

/trunk/main/sc/source/core/tool/
H A Dscmatrix.cxx695 for ( SCSIZE j=0; j<n; j++ ) in CompareEqual() local
702 for ( SCSIZE j=0; j<n; j++ ) in CompareEqual() local
713 for ( SCSIZE j=0; j<n; j++ ) in CompareNotEqual() local
720 for ( SCSIZE j=0; j<n; j++ ) in CompareNotEqual() local
731 for ( SCSIZE j=0; j<n; j++ ) in CompareLess() local
738 for ( SCSIZE j=0; j<n; j++ ) in CompareLess() local
749 for ( SCSIZE j=0; j<n; j++ ) in CompareGreater() local
756 for ( SCSIZE j=0; j<n; j++ ) in CompareGreater() local
767 for ( SCSIZE j=0; j<n; j++ ) in CompareLessEqual() local
774 for ( SCSIZE j=0; j<n; j++ ) in CompareLessEqual() local
[all …]
H A Drangelst.cxx275 for ( sal_uLong j = 0; j < nListCount; j++ ) in Find() local
290 for ( sal_uLong j = 0; j < nListCount; j++ ) in ScRangeList() local
300 for ( sal_uLong j = 0; j < nListCount; j++ ) in operator =() local
310 for ( sal_uLong j = 0; j < nListCount; j++ ) in Intersects() local
321 for ( sal_uLong j = 0; j < nListCount; j++ ) in In() local
333 for ( sal_uLong j = 0; j < nListCount; j++ ) in GetCellCount() local
496 for ( sal_uInt16 j=0; j<2; j++ ) in UpdateReference() local
548 for ( sal_uLong j = 0; j < nListCount; j++ ) in Find() local
561 for ( sal_uLong j = 0; j < nListCount; j++ ) in Find() local
672 for ( j=0; j < nListCount; j++ ) in CreateNameSortedArray()
[all …]
H A Dparclass.cxx240 for ( size_t j=0; j < CommonData::nMaxParams; ++j ) in Init() local
245 pRun->aData.nParam[j] = pRun->aData.nParam[j - pRun->aData.nRepeatLast]; in Init()
255 for ( size_t j=0; j < CommonData::nMaxParams; ++j ) in Init() local
259 if ( j == 0 || pRun->aData.nParam[j-1] != Bounds ) in Init()
268 for ( size_t j=0; j < CommonData::nMaxParams; ++j ) in Init() local
270 … if ( pRun->aData.nParam[j] == ForceArray || pRun->aData.nParam[j] == ReferenceOrForceArray ) in Init()
441 for ( size_t j=0; j < nArgs; ++j ) in MergeArgumentsFromFunctionResource() local
447 for ( size_t j = nArgs; j < CommonData::nMaxParams; ++j ) in MergeArgumentsFromFunctionResource() local
454 for ( size_t j = nArgs; j < CommonData::nMaxParams; ++j ) in MergeArgumentsFromFunctionResource() local
536 for ( sal_uInt16 j=0; j < nParams; ++j ) in GenerateDocumentation() local
[all …]
H A Dinterpr5.cxx682 for (SCSIZE j=0; j < n; ++j) in lcl_LUP_decompose() local
740 for (SCSIZE j = k+1; j < n; ++j) in lcl_LUP_decompose() local
749 for (SCSIZE j=0; j < n; ++j) in lcl_LUP_decompose() local
754 for (SCSIZE j=0; j < n; ++j) in lcl_LUP_decompose() local
790 for (SCSIZE j = nFirst; j < i; ++j) in lcl_LUP_solve() local
801 for (SCSIZE j = i+1; j < n; ++j) in lcl_LUP_solve() local
1071 for (j = 0; j < nMinR; j++) in lcl_MatrixCalculation()
1102 for (j = 0; j < nMinR; j++) in MatConcat()
1679 for (SCSIZE j = 0; j < nCount; j++) in ScSumProduct() local
1719 for (j = 0; j < nR1; j++) in CalculateSumX2MY2SumX2DY2()
[all …]
/trunk/main/i18npool/source/localedata/data/
H A Dcurrency-check.awk72 for ( j=2; j<=NF; ++j )
81 sReplaceTo = substr( $j, 12, length($j)-l )
124 locale = substr( $j, 6, length($j)-l )
208 for ( j=0; j<nFormats; ++j )
214 print " bad: `" Formats[j] "' (" FormatLine[j] ")"
219 print "unknown: `" Formats[j] "' (" FormatLine[j] ")"
229 for ( j=0; j<nCurrencies; ++j )
252 for ( j=0; j<nCurrencies; ++j )
291 for ( j=0; j<nCurrencies; ++j )
308 if ( IDs[j] != BankSymbols[j] )
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/merger/diff/
H A DCharArrayLCSAlgorithm.java97 for (int j = 0; j < diffTable[i].length; j++) { in printDiffTable()
131 for (int j = 1; j < modSeqlen; j++) { in createDiffTable()
134 diffTable[i][j] = diffTable[i-1][j-1]+1; in createDiffTable()
136 if (diffTable[i-1][j] >= diffTable[i][j-1]) { in createDiffTable()
137 diffTable[i][j] = diffTable[i-1][j]; in createDiffTable()
139 diffTable[i][j] = diffTable[i][j-1]; in createDiffTable()
192 if ((diffTable[i-1][j-1] == diffTable[i][j] -1) && in generateResult()
193 (diffTable[i-1][j-1] == diffTable[i-1][j]) && in generateResult()
194 (diffTable[i-1][j-1] == diffTable[i][j-1])) { in generateResult()
199 if (diffTable[i-1][j] > diffTable[i][j-1]) { in generateResult()
[all …]
H A DIteratorLCSAlgorithm.java89 for (int j = 0; j < diffTable[i].length; j++) { in printDiffTable()
122 int i, j; in createDiffTable() local
135 diffTable[i][j] = diffTable[i-1][j-1]+1; in createDiffTable()
137 if (diffTable[i-1][j] >= diffTable[i][j-1]) { in createDiffTable()
138 diffTable[i][j] = diffTable[i-1][j]; in createDiffTable()
140 diffTable[i][j] = diffTable[i][j-1]; in createDiffTable()
194 if ((diffTable[i-1][j-1] == diffTable[i][j] -1) && in generateResult()
195 (diffTable[i-1][j-1] == diffTable[i-1][j]) && in generateResult()
196 (diffTable[i-1][j-1] == diffTable[i][j-1])) { in generateResult()
201 if (diffTable[i-1][j] > diffTable[i][j-1]) { in generateResult()
[all …]
/trunk/main/i18npool/source/textconversion/
H A Dgenconv_dict.cxx141 for (j = 0; j < 0x10; j++) { in make_hhc_char()
157 for (j = 0; j < 0x100; j++) { in make_hhc_char()
162 for (j = 0; j < 0x10; j++) { in make_hhc_char()
217 for (j = 0; j < 0x10; j++) { in make_stc_char()
233 for (j = 0; j < 0x100; j++) { in make_stc_char()
238 for (j = 0; j < 0x10; j++) { in make_stc_char()
254 for (j = 0; j < 0x10; j++) { in make_stc_char()
270 for (j = 0; j < 0x100; j++) { in make_stc_char()
275 for (j = 0; j < 0x10; j++) { in make_stc_char()
291 for (j = 0; j < 0x10; j++) { in make_stc_char()
[all …]
/trunk/main/solenv/inc/
H A D_tg_zip.mk66 zip1alllangiso:=$(foreach,i,$(completelangiso) $(foreach,j,$(zip1langdirs) $(eq,$i,$j $i $(NULL))))
68 zip1alllangiso*:=$(foreach,i,$(alllangiso) $(foreach,j,$(zip1langdirs) $(eq,$i,$j $i $(NULL))))
195 zip2alllangiso:=$(foreach,i,$(completelangiso) $(foreach,j,$(zip2langdirs) $(eq,$i,$j $i $(NULL))))
197 zip2alllangiso*:=$(foreach,i,$(alllangiso) $(foreach,j,$(zip2langdirs) $(eq,$i,$j $i $(NULL))))
326 zip3alllangiso*:=$(foreach,i,$(alllangiso) $(foreach,j,$(zip3langdirs) $(eq,$i,$j $i $(NULL))))
455 zip4alllangiso*:=$(foreach,i,$(alllangiso) $(foreach,j,$(zip4langdirs) $(eq,$i,$j $i $(NULL))))
584 zip5alllangiso*:=$(foreach,i,$(alllangiso) $(foreach,j,$(zip5langdirs) $(eq,$i,$j $i $(NULL))))
713 zip6alllangiso*:=$(foreach,i,$(alllangiso) $(foreach,j,$(zip6langdirs) $(eq,$i,$j $i $(NULL))))
842 zip7alllangiso*:=$(foreach,i,$(alllangiso) $(foreach,j,$(zip7langdirs) $(eq,$i,$j $i $(NULL))))
971 zip8alllangiso*:=$(foreach,i,$(alllangiso) $(foreach,j,$(zip8langdirs) $(eq,$i,$j $i $(NULL))))
[all …]
H A D_tg_rslb.mk37 -lip={$j} ) \
53 -lip={$j} ) \
100 -lip={$j} ) \
116 -lip={$j} ) \
163 -lip={$j} ) \
179 -lip={$j} ) \
226 -lip={$j} ) \
242 -lip={$j} ) \
289 -lip={$j} ) \
305 -lip={$j} ) \
[all …]
/trunk/main/i18npool/source/localedata/
H A DLocaleNode.cxx193 for( sal_Int32 j=0; j<q->getLength(); j++ ) in print_node() local
963 for(j = 0; j < nbOfCollations; j++) { in generateCode()
979 for( j=0; j<nbOfCollationOptions; j++ ) in generateCode()
1162 for (j = 0; j < i; j++) { in generateCode()
1179 for (j = 0; j < nbOfDays[i]; j++) { in generateCode()
1194 for (j = 0; j < i; j++) { in generateCode()
1226 for (j = 0; j < i; j++) { in generateCode()
1243 for (j = 0; j < nbOfEras[i]; j++) { in generateCode()
1259 for (j = 0; j < nbOfDays[i]; j++) in generateCode()
1325 for(j = 0; j < nbOfDays[i]; j++) { in generateCode()
[all …]
H A Dlocaledata.cxx517 sal_Int16 i, j; in getAllCalendars() local
530 for(j = 0; j < allCalendars[0][i]; j++) { in getAllCalendars()
541 for(j = 0; j < allCalendars[1][i]; j++) { in getAllCalendars()
552 for(j = 0; j < allCalendars[2][i]; j++) { in getAllCalendars()
640 sal_Int32 j = 0, last = k; in replace() local
647 if (oldStr[j] == 0) { in replace()
649 k = last; j = 0; in replace()
1108 for( int j=0; j<nAttributes; j++ ) { // prefix, numberingtype, ... in getContinuousNumberingLevels() local
1113 if( 0 != j && 2 != j ) in getContinuousNumberingLevels()
1236 int j; in getOutlineNumberingLevels() local
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/i18n/
H A D_XLocaleData.java167 for (int j=0;j<calendar.length;j++) { in _getAllCalendars()
193 for (int j=0;j<currency.length;j++) { in _getAllCurrencies()
219 for (int j=0;j<format.length;j++) { in _getAllFormats()
244 for (int j=0;j<impl.length;j++) { in _getCollatorImplementations()
270 for (int j=0;j<str.length;j++) { in _getSearchOptions()
271 if ((str[j].equals(""))) { in _getSearchOptions()
296 for (int j=0;j<str.length;j++) { in _getCollationOptions()
297 if ((str[j].equals(""))) { in _getCollationOptions()
322 for (int j=0;j<str.length;j++) { in _getTransliterations()
370 for (int j=0;j<str.length;j++) { in _getReservedWord()
[all …]
/trunk/main/sc/source/core/data/
H A Ddocpool.cxx409 for ( i=0, j=nMap1Start; i < nMap1New; i++, j++ ) in InitVersionMaps()
422 for ( i=0, j=nMap2Start; i < nMap2New; i++, j++ ) in InitVersionMaps()
435 for ( i=0, j=nMap3Start; i < nMap3New; i++, j++ ) in InitVersionMaps()
448 for ( i=0, j=nMap4Start; i < nMap4New; i++, j++ ) in InitVersionMaps()
461 for ( i=0, j=nMap5Start; i < nMap5New; i++, j++ ) in InitVersionMaps()
474 for ( i=0, j=nMap6Start; i < nMap6New; i++, j++ ) in InitVersionMaps()
487 for ( i=0, j=nMap7Start; i < nMap7New; i++, j++ ) in InitVersionMaps()
500 for ( i=0, j=nMap8Start; i < nMap8New; i++, j++ ) in InitVersionMaps()
513 for ( i=0, j=nMap9Start; i < nMap9New; i++, j++ ) in InitVersionMaps()
528 for ( i=0, j=nMap10Start; i < nMap10New; i++, j++ ) in InitVersionMaps()
[all …]
/trunk/main/ucb/workben/cachemap/
H A Dcachemaptest.cxx73 {for (int j = 0; j < 50; ++j) in test() local
77 {for (int j = 0; j < 50; ++j) in test() local
86 {for (int j = 0; j < 50; ++j) in test() local
90 {for (int j = 0; j < 50; ++j) in test() local
99 {for (int j = 0; j < 50; ++j) in test() local
103 {for (int j = 0; j < 50; ++j) in test() local
112 {for (int j = 0; j < 50; ++j) in test() local
116 {for (int j = 0; j < 50; ++j) in test() local
125 {for (int j = 0; j < 50; ++j) in test() local
129 {for (int j = 0; j < 50; ++j) in test() local
/trunk/main/configmgr/source/
H A Dwritemodfile.cxx130 sal_Int32 j = i; in writeAttributeValue() local
131 for (; j < value.getLength(); ++j) { in writeAttributeValue()
133 value[j] == 0x0009 || value[j] == 0x000A || value[j] == 0x000D || in writeAttributeValue()
134 (value[j] >= 0x0020 && value[j] != 0xFFFE && value[j] != 0xFFFF)); in writeAttributeValue()
139 i = j + 1; in writeAttributeValue()
144 i = j + 1; in writeAttributeValue()
149 i = j + 1; in writeAttributeValue()
154 i = j + 1; in writeAttributeValue()
199 sal_Int32 j = i; in writeValueContent() local
200 for (; j < value.getLength(); ++j) { in writeValueContent()
[all …]
/trunk/main/svl/source/numbers/
H A Dzformat.cxx401 for ( sal_uInt16 j=0; j<nAnzStrings; j++ ) in HasNewCurrency() local
417 for ( sal_uInt16 j=0; j<nAnzStrings; j++ ) in GetNewCurrencySymbol() local
438 for ( j=0; j<nAnzStrings; j++ ) in SaveNewCurrencyMap()
450 for ( j=0; j<nAnzStrings; j++ ) in SaveNewCurrencyMap()
468 for ( sal_uInt16 j=0; j<nCnt; j++ ) in LoadNewCurrencyMap() local
1698 for ( sal_uInt16 j=0; j<4; j++ ) in Save() local
1717 for ( sal_uInt16 j=0; j<4; j++ ) in HasNewCurrency() local
1727 for ( sal_uInt16 j=0; j<4; j++ ) in HasTextFormatCode() local
1738 for ( sal_uInt16 j=0; j<4; j++ ) in GetNewCurrencySymbol() local
4064 for ( sal_uInt16 j=0; j<nAnz; j++ ) in GetDateOrder() local
[all …]
/trunk/main/desktop/source/migration/
H A Dmigration.cxx327 for (sal_Int32 j=0; j<nToolbars; ++j) in doMigration() local
440 for (sal_Int32 j=0; j<seqVersions.getLength(); j++) in readAvailableMigrations() local
475 for (sal_Int32 j=0; j<tmpSeq.getLength(); j++) in readMigrationSteps() local
485 for (sal_Int32 j=0; j<tmpSeq.getLength(); j++) in readMigrationSteps() local
492 for (sal_Int32 j=0; j<tmpSeq.getLength(); j++) in readMigrationSteps() local
499 for (sal_Int32 j=0; j<tmpSeq.getLength(); j++) in readMigrationSteps() local
506 for (sal_Int32 j=0; j<tmpSeq.getLength(); j++) in readMigrationSteps() local
513 for (sal_Int32 j=0; j<tmpSeq.getLength(); j++) in readMigrationSteps() local
1025 for (sal_Int32 j=0; j<lToolbars.getLength(); ++j) in dectectUIChangesForAllModules() local
1196 for (sal_Int32 j=0; j<aPropSeq.getLength(); ++j) in mergeOldToNewVersion() local
[all …]
/trunk/main/sw/source/core/fields/
H A Dauthfld.cxx136 for(sal_uInt16 j = 0; j < m_pDataArr->Count(); j++) in RemoveField() local
168 for(sal_uInt16 j = 0; j < m_pDataArr->Count() && pEntry; j++) in AddField() local
193 for( sal_uInt16 j = 0; j < m_pDataArr->Count(); j++ ) in AddField() local
213 for(sal_uInt16 j = 0; j < m_pDataArr->Count(); j++) in GetEntryByHandle() local
230 for(sal_uInt16 j = 0; j < m_pDataArr->Count(); j++) in GetAllEntryIdentifiers() local
242 for( sal_uInt16 j = 0; j < m_pDataArr->Count(); ++j ) in GetEntryByIdentifier() local
257 for( sal_uInt16 j = 0; j < m_pDataArr->Count(); ++j ) in ChangeEntryContent() local
367 short j; in GetSequencePos() local
369 for( j = 0; j < aSortArr.Count(); ++j) in GetSequencePos()
375 aSortArr.Insert(pNew, j ); in GetSequencePos()
[all …]
/trunk/main/basegfx/source/workbench/
H A Dgauss.hxx59 for(j=i+1; j<rows; ++j) in eliminate()
61 max = j; in eliminate()
76 for(j=i+1; j<rows; ++j) in eliminate()
78 matrix[ j*cols + k ] -= matrix[ i*cols + k ] * in eliminate()
79 matrix[ j*cols + i ] / matrix[ i*cols + i ]; in eliminate()
114 int j,k; /* *must* be signed, when looping like: j>=0 ! */ in substitute() local
117 for(j=rows-1; j>=0; --j) in substitute()
120 for(k=j+1; k<cols-1; ++k) in substitute()
121 temp += matrix[ j*cols + k ] * result[k]; in substitute()
123 if( matrix[ j*cols + j ] == 0.0 ) in substitute()
[all …]
/trunk/main/i18npool/source/transliteration/
H A DtransliterationImpl.cxx231 for (sal_Int16 j = 0; TMlist[j].tmn; j++) { in loadModuleNew() local
311 for (sal_Int32 j = 0; j < nCount; j++) in transliterate() local
321 for (sal_Int32 j = 0; j < nCount; j++) in transliterate() local
322 pArr[j] = startPos + j; in transliterate()
335 for (sal_Int32 j = 0; j < nCount; j++) in transliterate() local
336 off[to][j] = off[from][off[to][j]]; in transliterate()
366 for (sal_Int32 j = 0; j < nCount; j++) in folding() local
376 for (sal_Int32 j = 0; j < nCount; j++) in folding() local
377 pArr[j] = startPos + j; in folding()
389 for (sal_Int32 j = 0; j < nCount; j++) in folding() local
[all …]
/trunk/main/stoc/source/uriproc/
H A DExternalUriReferenceTranslator.cxx131 sal_Int32 j = i; in translateToInternal() local
136 ++j; in translateToInternal()
138 if (j != i) { in translateToInternal()
154 buf.append(externalUriReference[j]); in translateToInternal()
155 path = externalUriReference[j] == '/'; in translateToInternal()
156 i = j + 1; in translateToInternal()
175 sal_Int32 j = i; in translateToExternal() local
180 ++j; in translateToExternal()
182 if (j != i) { in translateToExternal()
201 buf.append(internalUriReference[j]); in translateToExternal()
[all …]
/trunk/main/tools/source/generic/
H A Dbigint.cxx317 int i, j; in MultLong() local
327 for (j = 0; j < rB.nLen; j++) in MultLong()
336 rErg.nNum[i + j] = (sal_uInt16)k; in MultLong()
344 int i, j; in DivLong() local
362 for (j = aTmpA.nLen - 1; j >= nLenB; j--) in DivLong()
364 nTmp = ( (long)aTmpA.nNum[j] << 16 ) + aTmpA.nNum[j - 1]; in DivLong()
389 rErg.nNum[j - nLenB] = nQ; in DivLong()
415 short i, j; in ModLong() local
433 for (j = aTmpA.nLen - 1; j >= nLenB; j--) in ModLong()
435 nTmp = ( (long)aTmpA.nNum[j] << 16 ) + aTmpA.nNum[j - 1]; in ModLong()
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/
H A DStyleCatalog.java122 for (int j = 0; j < families.length; j++) { in add()
123 if (families[j].equals(familyName)) { in add()
124 Class styleClass = classes[j]; in add()
125 callConstructor(classes[j], child); in add()
224 for (int j = 0; j < nStyles; j++) { in getMatching()
232 for (int j = 0; j < nStyles; j++) { in getMatching()
275 for (int j = 0; j < len; j++) { in writeNode()
276 Style s = (Style)styles.get(j); in writeNode()
352 for (int j = 0; j < families.length; j++) { in getClass()
353 if (families[j].equals(familyName)) in getClass()
[all …]
/trunk/main/soltools/cpp/
H A D_lex.c269 int i, j, nstate; in expandlex() local
282 for (j = 0; j < 256; j++) in expandlex()
286 for (j = 0; j < 256; j++) in expandlex()
288 if( isalpha( j ) || (j == '_') ) in expandlex()
290 if (('a' <= j && j <= 'z') || ('A' <= j && j <= 'Z') in expandlex()
291 || j == '_') in expandlex()
296 for (j = '0'; j <= '9'; j++) in expandlex()
311 for (j = 0; j < 0xFF; j++) in expandlex()
312 if (j == '?' || j == '\\' || j == '\n' || j == '\r') in expandlex()
314 if (bigfsm[j][i] > 0) in expandlex()
[all …]

Completed in 219 milliseconds

12345678910>>...42