Home
last modified time | relevance | path

Searched refs:graphics (Results 1 – 25 of 127) sorted by relevance

123456

/external/proguard/src/proguard/gui/splash/
DOverrideGraphics2D.java42 private final Graphics2D graphics; field in OverrideGraphics2D
60 public OverrideGraphics2D(Graphics2D graphics) in OverrideGraphics2D() argument
62 this.graphics = graphics; in OverrideGraphics2D()
63 this.color = graphics.getColor(); in OverrideGraphics2D()
64 this.font = graphics.getFont(); in OverrideGraphics2D()
65 this.paint = graphics.getPaint(); in OverrideGraphics2D()
66 this.stroke = graphics.getStroke(); in OverrideGraphics2D()
78 graphics.setColor(color != null ? color : this.color); in setOverrideColor()
89 graphics.setFont(font != null ? font : this.font); in setOverrideFont()
100 graphics.setPaint(paint != null ? paint : this.paint); in setOverridePaint()
[all …]
DShadowedSprite.java67 public void paint(Graphics graphics, long time) in paint() argument
84 Color actualColor = graphics.getColor(); in paint()
85 graphics.setColor(cachedColor); in paint()
97 graphics.translate(xt, yt); in paint()
98 sprite.paint(graphics, time); in paint()
99 graphics.translate(-xt, -yt); in paint()
104 graphics.setColor(actualColor); in paint()
107 sprite.paint(graphics, time); in paint()
DColorSprite.java51 public void paint(Graphics graphics, long time) in paint() argument
54 Color oldColor = graphics.getColor(); in paint()
57 graphics.setColor(color.getColor(time)); in paint()
60 sprite.paint(graphics, time); in paint()
63 graphics.setColor(oldColor); in paint()
DFontSprite.java51 public void paint(Graphics graphics, long time) in paint() argument
54 Font oldFont = graphics.getFont(); in paint()
57 graphics.setFont(font.getFont(time)); in paint()
60 sprite.paint(graphics, time); in paint()
63 graphics.setFont(oldFont); in paint()
DClipSprite.java59 public void paint(Graphics graphics, long time) in paint() argument
63 Rectangle clip = graphics.getClipBounds(); in paint()
64 graphics.setPaintMode(); in paint()
65 graphics.setColor(outsideColor); in paint()
66 graphics.fillRect(0, 0, clip.width, clip.height); in paint()
69 OverrideGraphics2D g = new OverrideGraphics2D((Graphics2D)graphics); in paint()
DRectangleSprite.java94 public void paint(Graphics graphics, long time) in paint() argument
96 graphics.setColor(color.getColor(time)); in paint()
107 graphics.fillRoundRect(xt, yt, w, h, aw, ah); in paint()
111 graphics.drawRoundRect(xt, yt, w, h, aw, ah); in paint()
DBufferedSprite.java106 public void paint(Graphics graphics, long time) in paint() argument
128 bufferGraphics.setColor(graphics.getColor()); in paint()
129 bufferGraphics.setFont(graphics.getFont()); in paint()
140 graphics.drawImage(bufferImage, in paint()
DCircleSprite.java59 public void paint(Graphics graphics, long time) in paint() argument
67 graphics.fillOval(xt - r, yt - r, 2 * r, 2 * r); in paint()
71 graphics.drawOval(xt - r, yt - r, 2 * r, 2 * r); in paint()
DCompositeSprite.java48 public void paint(Graphics graphics, long time) in paint() argument
53 sprites[index].paint(graphics, time); in paint()
DTimeSwitchSprite.java67 public void paint(Graphics graphics, long time) in paint() argument
71 sprite.paint(graphics, time - onTime); in paint()
DSplashPanel.java134 public void paintComponent(Graphics graphics) in paintComponent() argument
136 super.paintComponent(graphics); in paintComponent()
138 sprite.paint(graphics, System.currentTimeMillis() - startTime); in paintComponent()
/external/webkit/Source/WebCore/
DCMakeListsEfl.txt11 "${WEBCORE_DIR}/platform/graphics/efl"
58 platform/graphics/ImageSource.cpp
59 platform/graphics/efl/FontEfl.cpp
60 platform/graphics/efl/IconEfl.cpp
61 platform/graphics/efl/ImageEfl.cpp
62 platform/graphics/efl/IntPointEfl.cpp
63 platform/graphics/efl/IntRectEfl.cpp
80 "${WEBCORE_DIR}/platform/graphics/cairo"
83 platform/graphics/cairo/CairoUtilities.cpp
84 platform/graphics/cairo/ContextShadowCairo.cpp
[all …]
DCMakeListsWinCE.txt6 "${WEBCORE_DIR}/platform/graphics/wince"
7 "${WEBCORE_DIR}/platform/graphics/win"
38 platform/graphics/ImageSource.cpp
92 platform/graphics/opentype/OpenTypeUtilities.cpp
94 platform/graphics/win/GDIExtras.cpp
95 platform/graphics/win/IconWin.cpp
96 platform/graphics/win/ImageWin.cpp
97 platform/graphics/win/IntPointWin.cpp
98 platform/graphics/win/IntRectWin.cpp
99 platform/graphics/win/IntSizeWin.cpp
[all …]
DAndroid.mk601 platform/graphics/BitmapImage.cpp \
602 platform/graphics/Color.cpp \
603 platform/graphics/FloatPoint.cpp \
604 platform/graphics/FloatPoint3D.cpp \
605 platform/graphics/FloatQuad.cpp \
606 platform/graphics/FloatRect.cpp \
607 platform/graphics/FloatSize.cpp \
608 platform/graphics/Font.cpp \
609 platform/graphics/FontCache.cpp \
610 platform/graphics/FontData.cpp \
[all …]
DWebCore.gypi798 'platform/graphics/BitmapImage.h',
799 'platform/graphics/Color.h',
800 'platform/graphics/ColorSpace.h',
801 'platform/graphics/DashArray.h',
802 'platform/graphics/FloatPoint.h',
803 'platform/graphics/FloatPoint3D.h',
804 'platform/graphics/FloatQuad.h',
805 'platform/graphics/FloatRect.h',
806 'platform/graphics/FloatSize.h',
807 'platform/graphics/Font.h',
[all …]
DWebCore.pro970 platform/graphics/FontDescription.cpp \
971 platform/graphics/FontFallbackList.cpp \
972 platform/graphics/FontFamily.cpp \
973 platform/graphics/BitmapImage.cpp \
974 platform/graphics/Color.cpp \
975 platform/graphics/ContextShadow.cpp \
976 platform/graphics/FloatPoint3D.cpp \
977 platform/graphics/FloatPoint.cpp \
978 platform/graphics/FloatQuad.cpp \
979 platform/graphics/FloatRect.cpp \
[all …]
DGNUmakefile.list.am2338 Source/WebCore/platform/graphics/BitmapImage.cpp \
2339 Source/WebCore/platform/graphics/BitmapImage.h \
2340 Source/WebCore/platform/graphics/Color.cpp \
2341 Source/WebCore/platform/graphics/Color.h \
2342 Source/WebCore/platform/graphics/ColorSpace.h \
2343 Source/WebCore/platform/graphics/ContextShadow.cpp \
2344 Source/WebCore/platform/graphics/ContextShadow.h \
2345 Source/WebCore/platform/graphics/DashArray.h \
2346 Source/WebCore/platform/graphics/filters/DistantLightSource.cpp \
2347 Source/WebCore/platform/graphics/filters/DistantLightSource.h \
[all …]
DCMakeLists.txt31 "${WEBCORE_DIR}/platform/graphics"
32 "${WEBCORE_DIR}/platform/graphics/filters"
33 "${WEBCORE_DIR}/platform/graphics/transforms"
55 "${WEBCORE_DIR}/svg/graphics"
56 "${WEBCORE_DIR}/svg/graphics/filters"
1083 platform/graphics/BitmapImage.cpp
1084 platform/graphics/Color.cpp
1085 platform/graphics/ContextShadow.cpp
1086 platform/graphics/FloatPoint.cpp
1087 platform/graphics/FloatPoint3D.cpp
[all …]
DGNUmakefile.am41 -I$(srcdir)/Source/WebCore/platform/graphics \
42 -I$(srcdir)/Source/WebCore/platform/graphics/filters \
43 -I$(srcdir)/Source/WebCore/platform/graphics/opentype \
44 -I$(srcdir)/Source/WebCore/platform/graphics/transforms \
66 -I$(srcdir)/Source/WebCore/svg/graphics \
67 -I$(srcdir)/Source/WebCore/svg/graphics/filters \
86 -I$(srcdir)/Source/WebCore/platform/graphics/cairo \
87 -I$(srcdir)/Source/WebCore/platform/graphics/gstreamer \
88 -I$(srcdir)/Source/WebCore/platform/graphics/gtk \
2342 Source/WebCore/platform/graphics/BitmapImage.cpp \
[all …]
DWebCore.pri94 $$SOURCE_DIR/WebCore/platform/graphics \
95 $$SOURCE_DIR/WebCore/platform/graphics/filters \
96 $$SOURCE_DIR/WebCore/platform/graphics/filters/arm \
97 $$SOURCE_DIR/WebCore/platform/graphics/texmap \
98 $$SOURCE_DIR/WebCore/platform/graphics/transforms \
114 $$SOURCE_DIR/WebCore/svg/graphics \
115 $$SOURCE_DIR/WebCore/svg/graphics/filters \
127 $$SOURCE_DIR/WebCore/platform/graphics/qt \
253 INCLUDEPATH += $$PWD/platform/graphics/gstreamer
/external/webkit/Source/
DAndroid.mk89 frameworks/base/core/jni/android/graphics
113 $(LOCAL_PATH)/WebCore/platform/graphics \
114 $(LOCAL_PATH)/WebCore/platform/graphics/android \
115 $(LOCAL_PATH)/WebCore/platform/graphics/network \
116 $(LOCAL_PATH)/WebCore/platform/graphics/skia \
117 $(LOCAL_PATH)/WebCore/platform/graphics/transforms \
155 $(LOCAL_PATH)/WebCore/platform/graphics/filters \
158 $(LOCAL_PATH)/WebCore/svg/graphics \
159 $(LOCAL_PATH)/WebCore/svg/graphics/filters \
/external/webkit/Source/WebCore/WebCore.gyp/
DWebCore.gyp170 '../platform/graphics',
171 '../platform/graphics/chromium',
172 '../platform/graphics/filters',
173 '../platform/graphics/gpu',
174 '../platform/graphics/opentype',
175 '../platform/graphics/skia',
176 '../platform/graphics/transforms',
203 '../svg/graphics',
204 '../svg/graphics/filters',
254 # platform/graphics/cg and cocoa need to come before
[all …]
/external/webkit/
DAndroid.mk159 frameworks/base/core/jni/android/graphics \
195 $(WEBCORE_PATH)/platform/graphics \
196 $(WEBCORE_PATH)/platform/graphics/android \
197 $(WEBCORE_PATH)/platform/graphics/filters \
198 $(WEBCORE_PATH)/platform/graphics/gpu \
199 $(WEBCORE_PATH)/platform/graphics/network \
200 $(WEBCORE_PATH)/platform/graphics/skia \
201 $(WEBCORE_PATH)/platform/graphics/transforms \
223 $(WEBCORE_PATH)/svg/graphics \
224 $(WEBCORE_PATH)/svg/graphics/filters \
/external/webkit/Source/WebCore/gyp/
DWebCore.gyp88 ['exclude', 'platform/graphics/cg/FontPlatformData\\.h$'],
89 ['exclude', 'platform/graphics/gpu/LoopBlinnPathProcessor\\.(cpp|h)$'],
90 ['exclude', 'platform/graphics/gpu/LoopBlinnLocalTriangulator\\.(cpp|h)$'],
91 ['exclude', 'platform/graphics/gpu/LoopBlinnPathCache\\.(cpp|h)$'],
92 ['exclude', 'platform/graphics/gpu/LoopBlinnShader\\.(cpp|h)$'],
93 ['exclude', 'platform/graphics/gpu/LoopBlinnSolidFillShader\\.(cpp|h)$'],
95 ['exclude', 'platform/graphics/ImageSource\\.cpp$'],
96 ['exclude', 'platform/graphics/opengl/TextureMapperGL\\.cpp$'],
97 ['exclude', 'platform/graphics/opentype/OpenTypeUtilities\\.(cpp|h)$'],
/external/webkit/Source/WebCore/WebCore.vcproj/
DcopyForwardingHeaders.cmd1 rem %1 argument is used for graphics. It can be cg or cairo
39 xcopy /y /d "%ProjectDir%..\platform\graphics\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
40 xcopy /y /d "%ProjectDir%..\platform\graphics\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
41 xcopy /y /d "%ProjectDir%..\platform\graphics\transforms\*.h" "%CONFIGURATIONBUILDDIR%\include\WebC…
42 xcopy /y /d "%ProjectDir%..\platform\graphics\ca\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
43 xcopy /y /d "%ProjectDir%..\platform\graphics\ca\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
44 xcopy /y /d "%ProjectDir%..\platform\graphics\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
45 xcopy /y /d "%ProjectDir%..\platform\graphics\win\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
46 xcopy /y /d "%ProjectDir%..\platform\graphics\opentype\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCor…

123456