HomeSort by relevance Sort by last modified time
    Searched refs:CGSize (Results 1 - 25 of 34) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/graphics/win/
WebTiledLayer.h 37 static PassRefPtr<WebTiledLayer> create(const CGSize& tileSize, GraphicsLayer* owner);
45 WebTiledLayer(const CGSize& tileSize, GraphicsLayer* owner);
67 CGSize constrainedSize(const CGSize& size) const;
76 CGSize m_tileSize;
77 CGSize m_constrainedSize;
WebTiledLayer.cpp 64 PassRefPtr<WebTiledLayer> WebTiledLayer::create(const CGSize& tileSize, GraphicsLayer* owner)
70 WebTiledLayer::WebTiledLayer(const CGSize& tileSize, GraphicsLayer* owner)
161 CGSize WebTiledLayer::constrainedSize(const CGSize& size) const
166 CGSize constrainedSize = size;
SimpleFontDataCGWin.cpp 148 CGSize advance;
MediaPlayerPrivateQuickTimeVisualContext.cpp 507 CGSize originalSize = {width, height};
508 CGSize transformedSize = CGSizeApplyAffineTransform(originalSize, m_movieTransform);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
FloatSizeCG.cpp 36 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height)
40 FloatSize::operator CGSize() const
IntSizeCG.cpp 35 IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
39 IntSize::operator CGSize() const
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.h 71 CGSize constrainedSize(const CGSize&) const;
80 CGSize m_tileSize;
81 CGSize m_constrainedSize;
PlatformCALayerWinInternal.cpp 341 CGSize PlatformCALayerWinInternal::constrainedSize(const CGSize& size) const
346 CGSize constrainedSize = size;
  /external/webkit/Source/WebCore/platform/graphics/
FloatSize.h 35 typedef struct CGSize CGSize;
40 typedef struct CGSize NSSize;
93 explicit FloatSize(const CGSize&); // don't do this implicitly since it's lossy
94 operator CGSize() const;
IntSize.h 30 typedef struct CGSize CGSize;
35 typedef struct CGSize NSSize;
113 explicit IntSize(const CGSize&); // don't do this implicitly since it's lossy
114 operator CGSize() const;
GlyphBuffer.h 59 // CG uses CGSize instead of FloatSize so that the result of advances()
62 typedef CGSize GlyphBufferAdvance;
157 CGSize advance = { width, 0 };
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.h 97 const CGSize* advances() const { return m_advances; }
135 Vector<CGSize, 64> m_advancesVector;
136 const CGSize* m_advances;
164 Vector<CGSize, 256> m_adjustedAdvances;
FontMac.mm 81 static void showGlyphsWithAdvances(const FloatPoint& point, const SimpleFontData* font, CGContextRef context, const CGGlyph* glyphs, const CGSize* advances, size_t count)
104 Vector<CGSize, 256> translations(count);
112 CGSize translation = CGSizeApplyAffineTransform(translations[i], translationsTransform);
131 CGSize advance = CGSizeApplyAffineTransform(advances[i - 1], matrix);
ComplexTextControllerCoreText.cpp 37 void CTRunGetAdvances(CTRunRef run, CFRange range, CGSize buffer[]);
38 const CGSize* CTRunGetAdvancesPtr(CTRunRef run);
ComplexTextController.cpp 375 CGSize adjustedAdvance = m_adjustedAdvances[k];
425 const CGSize* advances = complexTextRun.advances();
455 CGSize advance = treatAsSpace ? CGSizeMake(fontData->spaceWidth(), advances[i].height) : advances[i];
SimpleFontDataMac.mm 472 CGSize advance;
  /external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
WebKitSystemInterface.h 32 struct CGSize;
78 void wkGetGlyphAdvances(CGFontRef, const CGAffineTransform&, bool isSystemFont, bool isPrinterFont, CGGlyph, CGSize& advance);
231 void WKMeasureMediaUIPart(int part, int themeStyle, CGRect *bounds, CGSize *naturalSize);
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLViewPrivate.h 139 - (BOOL)_beginScreenPaginationModeWithPageSize:(CGSize)pageSize shrinkToFit:(BOOL)shrinkToFit;
  /external/webkit/Source/WebCore/platform/graphics/wx/
SimpleFontDataWx.cpp 153 CGSize advance;
  /external/webkit/Source/WebCore/platform/mac/
WebCoreSystemInterface.mm 43 BOOL (*wkGetGlyphTransformedAdvances)(CGFontRef, NSFont*, CGAffineTransform*, ATSGlyphRef*, CGSize* advance);
48 void (*wkMeasureMediaUIPart)(int part, int themeStyle, CGRect *bounds, CGSize *naturalSize);
WebCoreSystemInterface.h 116 extern BOOL (*wkGetGlyphTransformedAdvances)(CGFontRef, NSFont*, CGAffineTransform*, ATSGlyphRef*, CGSize* advance);
130 extern void (*wkMeasureMediaUIPart)(int part, int themeStyle, CGRect *bounds, CGSize *naturalSize);
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundationObjC.mm 610 [m_imageGenerator.get() setMaximumSize:CGSize(rect.size())];
680 CGSize trackSize = [track naturalSize];
689 CGSize naturalSize = CGSizeApplyAffineTransform(trackUnionRect.size, [m_avAsset.get() preferredTransform]);
  /external/webkit/Source/WebCore/rendering/
RenderMediaControls.cpp 98 CGSize size;
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 138 BOOL WKGetGlyphTransformedAdvances(CGFontRef, NSFont*, CGAffineTransform *m, ATSGlyphRef *glyph, CGSize *advance);
291 void WKMeasureMediaUIPart(int part, int themeStyle, CGRect *bounds, CGSize *naturalSize);
  /external/skia/legacy/src/ports/
SkFontHost_mac_coretext.cpp 805 CGSize vertOffset;
951 CGSize theAdvance;
    [all...]

Completed in 2445 milliseconds

1 2