Searched refs:curIndex (Results 1 – 5 of 5) sorted by relevance
| /AOO41X/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/ |
| H A D | WSDecoder.java | 145 int curIndex = 18; in parseDocument() local 147 while (curIndex < rawData.length) { in parseDocument() 148 if (WsePara.isValid(rawData, curIndex)) { in parseDocument() 149 v.add(new WsePara(rawData, curIndex)); in parseDocument() 150 curIndex = WsePara.computeNewIndex(rawData, curIndex); in parseDocument() 151 } else if (WseTextRun.isValid(rawData, curIndex)) { in parseDocument() 152 v.add(new WseTextRun(rawData, curIndex, fontTable, colorTable)); in parseDocument() 153 curIndex = WseTextRun.computeNewIndex(rawData, curIndex); in parseDocument() 154 } else if (WseFontTable.isValid(rawData, curIndex)) { in parseDocument() 155 fontTable = new WseFontTable(rawData, curIndex); in parseDocument() [all …]
|
| /AOO41X/main/migrationanalysis/src/wizard/ |
| H A D | Analyse.bas | 425 Dim curIndex As Long variable 431 curIndex = lastIndex 435 While Not entryFound And curIndex <= lastEntry 436 curEntry = myDocList.item(curIndex) 438 lastIndex = curIndex 441 curIndex = curIndex + 1 448 curIndex = 1 449 While Not entryFound And curIndex <= lastIndex 450 curEntry = myDocList.item(curIndex) 452 lastIndex = curIndex [all …]
|
| H A D | ScanFolders.frm | 125 curIndex As Long) 130 ScanProgress.value = curIndex 141 Label6.Caption = "(" & str$(curIndex) & "/" & str$(ScanProgress.Max) & ")"
|
| /AOO41X/main/migrationanalysis/src/driver_docs/sources/ |
| H A D | AnalysisDriver.bas | 3535 Dim curIndex As Long variable 3545 curIndex = lastIndex 3547 curIndex = 1 3550 While Not entryFound And curIndex <= lastEntry 3551 curEntry = myDocList.item(curIndex) 3555 curIndex = curIndex + 1 3560 curIndex = 1 3561 While Not entryFound And curIndex < lastIndex 3562 curEntry = myDocList.item(curIndex) 3566 curIndex = curIndex + 1 [all …]
|
| /AOO41X/main/javaunohelper/com/sun/star/lib/uno/helper/ |
| H A D | InterfaceContainer.java | 264 int curIndex= 0; in addAll() local 269 arColl[curIndex++]= o; in addAll() 271 int numNew = curIndex; in addAll()
|