Home
last modified time | relevance | path

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

12345678910>>...41

/AOO41X/main/sc/source/core/tool/
H A Dscmatrix.cxx521 for (SCSIZE j = 0; j < nRowCount; j++) in MatCopy() local
523 if (IsNonValueType( (nType = mnValType[nStart+j]))) in MatCopy()
524 mRes.PutStringEntry( pMat[nStart+j].pS, nType, nStart+j ); in MatCopy()
527 mRes.pMat[nStart+j].fVal = pMat[nStart+j].fVal; in MatCopy()
528 mRes.mnValType[nStart+j] = nType; in MatCopy()
552 for (SCSIZE j = 0; j < nRowCount; j++) in MatCopy() local
554 if (IsNonValueType( (nType = mnValType[nStart+j]))) in MatCopy()
555 mRes.PutStringEntry( pMat[nStart+j].pS, nType, nResStart+j ); in MatCopy()
558 mRes.pMat[nResStart+j].fVal = pMat[nStart+j].fVal; in MatCopy()
559 mRes.mnValType[nResStart+j] = nType; in MatCopy()
[all …]
H A Drangelst.cxx275 for ( sal_uLong j = 0; j < nListCount; j++ ) in Find() local
277 ScRange* pR = GetObject( j ); in Find()
290 for ( sal_uLong j = 0; j < nListCount; j++ ) in ScRangeList() local
291 Append( *rList.GetObject( j ) ); in ScRangeList()
300 for ( sal_uLong j = 0; j < nListCount; j++ ) in operator =() local
301 Append( *rList.GetObject( j ) ); in operator =()
310 for ( sal_uLong j = 0; j < nListCount; j++ ) in Intersects() local
311 if ( GetObject(j)->Intersects( rRange ) ) in Intersects()
321 for ( sal_uLong j = 0; j < nListCount; j++ ) in In() local
322 if ( GetObject(j)->In( rRange ) ) in In()
[all …]
H A Dparclass.cxx240 for ( size_t j=0; j < CommonData::nMaxParams; ++j ) in Init() local
242 if ( pRun->aData.nParam[j] ) in Init()
243 pRun->nMinParams = sal::static_int_cast<sal_uInt8>( j+1 ); in Init()
244 else if (j >= pRun->aData.nRepeatLast) in Init()
245 pRun->aData.nParam[j] = pRun->aData.nParam[j - pRun->aData.nRepeatLast]; in Init()
248 … DBG_ERROR2( "bad classification: eOp %d, repeated param %d negative offset", pRaw->eOp, j); in Init()
249 pRun->aData.nParam[j] = Unknown; in Init()
255 for ( size_t j=0; j < CommonData::nMaxParams; ++j ) in Init() local
257 if ( !pRun->aData.nParam[j] ) in Init()
259 if ( j == 0 || pRun->aData.nParam[j-1] != Bounds ) in Init()
[all …]
/AOO41X/main/i18npool/source/localedata/data/
H A Dcurrency-check.awk72 for ( j=2; j<=NF; ++j )
74 if ( $j ~ /^replaceTo="/ )
77 if ( $j ~ />$/ )
79 if ( $j ~ /\/>$/ )
81 sReplaceTo = substr( $j, 12, length($j)-l )
117 if ( $j ~ /^ref="/ )
120 if ( $j ~ />$/ )
122 if ( $j ~ /\/>$/ )
124 locale = substr( $j, 6, length($j)-l )
208 for ( j=0; j<nFormats; ++j )
[all …]
/AOO41X/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/diff/
H A DCharArrayLCSAlgorithm.java97 for (int j = 0; j < diffTable[i].length; j++) { in printDiffTable()
98 System.out.print(" " + diffTable[i][j] + " "); in printDiffTable()
131 for (int j = 1; j < modSeqlen; j++) { in createDiffTable()
133 if (orgSeq[i-1] == modSeq[j-1]) { 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()
168 int i, int j, Vector diffVector) { in generateResult() argument
171 if (i == 0 || j == 0) { in generateResult()
[all …]
H A DIteratorLCSAlgorithm.java89 for (int j = 0; j < diffTable[i].length; j++) { in printDiffTable()
90 tmpString = tmpString + " " + diffTable[i][j] + " "; in printDiffTable()
122 int i, j; in createDiffTable() local
130 for (modSeqObject = modSeq.start(), j = 1; in createDiffTable()
132 modSeqObject = modSeq.next(), j++) { in createDiffTable()
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()
169 int i, int j, Vector diffVector) { in generateResult() argument
[all …]
/AOO41X/main/i18npool/source/textconversion/
H A Dgenconv_dict.cxx94 sal_Int32 count, address, i, j, k; in make_hhc_char() local
141 for (j = 0; j < 0x10; j++) { in make_hhc_char()
143 if (Hanja2HangulData[((i*0x10)+j)*0x100+k] != 0) in make_hhc_char()
157 for (j = 0; j < 0x100; j++) { in make_hhc_char()
158 if (Hanja2HangulData[i*0x100+j] != 0) in make_hhc_char()
161 if (j < 0x100) { in make_hhc_char()
162 for (j = 0; j < 0x10; j++) { in make_hhc_char()
165 sal_Unicode c = Hanja2HangulData[((i*0x10+j)*0x10)+k]; in make_hhc_char()
184 sal_Int32 address, i, j, k; in make_stc_char() local
217 for (j = 0; j < 0x10; j++) { in make_stc_char()
[all …]
/AOO41X/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))))
89 …/ $(@:s/.dpzz/$(ZIP1EXT)/))) $(foreach,j,$(ZIP1LIST) $(EQ)"{$(subst,LANGDIR,{$(subst,$(ZIP1TARGET)…
91 …/ $(@:s/.dpzz/$(ZIP1EXT)/))) $(foreach,j,$(ZIP1LIST) $(EQ)"{$(subst,LANGDIR,{$(subst,$(ZIP1TARGET)…
96 …/$(ZIP1EXT)/)) $(foreach,j,$(ZIP1LIST) $(EQ)"{$(subst,LANGDIR,{$(subst,$(BIN)/$(ZIP1TARGET)_, $(su…
98 …/$(ZIP1EXT)/)) $(foreach,j,$(ZIP1LIST) $(EQ)"{$(subst,LANGDIR,{$(subst,$(BIN)/$(ZIP1TARGET)_, $(su…
122 …$(COMMON_OUTDIR),$(OUTPATH) $@) $(foreach,j,$(ZIP1LIST) $(subst,LANGDIR,{$(subst,$(ZIP1HELPVAR)_, …
142 …P_VERBOSITY) $(ZIP1FLAGS) $@ $(foreach,j,$(ZIP1LIST) $(subst,LANGDIR,{$(subst,$(BIN)/$(ZIP1TARGET)…
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))))
[all …]
H A D_tg_rslb.mk36 $(foreach,j,$(subst,$(PRJ),$(SOLARSRC)/$(RSCDEFIMG)/$(PRJNAME) $(RESLIB1IMAGES)) -lip={$j}/$i \
37 -lip={$j} ) \
52 $(foreach,j,$(subst,$(PRJ),$(SOLARSRC)/$(RSCDEFIMG)/$(PRJNAME) $(RESLIB1IMAGES)) -lip={$j}/$i \
53 -lip={$j} ) \
99 $(foreach,j,$(subst,$(PRJ),$(SOLARSRC)/$(RSCDEFIMG)/$(PRJNAME) $(RESLIB2IMAGES)) -lip={$j}/$i \
100 -lip={$j} ) \
115 $(foreach,j,$(subst,$(PRJ),$(SOLARSRC)/$(RSCDEFIMG)/$(PRJNAME) $(RESLIB2IMAGES)) -lip={$j}/$i \
116 -lip={$j} ) \
162 $(foreach,j,$(subst,$(PRJ),$(SOLARSRC)/$(RSCDEFIMG)/$(PRJNAME) $(RESLIB3IMAGES)) -lip={$j}/$i \
163 -lip={$j} ) \
[all …]
/AOO41X/main/i18npool/source/localedata/
H A DLocaleNode.cxx193 for( sal_Int32 j=0; j<q->getLength(); j++ ) in print_node() local
197 print_OUString( q->getTypeByIndex(j) ); in print_node()
202 print_OUString( q->getValueByIndex(j) ); in print_node()
927 sal_Int16 j; in generateCode() local
929 for ( j = 0; j < getNumberOfChildren(); j++ ) { in generateCode()
930 LocaleNode * currNode = getChildAt (j); in generateCode()
935 of.writeParameter("CollatorID", str, j); in generateCode()
937 of.writeParameter("CollatorRule", str, j); in generateCode()
939 of.writeDefaultParameter("Collator", str, j); in generateCode()
963 for(j = 0; j < nbOfCollations; j++) { in generateCode()
[all …]
H A Dlocaledata.cxx515 sal_Int16 i, j; in getAllCalendars() local
528 for(j = 0; j < allCalendars[0][i]; j++) { in getAllCalendars()
531 days[j] = day; in getAllCalendars()
539 for(j = 0; j < allCalendars[1][i]; j++) { in getAllCalendars()
542 months[j] = month; in getAllCalendars()
550 for(j = 0; j < allCalendars[2][i]; j++) { in getAllCalendars()
553 eras[j] = era; in getAllCalendars()
638 sal_Int32 j = 0, last = k; in replace() local
640 while (formatCode[i] > 0 && oldStr[j] > 0 && k < MAX_FORMATCODE_LENTH) { in replace()
642 if (formatCode[i++] != oldStr[j++]) in replace()
[all …]
/AOO41X/main/qadevOOo/tests/java/ifc/i18n/
H A D_XLocaleData.java167 for (int j=0;j<calendar.length;j++) { in _getAllCalendars()
168 if (! goodCalendar(calendar[j]) ) { in _getAllCalendars()
171 res &= goodCalendar(calendar[j]); in _getAllCalendars()
193 for (int j=0;j<currency.length;j++) { in _getAllCurrencies()
194 if (! goodCurrency(currency[j]) ) { in _getAllCurrencies()
197 res &= goodCurrency(currency[j]); in _getAllCurrencies()
219 for (int j=0;j<format.length;j++) { in _getAllFormats()
220 if (! goodFormat(format[j]) ) { in _getAllFormats()
223 res &= goodFormat(format[j]); in _getAllFormats()
244 for (int j=0;j<impl.length;j++) { in _getCollatorImplementations()
[all …]
/AOO41X/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
/AOO41X/main/sc/source/core/data/
H A Ddocpool.cxx408 sal_uInt16 i, j; in InitVersionMaps() local
409 for ( i=0, j=nMap1Start; i < nMap1New; i++, j++ ) in InitVersionMaps()
410 pVersionMap1[i] = j; in InitVersionMaps()
412 for ( i=nMap1New, j=nMap1Start+nMap1New+1; i < nMap1Count; i++, j++ ) in InitVersionMaps()
413 pVersionMap1[i] = j; in InitVersionMaps()
422 for ( i=0, j=nMap2Start; i < nMap2New; i++, j++ ) in InitVersionMaps()
423 pVersionMap2[i] = j; in InitVersionMaps()
425 for ( i=nMap2New, j=nMap2Start+nMap2New+2; i < nMap2Count; i++, j++ ) in InitVersionMaps()
426 pVersionMap2[i] = j; in InitVersionMaps()
435 for ( i=0, j=nMap3Start; i < nMap3New; i++, j++ ) in InitVersionMaps()
[all …]
/AOO41X/main/soldep/source/
H A Dsoldep.cxx464 for ( sal_uIntPtr j = nPrjDepsCount; j > 0; j-- ) in RemoveConnector() local
466 pString = pPrjDeps->GetObject( j - 1 ); in RemoveConnector()
761 sal_uIntPtr i, j; in InitPrj() local
802 for ( j=0; j<nDirCount; j++ ) in InitPrj()
804 CommandData *pData = mpPrj->GetObject(j); in InitPrj()
824 for ( j=0; j<nDirCount; j++ ) in InitPrj()
826 CommandData *pData = mpPrj->GetObject(j); in InitPrj()
1121 for ( sal_uIntPtr j = nDepsCount; j > 0; j-- ) in RemoveConnectorPrjView() local
1123 pString = pDeps->GetObject( j - 1 ); in RemoveConnectorPrjView()
1176 sal_uInt16 i, j; in CalcDistSum() local
[all …]
/AOO41X/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()
135 switch(value[j]) { in writeAttributeValue()
137 writeData(handle, convertToUtf8(value, i, j - i)); in writeAttributeValue()
139 i = j + 1; in writeAttributeValue()
142 writeData(handle, convertToUtf8(value, i, j - i)); in writeAttributeValue()
144 i = j + 1; in writeAttributeValue()
147 writeData(handle, convertToUtf8(value, i, j - i)); in writeAttributeValue()
[all …]
/AOO41X/main/basegfx/source/workbench/
H A Dgauss.hxx52 int max, i, j, k; /* *must* be signed, when looping like: j>=0 ! */ in eliminate() local
59 for(j=i+1; j<rows; ++j) in eliminate()
60 if( fabs(matrix[ j*cols + i ]) > fabs(matrix[ max*cols + i ]) ) 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()
[all …]
/AOO41X/main/svl/source/numbers/
H A Dzformat.cxx401 for ( sal_uInt16 j=0; j<nAnzStrings; j++ ) in HasNewCurrency() local
403 if ( aI.nTypeArray[j] == NF_SYMBOLTYPE_CURRENCY ) in HasNewCurrency()
417 for ( sal_uInt16 j=0; j<nAnzStrings; j++ ) in GetNewCurrencySymbol() local
419 if ( aI.nTypeArray[j] == NF_SYMBOLTYPE_CURRENCY ) in GetNewCurrencySymbol()
421 rSymbol = aI.sStrArray[j]; in GetNewCurrencySymbol()
422 if ( j < nAnzStrings-1 && aI.nTypeArray[j+1] == NF_SYMBOLTYPE_CURREXT ) in GetNewCurrencySymbol()
423 rExtension = aI.sStrArray[j+1]; in GetNewCurrencySymbol()
436 sal_uInt16 j; in SaveNewCurrencyMap() local
438 for ( j=0; j<nAnzStrings; j++ ) in SaveNewCurrencyMap()
440 switch ( aI.nTypeArray[j] ) in SaveNewCurrencyMap()
[all …]
/AOO41X/main/sw/source/core/fields/
H A Dauthfld.cxx136 for(sal_uInt16 j = 0; j < m_pDataArr->Count(); j++) in RemoveField() local
138 SwAuthEntry* pTemp = m_pDataArr->GetObject(j); in RemoveField()
148 m_pDataArr->DeleteAndDestroy(j, 1); in RemoveField()
168 for(sal_uInt16 j = 0; j < m_pDataArr->Count() && pEntry; j++) in AddField() local
170 SwAuthEntry* pTemp = m_pDataArr->GetObject(j); in AddField()
193 for( sal_uInt16 j = 0; j < m_pDataArr->Count(); j++ ) in AddField() local
195 SwAuthEntry* pTemp = m_pDataArr->GetObject(j); in AddField()
213 for(sal_uInt16 j = 0; j < m_pDataArr->Count(); j++) in GetEntryByHandle() local
215 const SwAuthEntry* pTemp = m_pDataArr->GetObject(j); in GetEntryByHandle()
230 for(sal_uInt16 j = 0; j < m_pDataArr->Count(); j++) in GetAllEntryIdentifiers() local
[all …]
/AOO41X/main/desktop/source/migration/
H A Dmigration.cxx327 for (sal_Int32 j=0; j<nToolbars; ++j) in doMigration() local
329 ::rtl::OUString sToolbarName = vModulesInfo[i].m_vToolbars[j]; in doMigration()
440 for (sal_Int32 j=0; j<seqVersions.getLength(); j++) in readAvailableMigrations() local
441 aSupportedMigration.supported_versions.push_back(seqVersions[j].trim()); in readAvailableMigrations()
475 for (sal_Int32 j=0; j<tmpSeq.getLength(); j++) in readMigrationSteps() local
477 aSeqEntry = tmpSeq[j]; in readMigrationSteps()
485 for (sal_Int32 j=0; j<tmpSeq.getLength(); j++) in readMigrationSteps() local
486 tmpStep.excludeFiles.push_back(tmpSeq[j]); in readMigrationSteps()
492 for (sal_Int32 j=0; j<tmpSeq.getLength(); j++) in readMigrationSteps() local
493 tmpStep.includeConfig.push_back(tmpSeq[j]); in readMigrationSteps()
[all …]
/AOO41X/main/i18npool/source/transliteration/
H A DtransliterationImpl.cxx231 for (sal_Int16 j = 0; TMlist[j].tmn; j++) { in loadModuleNew() local
232 if (TMlist[j].tmn == modType[i]) { in loadModuleNew()
239 …if (loadModuleByName(OUString::createFromAscii(TMlist[j].implName), bodyCascade[numCascade], rLoca… in loadModuleNew()
311 for (sal_Int32 j = 0; j < nCount; j++) in transliterate() local
312 pArr[j] += startPos; in transliterate()
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
[all …]
/AOO41X/main/stoc/source/uriproc/
H A DExternalUriReferenceTranslator.cxx131 sal_Int32 j = i; in translateToInternal() local
132 while (j != externalUriReference.getLength() in translateToInternal()
133 && externalUriReference[j] != '#' in translateToInternal()
134 && (!path || externalUriReference[j] != '/')) in translateToInternal()
136 ++j; in translateToInternal()
138 if (j != i) { in translateToInternal()
142 externalUriReference.copy(i, j - i), in translateToInternal()
151 if (j == externalUriReference.getLength()) { in translateToInternal()
154 buf.append(externalUriReference[j]); in translateToInternal()
155 path = externalUriReference[j] == '/'; in translateToInternal()
[all …]
/AOO41X/main/xmerge/source/xmerge/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()
225 Style p = ((Style)styles.elementAt(j)).getResolved(); in getMatching()
232 for (int j = 0; j < nStyles; j++) { in getMatching()
233 Style p = ((Style)styles.elementAt(j)).getResolved(); in getMatching()
275 for (int j = 0; j < len; j++) { in writeNode()
276 Style s = (Style)styles.get(j); in writeNode()
[all …]
/AOO41X/main/tools/source/generic/
H A Dbigint.cxx317 int i, j; in MultLong() local
327 for (j = 0; j < rB.nLen; j++) in MultLong()
331 nZ = (sal_uInt32)nNum[i] * (sal_uInt32)rB.nNum[j] + in MultLong()
332 (sal_uInt32)rErg.nNum[i + j] + k; in MultLong()
333 rErg.nNum[i + j] = (sal_uInt16)(nZ & 0xffffUL); 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()
365 if (aTmpA.nNum[j] == aTmpB.nNum[nLenB1]) in DivLong()
[all …]
/AOO41X/main/qadevOOo/runner/base/
H A Djava_fat_service.java137 for (int j=0;j<entry.SubEntryCount;j++) { in executeTest()
138 if (!entry.SubEntries[j].isToTest) { in executeTest()
139 Summarizer.summarizeDown(entry.SubEntries[j],"not part of the job"); in executeTest()
143 log.println("running: "+entry.SubEntries[j].entryName); in executeTest()
148 ifclog.initialize(entry.SubEntries[j],true); in executeTest()
149 entry.SubEntries[j].UserDefinedParams = param; in executeTest()
150 entry.SubEntries[j].Logger = ifclog; in executeTest()
160 entry.SubEntries[j].entryName); in executeTest()
161 res = ifc.run(entry.SubEntries[j],tEnv,param); in executeTest()
163 log.println("Couldn't load class "+entry.SubEntries[j].entryName); in executeTest()
[all …]

12345678910>>...41