Home
last modified time | relevance | path

Searched refs:startIndex (Results 1 – 20 of 20) sorted by relevance

/trunk/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/
H A DWseTextRun.java166 startIndex++; // Skip the leading "1" in WseTextRun()
170 startIndex += 2; in WseTextRun()
172 fontIndex = dataArray[startIndex++]; in WseTextRun()
176 fontSize = dataArray[startIndex++]; in WseTextRun()
178 colorIndex = dataArray[startIndex++]; in WseTextRun()
179 modifiers = dataArray[startIndex++]; in WseTextRun()
201 | (dataArray[startIndex+1] & 0xFF)); in computeNewIndex()
202 startIndex += 2; in computeNewIndex()
204 startIndex += 4; // skip attributes in computeNewIndex()
207 return startIndex; in computeNewIndex()
[all …]
H A DWsePara.java155 spaceBefore = dataArray[startIndex + 1]; in WsePara()
156 spaceAfter = dataArray[startIndex + 2]; in WsePara()
157 leftIndent = dataArray[startIndex + 3]; in WsePara()
158 firstIndent = dataArray[startIndex + 4]; in WsePara()
159 rightIndent = dataArray[startIndex + 5]; in WsePara()
160 misc = dataArray[startIndex + 6]; in WsePara()
161 style = dataArray[startIndex + 7]; in WsePara()
162 lineSpace = dataArray[startIndex + 8]; in WsePara()
163 outline = dataArray[startIndex + 9]; in WsePara()
180 return startIndex + 13; in computeNewIndex()
[all …]
H A DWseFontTable.java138 static int computeNewIndex(byte dataArray[], int startIndex) { in computeNewIndex() argument
139 startIndex++; // Skip the leading "3" in computeNewIndex()
140 int tableLen = ((dataArray[startIndex] << 8) | (dataArray[startIndex+1] & 0xFF)); in computeNewIndex()
142 return startIndex + tableLen + 2; in computeNewIndex()
156 static boolean isValid(byte dataArray[], int startIndex) { in isValid() argument
158 if (dataArray[startIndex] != 3) in isValid()
160 int len = ((dataArray[startIndex+1] << 8) in isValid()
161 | (dataArray[startIndex+2] & 0xFF)); in isValid()
164 if (dataArray[startIndex + len + 2] != 0) in isValid()
H A DWseColorTable.java102 static int computeNewIndex(byte dataArray[], int startIndex) { in computeNewIndex() argument
103 int tableLen = dataArray[startIndex + 1]; in computeNewIndex()
105 return startIndex + tableLen + 2; in computeNewIndex()
119 static boolean isValid(byte dataArray[], int startIndex) { in isValid() argument
121 if (dataArray[startIndex] != 64) in isValid()
123 int len = dataArray[startIndex + 1]; in isValid()
125 int temp = dataArray[startIndex + (int)len + 2]; // probe end of table in isValid()
H A DWseHeader.java81 static boolean isValid(byte dataArray[], int startIndex) { in isValid() argument
82 return ((dataArray[startIndex] == 2) in isValid()
83 && (dataArray[startIndex + 1] == 4)); in isValid()
97 static int computeNewIndex(byte dataArray[], int startIndex) { in computeNewIndex() argument
98 return startIndex + 18; in computeNewIndex()
H A DWse.java58 static boolean isValid(byte dataArray[], int startIndex) { in isValid() argument
74 static int computeNewIndex(byte dataArray[], int startIndex) { in computeNewIndex() argument
/trunk/main/xmerge/java/aportisdoc/src/main/java/org/openoffice/xmerge/converter/xml/sxw/aportisdoc/
H A DDocumentDeserializerImpl.java151 int startIndex = -1; in buildDocument() local
165 if (startIndex >= 0) { in buildDocument()
167 startIndex = -1; in buildDocument()
180 if (startIndex >= 0) { in buildDocument()
182 startIndex = -1; in buildDocument()
213 startIndex = -1; in buildDocument()
233 if (startIndex < 0) { in buildDocument()
235 startIndex = i; in buildDocument()
246 if (startIndex < 0) { in buildDocument()
248 startIndex = i; in buildDocument()
[all …]
/trunk/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/
H A DAccessibleEditableTextImpl.java47 public void cut(int startIndex, int endIndex) { in cut() argument
49 ((XAccessibleEditableText) unoObject).cutText(startIndex, endIndex); in cut()
56 public void delete(int startIndex, int endIndex) { in delete() argument
58 ((XAccessibleEditableText) unoObject).deleteText(startIndex, endIndex); in delete()
65 public String getTextRange(int startIndex, int endIndex) { in getTextRange() argument
67 return unoObject.getTextRange(startIndex, endIndex); in getTextRange()
84 public void paste(int startIndex) { in paste() argument
86 ((XAccessibleEditableText) unoObject).pasteText(startIndex); in paste()
93 public void replaceText(int startIndex, int endIndex, String s) { in replaceText() argument
102 public void selectText(int startIndex, int endIndex) { in selectText() argument
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/org/openoffice/
H A DRunnerService.java236 int startIndex = entry.indexOf("objdsc/") + 7; in getPropertyValues() local
242 module = entry.substring(startIndex, endIndex); in getPropertyValues()
249 startIndex = object.indexOf('.'); in getPropertyValues()
250 while (startIndex != endIndex) { in getPropertyValues()
251 object = object.substring(startIndex+1); in getPropertyValues()
252 startIndex = object.indexOf('.'); in getPropertyValues()
265 startIndex = 0; in getPropertyValues()
267 object = entry.substring(startIndex, endIndex); in getPropertyValues()
268 startIndex = object.lastIndexOf('.'); in getPropertyValues()
269 object = object.substring(startIndex+1); in getPropertyValues()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/
H A D_XCellRangesQuery.java173 int startIndex = 0; in _queryEmptyCells() local
178 startIndex = endIndex + 5; in _queryEmptyCells()
179 endIndex = expected.indexOf(" ... ", startIndex); in _queryEmptyCells()
181 checkString = expected.substring(startIndex); in _queryEmptyCells()
184 checkString = expected.substring(startIndex, endIndex); in _queryEmptyCells()
/trunk/main/winaccessibility/source/UAccCOM/
H A DAccText.cpp260 STDMETHODIMP CAccText::scrollSubstringToPoint(long startIndex, long endIndex,enum IA2CoordinateType… in scrollSubstringToPoint() argument
263 return CAccTextBase::scrollSubstringToPoint(startIndex, endIndex, coordinateType, x, y); in scrollSubstringToPoint()
266 STDMETHODIMP CAccText::scrollSubstringTo(long startIndex, long endIndex,enum IA2ScrollType scrollTy… in scrollSubstringTo() argument
269 return CAccTextBase::scrollSubstringTo(startIndex, endIndex,scrollType); in scrollSubstringTo()
H A DAccHypertext.cpp262 STDMETHODIMP CAccHypertext::scrollSubstringToPoint(long startIndex, long endIndex,enum IA2Coordinat… in scrollSubstringToPoint() argument
265 return CAccTextBase::scrollSubstringToPoint(startIndex, endIndex, coordinateType, x, y); in scrollSubstringToPoint()
267 STDMETHODIMP CAccHypertext::scrollSubstringTo(long startIndex, long endIndex,enum IA2ScrollType scr… in scrollSubstringTo() argument
270 return CAccTextBase::scrollSubstringTo(startIndex, endIndex,scrollType); in scrollSubstringTo()
H A DAccTextBase.h106 STDMETHOD(scrollSubstringTo)(long startIndex, long endIndex,enum IA2ScrollType scrollType);
107 …STDMETHOD(scrollSubstringToPoint)(long startIndex, long endIndex,enum IA2CoordinateType coordinate…
H A DAccText.h128 STDMETHOD(scrollSubstringTo)(long startIndex, long endIndex,enum IA2ScrollType scrollType);
129 …STDMETHOD(scrollSubstringToPoint)(long startIndex, long endIndex,enum IA2CoordinateType coordinate…
H A DAccHypertext.h132 STDMETHOD(scrollSubstringTo)(long startIndex, long endIndex,enum IA2ScrollType scrollType);
134 …STDMETHOD(scrollSubstringToPoint)(long startIndex, long endIndex,enum IA2CoordinateType coordinate…
/trunk/main/unotools/source/config/
H A Deventcfg.cxx247 sal_Int32 startIndex = lEventNames[i].indexOf('\''); in initBindingInfo() local
249 if( startIndex >=0 && endIndex > 0 ) in initBindingInfo()
251 startIndex++; in initBindingInfo()
252 OUString eventName = lEventNames[i].copy(startIndex,endIndex-startIndex); in initBindingInfo()
/trunk/main/migrationanalysis/src/driver_docs/sources/
H A DAnalysisDriver.bas390 Dim startIndex As Long variable
403 startIndex = 1
411 For index = startIndex To numFiles
3594 startIndex = 1
3598 startIndex = 1
3601 If (startIndex > 0) Then newResultsFile = False
3607 startIndex = 1
3610 ElseIf (nextCheck < startIndex) Then 'we are done?
3611 nextCheck = startIndex + C_MAX_CHECK
3614 startIndex = startIndex + 1
[all …]
/trunk/main/sw/source/ui/vba/
H A Dvbaglobals.cxx171 sal_Int32 startIndex = serviceNames.getLength(); in getAvailableServiceNames() local
174 serviceNames[ startIndex + index ] = names[ index ]; in getAvailableServiceNames()
/trunk/main/sc/source/ui/vba/
H A Dvbaglobals.cxx261 sal_Int32 startIndex = serviceNames.getLength(); in getAvailableServiceNames() local
264 serviceNames[ startIndex + index ] = names[ index ]; in getAvailableServiceNames()
/trunk/main/winaccessibility/source/UAccCOMIDL/
H A Dia2_api_all.idl2855 @param [in] startIndex
2869 [in] long startIndex,
2876 @param [in] startIndex
2895 [in] long startIndex,
3388 IAccessibleHyperlink::startIndex and IAccessibleHyperlink::endIndex are
3466 [propget] HRESULT startIndex

Completed in 103 milliseconds