HomeSort by relevance Sort by last modified time
    Searched refs:patWidth (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 304 int patWidth = 0;
310 patWidth = static_cast<int>(width);
313 patWidth = 3*static_cast<int>(width);
321 if (patWidth) {
336 int remainder = distance%patWidth;
338 int numSegments = coverage/patWidth;
342 if (patWidth == 1)
350 patternOffset += patWidth - remainder;
353 patternOffset = patWidth / 2;
356 patternOffset = (patWidth - remainder) / 2
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 225 int patWidth = 0;
231 patWidth = (int)width;
234 patWidth = 3 * (int)width;
243 if (patWidth) {
261 int remainder = distance % patWidth;
263 int numSegments = coverage / patWidth;
267 if (patWidth == 1)
275 patternOffset += patWidth - remainder;
278 patternOffset = patWidth / 2;
281 patternOffset = (patWidth - remainder)/2
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 359 int patWidth = 0;
365 patWidth = static_cast<int>(width);
368 patWidth = 3 * static_cast<int>(width);
372 if (patWidth) {
389 int remainder = distance % patWidth;
391 int numSegments = coverage / patWidth;
395 if (patWidth == 1)
403 patternOffset += patWidth - remainder;
406 patternOffset = patWidth / 2;
409 patternOffset = (patWidth - remainder) / 2
    [all...]

Completed in 78 milliseconds