HomeSort by relevance Sort by last modified time
    Searched defs:advances (Results 1 - 11 of 11) sorted by null

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
search.h 45 * @brief Precalculate advances for Knuth-Morris-Pratt algorithm.
48 * @param advances Returned offsets.
115 difference_type advances[pattern_length]; local
116 calc_borders(begin2, pattern_length, advances);
157 start += (pos_in_pattern - advances[pos_in_pattern]);
159 (advances[pos_in_pattern] < 0) ? 0 : advances[pos_in_pattern];
  /external/webkit/WebCore/platform/graphics/
GlyphBuffer.h 59 // CG uses CGSize instead of FloatSize so that the result of advances()
87 GlyphBufferAdvance* advances(int from) { return m_advances.data() + from; } function in class:WebCore::GlyphBuffer
89 const GlyphBufferAdvance* advances(int from) const { return m_advances.data() + from; } function in class:WebCore::GlyphBuffer
  /external/webkit/WebCore/platform/wx/wxcode/win/
non-kerned-drawing.cpp 107 const GlyphBufferAdvance* advances = glyphBuffer.advances(from); local
111 spacing[i] = advances[i].width();
  /external/webkit/WebCore/platform/graphics/chromium/
FontChromiumWin.cpp 198 bool drawGlyphs(int numGlyphs, const WORD* glyphs, const int* advances, int startAdvance) const;
256 const int* advances,
263 numGlyphs, glyphs, advances, 0, &origin);
288 ExtTextOut(m_hdc, x + shadowSize.width(), y + shadowSize.height(), ETO_GLYPH_INDEX, 0, reinterpret_cast<const wchar_t*>(&glyphs[0]), numGlyphs, &advances[0]);
292 return !!ExtTextOut(m_hdc, x, y, ETO_GLYPH_INDEX, 0, reinterpret_cast<const wchar_t*>(&glyphs[0]), numGlyphs, &advances[0]);
384 // the arrays of characters and advances. Since ExtTextOut is the
390 Vector<int, kMaxBufferLength> advances; local
397 advances.resize(curLen);
402 advances[i] = static_cast<int>(glyphBuffer.advanceAt(from + glyphIndex));
412 if ((curWidth + advances[i] < maxNegativeRun) || (curWidth + advances[i] > maxPositiveRun))
    [all...]
UniscribeHelper.cpp 173 Vector<int, 64> advances; local
174 advances.resize(totalGlyphs);
187 advances[destIndex] = shaping.m_advance[i];
194 ScriptJustify(&visualAttributes[0], &advances[0], totalGlyphs,
    [all...]
FontLinux.cpp 88 // GlyphBuffer has no advances other than the defaults. In that case the
92 const GlyphBufferAdvance* adv = glyphBuffer.advances(from);
270 // Get the advances (widths) for each glyph.
271 const HB_Fixed* advances() const function in class:WebCore::TextRunWalker
273 return m_item.advances;
391 delete[] m_item.advances;
401 m_item.advances = new HB_Fixed[m_maxGlyphs];
410 && m_item.advances
450 double advance = truncateFixedPointToInteger(m_item.advances[i]);
532 const HB_Fixed* advances = walker.advances() local
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.h 93 const CGSize* advances() const { return m_advances; } function in class:WebCore::ComplexTextController::ComplexTextRun
ComplexTextController.cpp 429 const CGSize* advances = complexTextRun.advances(); local
460 CGSize advance = treatAsSpace ? CGSizeMake(fontData->spaceWidth(), advances[i].height) : advances[i];
  /external/webkit/WebCore/platform/graphics/win/
UniscribeController.cpp 237 Vector<int> advances; local
239 advances.resize(glyphs.size());
242 &item.a, advances.data(), offsets.data(), 0);
250 &item.a, advances.data(), offsets.data(), 0);
278 advances[clusters[k]] = logicalSpaceWidth;
298 float advance = advances[k] / cLogicalScale;
377 // Mutate the glyph array to contain our altered advances.
379 advances[k] = advance;
386 advances.data(), &item.a, &m_offsetPosition, &trailing);
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 299 milliseconds