Lines Matching refs:height

68     virtual void createContent(int width, int height, DisplayListCanvas* renderer) = 0;
80 const int height = gDisplay.h;
85 rootNode->mutateStagingProperties().setLeftTopRightBottom(0, 0, width, height);
95 proxy->setup(width, height, dp(800.0f), 255 * 0.075, 255 * 0.15);
101 animation.createContent(width, height, renderer);
130 void createContent(int width, int height, DisplayListCanvas* renderer) override {
135 for (int y = dp(16); y < (height - dp(116)); y += dp(116)) {
153 sp<RenderNode> createCard(int x, int y, int width, int height) {
155 node->mutateStagingProperties().setLeftTopRightBottom(x, y, x + width, y + height);
157 node->mutateStagingProperties().mutableOutline().setRoundRect(0, 0, width, height, dp(10), 1);
171 void createContent(int width, int height, DisplayListCanvas* renderer) override {
176 for (int y = dp(8); y < (height - dp(58)); y += dp(58)) {
194 sp<RenderNode> createCard(int x, int y, int width, int height) {
196 node->mutateStagingProperties().setLeftTopRightBottom(x, y, x + width, y + height);
198 node->mutateStagingProperties().mutableOutline().setRoundRect(0, 0, width, height, dp(6), 1);
212 void createContent(int width, int height, DisplayListCanvas* renderer) override {
228 sp<RenderNode> createCard(int x, int y, int width, int height) {
230 node->mutateStagingProperties().setLeftTopRightBottom(x, y, x + width, y + height);
236 float rects[width * height];
239 for (int yOffset = 0; yOffset < height; yOffset+=2) {
246 int count = width * height;
260 void createContent(int width, int height, DisplayListCanvas* renderer) override {
277 sp<RenderNode> createCard(int x, int y, int width, int height) {
279 node->mutateStagingProperties().setLeftTopRightBottom(x, y, x + width, y + height);
287 renderer->drawOval(0, 0, width, height, paint);