HomeSort by relevance Sort by last modified time
    Searched full:itemlength (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/
UniscribeHelper.cpp 197 int itemLength = shaping.charLength();
199 if (offset >= item.iCharPos && offset <= item.iCharPos + itemLength) {
204 hr = ScriptCPtoX(charLength, FALSE, itemLength,
236 int itemLength = shaping.charLength();
237 if (x <= itemAdvance && itemLength > 0) {
247 hr = ScriptXtoCP(x, itemLength, shaping.glyphLength(),
513 int itemLength,
540 shaping.m_logs.resize(itemLength);
566 hr = ScriptShape(tempDC, scriptCache, input, itemLength,
606 const UChar *family = getFallbackFamily(input, itemLength,
    [all...]
UniscribeHelper.h 361 bool shape(const UChar* input, int itemLength, int numGlyphs, SCRIPT_ITEM& run, Shaping&);
  /external/webkit/Source/WebCore/platform/graphics/win/
UniscribeController.cpp 161 int itemLength = m_run.rtl() ? indexOfFontTransition - index : index - indexOfFontTransition;
163 itemizeShapeAndPlace((isSmallCaps ? smallCapsBuffer.data() : cp) + itemStart, itemLength, fontData, glyphBuffer);
168 int itemLength = m_run.rtl() ? indexOfFontTransition + 1 : length - indexOfFontTransition;
169 if (itemLength) {
175 itemizeShapeAndPlace((nextIsSmallCaps ? smallCapsBuffer.data() : cp) + itemStart, itemLength, nextFontData, glyphBuffer);
  /external/icu4c/tools/icuswap/
icuswap.cpp 346 int32_t itemLength;
421 itemLength=udata_swap(ds, inBytes+offset, -1, NULL, pErrorCode);
424 return headerSize+offset+(uint32_t)itemLength;
466 itemLength=(int32_t)(ds->readUInt32(inEntries[0].dataOffset)-offset);
467 udata_swapInvStringBlock(ds, inBytes+offset, itemLength, outBytes+offset, pErrorCode);
472 /* keep offset and itemLength in case we allocate and copy the strings below */
529 uprv_memcpy(outBytes+offset, inBytes+offset, itemLength);
  /external/icu4c/tools/toolutil/
package.cpp 443 int32_t itemLength, typeEnum;
537 itemLength=(int32_t)(ds->readUInt32(inEntries[0].dataOffset))-stringsOffset;
540 while(itemLength>0 && inBytes[stringsOffset+itemLength-1]!=0) {
541 --itemLength;
544 if((inStringTop+itemLength)>STRING_STORE_SIZE) {
550 ds->swapInvChars(ds, inBytes+stringsOffset, itemLength, inItemStrings, &errorCode);
555 inStringTop+=itemLength;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.cpp 250 int itemLength = m_run.rtl() ? indexOfFontTransition - index : index - indexOfFontTransition;
251 collectComplexTextRunsForCharacters((isSmallCaps ? m_smallCapsBuffer.data() : cp) + itemStart, itemLength, itemStart, glyphData.glyph ? glyphData.fontData : 0);
256 int itemLength = m_run.rtl() ? indexOfFontTransition + 1 : m_end - indexOfFontTransition;
257 if (itemLength) {
259 collectComplexTextRunsForCharacters((nextIsSmallCaps ? m_smallCapsBuffer.data() : cp) + itemStart, itemLength, itemStart, nextGlyphData.glyph ? nextGlyphData.fontData : 0);

Completed in 128 milliseconds