/aoo4110/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() 93 public void replaceText(int startIndex, int endIndex, String s) { in replaceText() argument 95 ((XAccessibleEditableText) unoObject).replaceText(startIndex, endIndex, s); in replaceText() 102 public void selectText(int startIndex, int endIndex) { in selectText() argument 104 unoObject.setSelection(startIndex, endIndex); in selectText() [all …]
|
/aoo4110/main/qadevOOo/runner/org/openoffice/ |
H A D | RunnerService.java | 237 int endIndex = entry.lastIndexOf('/'); in getPropertyValues() local 242 module = entry.substring(startIndex, endIndex); in getPropertyValues() 246 endIndex = entry.indexOf(".csv"); in getPropertyValues() 247 object = entry.substring(0, endIndex); in getPropertyValues() 248 endIndex = object.lastIndexOf('.'); in getPropertyValues() 250 while (startIndex != endIndex) { in getPropertyValues() 253 endIndex = object.lastIndexOf('.'); in getPropertyValues() 266 endIndex = entry.indexOf(".csv"); in getPropertyValues() 267 object = entry.substring(startIndex, endIndex); in getPropertyValues()
|
/aoo4110/main/qadevOOo/tests/java/ifc/sheet/ |
H A D | _XCellRangesQuery.java | 174 int endIndex = -5; in _queryEmptyCells() local 177 while (endIndex != -1) { in _queryEmptyCells() 178 startIndex = endIndex + 5; in _queryEmptyCells() 179 endIndex = expected.indexOf(" ... ", startIndex); in _queryEmptyCells() 180 if (endIndex == -1) { in _queryEmptyCells() 184 checkString = expected.substring(startIndex, endIndex); in _queryEmptyCells()
|
/aoo4110/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…
|
/aoo4110/main/vcl/aqua/source/a11y/ |
H A D | aqua11ytextattributeswrapper.mm | 221 int endIndex = loc + len; 233 while ( currentIndex < endIndex ) { 235 … int endOfRange = endIndex > textSegment.SegmentEnd ? textSegment.SegmentEnd : endIndex;
|
/aoo4110/main/unotools/source/config/ |
H A D | eventcfg.cxx | 248 sal_Int32 endIndex = lEventNames[i].lastIndexOf('\''); in initBindingInfo() local 249 if( startIndex >=0 && endIndex > 0 ) in initBindingInfo() 252 OUString eventName = lEventNames[i].copy(startIndex,endIndex-startIndex); in initBindingInfo()
|
/aoo4110/main/xmerge/source/pocketword/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/ |
H A D | PocketWordDocument.java | 200 int endIndex = nlen - FILE_EXTENSION.length(); in trimDocumentName() local 201 name = name.substring(0,endIndex); in trimDocumentName()
|
/aoo4110/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/dom/ |
H A D | DOMDocument.java | 130 int endIndex = nlen - ext.length(); in trimDocumentName() local 131 name = name.substring(0,endIndex); in trimDocumentName()
|
/aoo4110/main/qadevOOo/runner/util/ |
H A D | UITools.java | 501 int endIndex = 0; in removeCharactersFromCurrencyString() local 516 endIndex = i+1; in removeCharactersFromCurrencyString() 520 String currencyVal = stringVal.substring(beginIndex, endIndex); in removeCharactersFromCurrencyString()
|
/aoo4110/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/ |
H A D | OfficeDocument.java | 151 int endIndex = nlen - ext.length(); in trimDocumentName() local 152 name = name.substring(0,endIndex); in trimDocumentName()
|
/aoo4110/main/cli_ure/source/uno_bridge/ |
H A D | cli_data.cxx | 581 int endIndex = unoName->Length - 1; in mapPolymorphicName() local 585 while (cur <= endIndex) in mapPolymorphicName()
|
/aoo4110/main/cli_ure/source/climaker/ |
H A D | climaker_emit.cxx | 243 int endIndex = unoName->Length - 1; in mapUnoPolymorphicName() local 247 while (cur <= endIndex) in mapUnoPolymorphicName()
|
/aoo4110/main/winaccessibility/source/UAccCOMIDL/ |
H A D | ia2_api_all.idl | 2857 @param [in] endIndex 2870 [in] long endIndex, 2878 @param [in] endIndex 2896 [in] long endIndex, 3388 IAccessibleHyperlink::startIndex and IAccessibleHyperlink::endIndex are 3478 [propget] HRESULT endIndex
|