/trunk/main/offapi/com/sun/star/packages/zip/ |
H A D | ZipConstants.idl | 173 /** LOC header field "filename length" offset 198 /** CEN header field "version made by" offset 213 /** CEN header field "compression method" offset 218 /** CEN header field "modification time" offset 223 /** CEN header field "modification time" offset 233 /** CEN header field "compressed size" offset 238 /** CEN header field "uncompressed size" offset 243 /** CEN header field "length of filename" offset 258 /** CEN header field "disk number start" offset 273 /** CEN header field "offset of local header" offset [all …]
|
/trunk/main/unoxml/source/dom/ |
H A D | characterdata.cxx | 93 if (offset > tmp.getLength() || offset < 0 || count < 0) { in deleteData() 98 if ((offset+count) > tmp.getLength()) in deleteData() 99 count = tmp.getLength() - offset; in deleteData() 101 OUString tmp2 = tmp.copy(0, offset); in deleteData() 102 tmp2 += tmp.copy(offset+count, tmp.getLength() - (offset+count)); in deleteData() 164 if (offset > tmp.getLength() || offset < 0) { in insertData() 172 tmp2 += tmp.copy(offset, tmp.getLength() - offset); in insertData() 199 if (offset > tmp.getLength() || offset < 0 || count < 0){ in replaceData() 209 tmp2 += tmp.copy(offset+count, tmp.getLength() - (offset+count)); in replaceData() 254 if (offset > tmp.getLength() || offset < 0 || count < 0) { in subStringData() [all …]
|
/trunk/main/vcl/source/fontsubset/ |
H A D | ttcr.cxx | 98 t = (ptr+offset)[0] << 8 | (ptr+offset)[1]; in GetInt16() 100 t = (ptr+offset)[1] << 8 | (ptr+offset)[0]; in GetInt16() 112 t = (ptr+offset)[0] << 8 | (ptr+offset)[1]; in GetUInt16() 114 t = (ptr+offset)[1] << 8 | (ptr+offset)[0]; in GetUInt16() 126 t = (ptr+offset)[0] << 24 | (ptr+offset)[1] << 16 | in GetInt32() 127 (ptr+offset)[2] << 8 | (ptr+offset)[3]; in GetInt32() 129 t = (ptr+offset)[3] << 24 | (ptr+offset)[2] << 16 | in GetInt32() 130 (ptr+offset)[1] << 8 | (ptr+offset)[0]; in GetInt32() 143 t = (ptr+offset)[0] << 24 | (ptr+offset)[1] << 16 | in GetUInt32() 144 (ptr+offset)[2] << 8 | (ptr+offset)[3]; in GetUInt32() [all …]
|
/trunk/main/winaccessibility/source/UAccCOM/ |
H A D | AccTextBase.cpp | 115 if( offset < 0 || offset > GetXInterface()->getCharacterCount() ) in get_attributes() 201 if( offset < GetXInterface()->getCharacterCount() ) in get_attributes() 209 *startOffset = offset; in get_attributes() 210 *endOffset = offset; in get_attributes() 230 if (offset == NULL) in get_caretOffset() 235 *offset = 0; in get_caretOffset() 239 *offset = GetXInterface()->getCaretPosition(); in get_caretOffset() 294 if(offset < 0 || offset > GetXInterface()->getCharacterCount() ) in get_characterExtents() 406 if (offset == NULL) in get_offsetAtPoint() 415 *offset = GetXInterface()->getIndexAtPoint(point); in get_offsetAtPoint() [all …]
|
H A D | AccText.cpp | 53 return CAccTextBase::get_attributes(offset, startOffset, endOffset, textAttributes); in get_attributes() 61 STDMETHODIMP CAccText::get_caretOffset(long * offset) in get_caretOffset() argument 64 return CAccTextBase::get_caretOffset(offset); in get_caretOffset() 90 return CAccTextBase::get_characterExtents(offset, coordType, x, y, width, height); in get_characterExtents() 113 STDMETHODIMP CAccText::get_offsetAtPoint(long x, long y, IA2CoordinateType coordType, long * offset) in get_offsetAtPoint() argument 116 return CAccTextBase::get_offsetAtPoint(x, y, coordType, offset); in get_offsetAtPoint() 157 return CAccTextBase::get_textBeforeOffset(offset, boundaryType, in get_textBeforeOffset() 173 return CAccTextBase::get_textAfterOffset(offset, boundaryType, in get_textAfterOffset() 189 return CAccTextBase::get_textAtOffset(offset, boundaryType, in get_textAtOffset() 211 STDMETHODIMP CAccText::setCaretOffset(long offset) in setCaretOffset() argument [all …]
|
H A D | AccHypertext.cpp | 58 return CAccTextBase::get_attributes(offset, startOffset, endOffset, textAttributes); in get_attributes() 66 STDMETHODIMP CAccHypertext::get_caretOffset(long * offset) in get_caretOffset() argument 69 return CAccTextBase::get_caretOffset(offset); in get_caretOffset() 95 return CAccTextBase::get_characterExtents(offset, coordType, x, y, width, height); in get_characterExtents() 117 …HODIMP CAccHypertext::get_offsetAtPoint(long x, long y, IA2CoordinateType coordType, long * offset) in get_offsetAtPoint() argument 119 return CAccTextBase::get_offsetAtPoint(x, y, coordType, offset); in get_offsetAtPoint() 160 return CAccTextBase::get_textBeforeOffset(offset, boundaryType, in get_textBeforeOffset() 176 return CAccTextBase::get_textAfterOffset(offset, boundaryType, in get_textAfterOffset() 192 return CAccTextBase::get_textAtOffset(offset, boundaryType, in get_textAtOffset() 214 STDMETHODIMP CAccHypertext::setCaretOffset(long offset) in setCaretOffset() argument [all …]
|
/trunk/main/sal/inc/rtl/ |
H A D | ustrbuf.hxx | 521 OUStringBuffer & insert(sal_Int32 offset, const OUString & str) in insert() argument 523 return insert( offset, str.getStr(), str.getLength() ); in insert() 545 return insert( offset, str, rtl_ustr_getLength( str ) ); in insert() 590 OUStringBuffer & insert(sal_Int32 offset, sal_Bool b) in insert() argument 612 OUStringBuffer & insert(sal_Int32 offset, sal_Unicode c) in insert() argument 614 return insert( offset, &c, 1 ); in insert() 683 OUStringBuffer insert(sal_Int32 offset, float f) in insert() argument 686 return insert( offset, sz, rtl_ustr_valueOfFloat( sz, f ) ); in insert() 707 OUStringBuffer & insert(sal_Int32 offset, double d) in insert() argument 710 return insert( offset, sz, rtl_ustr_valueOfDouble( sz, d ) ); in insert() [all …]
|
H A D | strbuf.hxx | 457 OStringBuffer & insert(sal_Int32 offset, const OString & str) in insert() argument 459 return insert( offset, str.getStr(), str.getLength() ); in insert() 479 OStringBuffer & insert( sal_Int32 offset, const sal_Char * str ) in insert() argument 481 return insert( offset, str, rtl_str_getLength( str ) ); in insert() 526 OStringBuffer & insert(sal_Int32 offset, sal_Bool b) in insert() argument 548 OStringBuffer & insert(sal_Int32 offset, sal_Char c) in insert() argument 550 return insert( offset, &c, 1 ); in insert() 616 OStringBuffer insert(sal_Int32 offset, float f) in insert() argument 619 return insert( offset, sz, rtl_str_valueOfFloat( sz, f ) ); in insert() 639 OStringBuffer & insert(sal_Int32 offset, double d) in insert() argument [all …]
|
/trunk/main/i18npool/source/nativenumber/ |
H A D | nativenumbersupplier.cxx | 78 offset.realloc(nCount); in AsciiToNativeChar() 94 offset[i] = startPos + i; in AsciiToNativeChar() 187 offset.realloc( nCount * 2 ); in AsciiToNative() 248 offset.realloc(count); in AsciiToNative() 279 offset[count] = i; in NativeToAscii_numberMaker() 287 offset[count] = offset[count + curr]; in NativeToAscii_numberMaker() 300 offset[count] = i - 1; in NativeToAscii_numberMaker() 363 offset[count] = i; in NativeToAscii() 369 offset.realloc(count); in NativeToAscii() 371 offset[i] += startPos; in NativeToAscii() [all …]
|
/trunk/main/sal/osl/unx/ |
H A D | backtrace.c | 114 ptrdiff_t offset; in backtrace_symbols_fd() local 120 offset = (ptrdiff_t)*pFramePtr - (ptrdiff_t)dli.dli_fbase; in backtrace_symbols_fd() 125 offset = (ptrdiff_t)*pFramePtr - (ptrdiff_t)dli.dli_saddr; in backtrace_symbols_fd() 182 ptrdiff_t offset; in backtrace_symbols_fd() local 188 offset = (ptrdiff_t)*pFramePtr - (ptrdiff_t)dli.dli_fbase; in backtrace_symbols_fd() 193 offset = (ptrdiff_t)*pFramePtr - (ptrdiff_t)dli.dli_saddr; in backtrace_symbols_fd() 268 ptrdiff_t offset; in backtrace_symbols_fd() local 274 offset = (ptrdiff_t)*pFramePtr - (ptrdiff_t)dli.dli_fbase; in backtrace_symbols_fd() 279 offset = (ptrdiff_t)*pFramePtr - (ptrdiff_t)dli.dli_saddr; in backtrace_symbols_fd() 334 ptrdiff_t offset; in backtrace_symbols_fd() local [all …]
|
H A D | nlsupport.c | 107 size_t offset = 0; in _compose_locale() local 120 offset = pLanguage->length; in _compose_locale() 135 if( offset + pCountry->length + 1 < n ) in _compose_locale() 139 offset += pCountry->length; in _compose_locale() 155 if( offset + pVariant->length + 1 < n ) in _compose_locale() 158 offset += pVariant->length; in _compose_locale() 189 size_t offset = 2; in _parse_locale() local 195 offset = 3; in _parse_locale() 202 if( len >= offset+3 && '_' == locale[offset] ) in _parse_locale() 206 offset += 3; in _parse_locale() [all …]
|
/trunk/main/vcl/unx/gtk/a11y/ |
H A D | atktext.cxx | 337 gint offset, in text_wrapper_get_text_at_offset() argument 351 -2 == offset && in text_wrapper_get_text_at_offset() 419 gint offset = -1; in text_wrapper_get_caret_offset() local 424 offset = pText->getCaretPosition(); in text_wrapper_get_caret_offset() 434 return offset; in text_wrapper_get_caret_offset() 439 gint offset) in text_wrapper_set_caret_offset() argument 444 return pText->setCaretPosition( offset ); in text_wrapper_set_caret_offset() 457 const gint offset, in handle_text_markup_as_run_attribute() argument 473 if ( nStartOffsetTextMarkup <= offset ) in handle_text_markup_as_run_attribute() 475 if ( offset < nEndOffsetTextMarkup ) in handle_text_markup_as_run_attribute() [all …]
|
/trunk/main/sal/rtl/source/ |
H A D | ustrbuf.c | 106 sal_Int32 offset, in rtl_uStringbuffer_insert() argument 126 n = (nOldLen - offset); in rtl_uStringbuffer_insert() 129 pBuf[offset + len] = pBuf[offset]; in rtl_uStringbuffer_insert() 131 rtl_moveMemory( pBuf + offset + len, pBuf + offset, n * sizeof(sal_Unicode) ); in rtl_uStringbuffer_insert() 136 pBuf[offset] = *str; in rtl_uStringbuffer_insert() 159 rtl_uStringbuffer_insert(pThis, capacity, offset, buf, len); in rtl_uStringbuffer_insertUtf32() 167 sal_Int32 offset, in rtl_uStringbuffer_insert_ascii() argument 183 n = (nOldLen - offset); in rtl_uStringbuffer_insert_ascii() 186 pBuf[offset + len] = pBuf[offset]; in rtl_uStringbuffer_insert_ascii() 188 rtl_moveMemory( pBuf + offset + len, pBuf + offset, n * sizeof(sal_Unicode) ); in rtl_uStringbuffer_insert_ascii() [all …]
|
/trunk/main/basegfx/source/workbench/ |
H A D | bezierclip.cxx | 403 static int offset = 0; in printCurvesWithSafeRange() local 422 << c1.p1.x+offset << "," in printCurvesWithSafeRange() 423 << c1.p2.x+offset << "," in printCurvesWithSafeRange() 430 << c2.p1.x+offset << "," in printCurvesWithSafeRange() 431 << c2.p2.x+offset << "," in printCurvesWithSafeRange() 479 offset += 1; in printCurvesWithSafeRange() 488 static int offset = 0; in printResultWithFinalCurves() local 495 << c1.p1.x+offset << "," in printResultWithFinalCurves() 496 << c1.p2.x+offset << "," in printResultWithFinalCurves() 512 << c1.p1.x+offset << "," in printResultWithFinalCurves() [all …]
|
/trunk/main/basic/source/runtime/ |
H A D | dllmgr.cxx | 139 n = align(n - offset, alignment) + offset; //TODO: overflow in align() in align() 146 std::size_t offset) in add() argument 243 false, arr->Get32(&idx[0]), false, blob, offset, data); in marshalArray() 279 add(blob, variable->GetLong(), 4, offset); in marshal() 282 add(blob, variable->GetSingle(), 4, offset); in marshal() 294 add(blob, p, 4, offset); in marshal() 317 SbError e = marshalArray(variable, blob, offset, data); in marshal() 331 add(blob, variable->data(), 4, offset); in marshal() 342 add(blob, address(*blob2), 4, offset); in marshal() 356 add(blob, p, 4, offset); in marshal() [all …]
|
/trunk/main/i18npool/source/search/ |
H A D | textsearch.cxx | 238 newEndPos = FindPosInSeq_Impl( offset, endPos ); in searchForward() 244 sal_Int32 nOffsetLength = offset.getLength(); in searchForward() 254 sres.startOffset[k] = offset[offset.getLength()-1] +1; in searchForward() 261 sres.endOffset[k] = offset[sres.endOffset[k]-1] + 1; in searchForward() 279 startPos = FindPosInSeq_Impl( offset, startPos ); in searchForward() 282 endPos = FindPosInSeq_Impl( offset, endPos ); in searchForward() 337 newEndPos = FindPosInSeq_Impl( offset, endPos ); in searchBackward() 341 sal_Int32 nOffsetLength = offset.getLength(); in searchBackward() 355 sres.endOffset[k] = offset[nEndOffset]; in searchBackward() 357 sres.endOffset[k] = offset[offset.getLength()-1] +1; in searchBackward() [all …]
|
/trunk/main/registry/source/ |
H A D | keyimpl.cxx | 415 offset += 4; in setLongListValue() 481 offset += 4; in setStringListValue() 483 offset += sLen; in setStringListValue() 549 offset += 4; in setUnicodeListValue() 551 offset += sLen; in setUnicodeListValue() 753 offset += 4; in getLongListValue() 851 readUINT32(pBuffer+offset, sLen); in getStringListValue() 853 offset += 4; in getStringListValue() 859 offset += sLen; in getStringListValue() 959 offset += 4; in getUnicodeListValue() [all …]
|
/trunk/main/i18npool/source/transliteration/ |
H A D | transliteration_body.cxx | 108 Sequence< sal_Int32 >& offset) in transliterate() 155 offset[j] = i + startPos; in transliterate() 160 offset.realloc(j); in transliterate() 189 if ( nOffCount != offset.getLength() ) in transliterate() 190 offset.realloc( nOffCount ); in transliterate() 193 sal_Int32 * pArr = offset.getArray(); in transliterate() 388 Sequence< sal_Int32 >& offset ) in transliterate_titlecase_Impl() 417 offset.realloc( aRes.getLength() ); in transliterate_titlecase_Impl() 420 sal_Int32 nLen = offset.getLength(); in transliterate_titlecase_Impl() 442 Sequence< sal_Int32 >& offset ) in transliterate() [all …]
|
H A D | transliterationImpl.cxx | 297 if (offset.getLength() != nCount) in transliterate() 298 offset.realloc(nCount); in transliterate() 310 nCount = offset.getLength(); in transliterate() 327 off[to] = offset; in transliterate() 338 offset = off[to]; in transliterate() 352 if (offset.getLength() != nCount) in folding() 353 offset.realloc(nCount); in folding() 365 nCount = offset.getLength(); in folding() 382 off[to] = offset; in folding() 392 offset = off[to]; in folding() [all …]
|
H A D | transliteration_Ignore.cxx | 95 Sequence< sal_Int32 >& offset ) throw(RuntimeException) in transliterate() 98 return this->folding( inStr, startPos, nCount, offset); in transliterate() 108 Sequence< sal_Int32 > offset; in transliterateRange() local 109 OUString s11 = t1.transliterate( str1, 0, 1, offset ); in transliterateRange() 110 OUString s12 = t1.transliterate( str2, 0, 1, offset ); in transliterateRange() 111 OUString s21 = t2.transliterate( str1, 0, 1, offset ); in transliterateRange() 112 OUString s22 = t2.transliterate( str2, 0, 1, offset ); in transliterateRange() 131 sal_Int32 nCount, Sequence< sal_Int32 >& offset) in folding() 144 offset.realloc( nCount ); in folding() 145 p = offset.getArray(); in folding() [all …]
|
H A D | transliteration_Numeric.cxx | 68 Sequence< sal_Int32 >& offset ) throw(RuntimeException) in transliterateBullet() 79 offset.realloc(nCount); in transliterateBullet() 92 offset[j] = startPos; in transliterateBullet() 97 offset[j] = k; in transliterateBullet() 102 offset[j] = startPos; in transliterateBullet() 106 offset[j] = i; in transliterateBullet() 115 offset.realloc(j); in transliterateBullet() 122 Sequence< sal_Int32 >& offset ) throw(RuntimeException) in transliterate() 125 return transliterateBullet( inStr, startPos, nCount, offset); in transliterate() 127 …eOffset).getNativeNumberString( inStr.copy(startPos, nCount), aLocale, nNativeNumberMode, offset ); in transliterate()
|
/trunk/main/i18npool/source/textconversion/ |
H A D | textconversion_zh.cxx | 152 if (offset.getLength() > 0) { in getWordConversion() 156 offset[count] = nStartPos + currPos + (current * in getWordConversion() 187 if (offset.getLength() > 0) { in getWordConversion() 208 if (offset.getLength() > 0) in getWordConversion() 209 offset[count]=nStartPos+currPos; in getWordConversion() 215 if (offset.getLength() > 0) in getWordConversion() 216 offset.realloc(one2one ? 0 : count); in getWordConversion() 253 Sequence <sal_Int32> offset; in getConversion() local 274 offset.realloc(0); in getConversionWithOffset() 278 if (offset.getLength() < 2*nLength) in getConversionWithOffset() [all …]
|
/trunk/main/sal/osl/os2/ |
H A D | nlsupport.c | 98 size_t offset = 0; in _compose_locale() local 111 offset = pLanguage->length; in _compose_locale() 126 if( offset + pCountry->length + 1 < n ) in _compose_locale() 128 strcpy( buffer + offset++, "_" ); in _compose_locale() 130 offset += pCountry->length; in _compose_locale() 146 if( offset + pVariant->length + 1 < n ) in _compose_locale() 149 offset += pVariant->length; in _compose_locale() 180 size_t offset = 2; in _parse_locale() local 191 offset = 5; in _parse_locale() 195 if( len > offset ) { in _parse_locale() [all …]
|
/trunk/main/writerfilter/source/doctok/ |
H A D | WW8inc.xsl | 34 <xsl:param name="offset"/> 55 offset : <xsl:value-of select="$offset"/> 64 <xsl:otherwise> { return (get<xsl:value-of select="$type"/>(0x<xsl:value-of select="$offset"/>)<xsl… 70 <xsl:variable name="offset"><xsl:value-of select="xhtml:td[2]"/></xsl:variable> 72 <xsl:with-param name="offset" select="$offset"/> 77 <xsl:with-param name="offset" select="$offset"/> 83 <xsl:param name="offset"/> 86 <xsl:with-param name="offset" select="$offset"/> 91 <xsl:with-param name="offset" select="$offset"/>
|
/trunk/main/i18npool/source/localedata/ |
H A D | localedata.cxx | 516 sal_Int16 offset = 3; in getAllCalendars() local 523 offset++; in getAllCalendars() 525 offset++; in getAllCalendars() 528 offset += 2; in getAllCalendars() 532 allCalendars[offset+1], allCalendars[offset+2]); in getAllCalendars() 539 offset += 2; in getAllCalendars() 543 allCalendars[offset+1], allCalendars[offset+2]); in getAllCalendars() 550 offset += 2; in getAllCalendars() 554 allCalendars[offset+1], allCalendars[offset+2]); in getAllCalendars() 560 offset++; in getAllCalendars() [all …]
|