/aoo41x/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/ |
H A D | WseTextRun.java | 166 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 D | WsePara.java | 155 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 D | WseFontTable.java | 138 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 D | WseColorTable.java | 102 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 D | WseHeader.java | 81 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 D | Wse.java | 58 static boolean isValid(byte dataArray[], int startIndex) { in isValid() argument 74 static int computeNewIndex(byte dataArray[], int startIndex) { in computeNewIndex() argument
|
/aoo41x/main/xmerge/source/aportisdoc/java/org/openoffice/xmerge/converter/xml/sxw/aportisdoc/ |
H A D | DocumentDeserializerImpl.java | 151 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 …]
|
/aoo41x/main/accessibility/bridge/org/openoffice/java/accessibility/ |
H A D | AccessibleEditableTextImpl.java | 47 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 …]
|
/aoo41x/main/qadevOOo/runner/org/openoffice/ |
H A D | RunnerService.java | 236 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()
|
/aoo41x/main/qadevOOo/tests/java/ifc/sheet/ |
H A D | _XCellRangesQuery.java | 173 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()
|
/aoo41x/main/winaccessibility/source/UAccCOM/ |
H A D | AccText.cpp | 260 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 D | AccHypertext.cpp | 262 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 D | AccTextBase.h | 106 STDMETHOD(scrollSubstringTo)(long startIndex, long endIndex,enum IA2ScrollType scrollType); 107 …STDMETHOD(scrollSubstringToPoint)(long startIndex, long endIndex,enum IA2CoordinateType coordinate…
|
H A D | AccText.h | 128 STDMETHOD(scrollSubstringTo)(long startIndex, long endIndex,enum IA2ScrollType scrollType); 129 …STDMETHOD(scrollSubstringToPoint)(long startIndex, long endIndex,enum IA2CoordinateType coordinate…
|
H A D | AccHypertext.h | 132 STDMETHOD(scrollSubstringTo)(long startIndex, long endIndex,enum IA2ScrollType scrollType); 134 …STDMETHOD(scrollSubstringToPoint)(long startIndex, long endIndex,enum IA2CoordinateType coordinate…
|
/aoo41x/main/unotools/source/config/ |
H A D | eventcfg.cxx | 247 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()
|
/aoo41x/main/migrationanalysis/src/driver_docs/sources/ |
H A D | AnalysisDriver.bas | 390 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 …]
|
/aoo41x/main/sw/source/ui/vba/ |
H A D | vbaglobals.cxx | 171 sal_Int32 startIndex = serviceNames.getLength(); in getAvailableServiceNames() local 174 serviceNames[ startIndex + index ] = names[ index ]; in getAvailableServiceNames()
|
/aoo41x/main/sc/source/ui/vba/ |
H A D | vbaglobals.cxx | 261 sal_Int32 startIndex = serviceNames.getLength(); in getAvailableServiceNames() local 264 serviceNames[ startIndex + index ] = names[ index ]; in getAvailableServiceNames()
|
/aoo41x/main/winaccessibility/source/UAccCOMIDL/ |
H A D | ia2_api_all.idl | 2855 @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
|