HomeSort by relevance Sort by last modified time
    Searched full:draw (Results 151 - 175 of 1673) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_BView.h 61 * draw a nice black box in the entire view to get black borders.
73 Draw(bounds);
84 virtual void Draw(BRect updateRect) {
  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsmouse.c 85 /* Only draw the new cursor if there was one passed in */
91 /* Draw the cursor at the new location */
137 /* Draw the cursor at the appropriate location */
  /external/skia/gm/
complexclip.cpp 110 // draw path clipped
114 // draw path in hairline
118 // draw clips in hair line
  /external/skia/samplecode/
SampleAnimator.cpp 124 fAnimator->draw(canvas, 0);
129 fAnimator->draw(canvas, 0);
135 fAnimator->draw(canvas, 0);
SampleComplexClip.cpp 105 // draw path clipped
109 // draw path in hairline
113 // draw clips in hair line
  /external/skia/src/core/
SkPicturePlayback.h 33 void draw(SkCanvas& canvas);
39 // Can be called in the middle of playback (the draw() call). WIll abort the
40 // drawing and return from draw() after the "current" op code is done
  /external/webkit/Source/WebCore/platform/graphics/android/
MediaLayer.cpp 76 // to ensure the plugin does not draw outside of its bounds.
92 // draw any content or video if present
93 m_mediaTexture->draw(m, m_drawTransform, mediaBounds);
  /external/webkit/Source/WebCore/platform/graphics/win/
ImageCGWin.cpp 81 draw(&gc, FloatRect(0.0f, 0.0f, bmpInfo.bmWidth, bmpInfo.bmHeight), FloatRect(0.0f, 0.0f, imageSize.width(), imageSize.height()), ColorSpaceDeviceRGB, CompositeCopy);
97 draw(ctxt, dstRect, FloatRect(0.0f, 0.0f, srcSize.width(), srcSize.height()), styleColorSpace, compositeOp);
105 draw(ctxt, dstRect, FloatRect(0.0f, 0.0f, imageSize.width(), imageSize.height()), styleColorSpace, compositeOp);
ImageCairoWin.cpp 87 draw(&gc, FloatRect(0.0f, 0.0f, bmpInfo.bmWidth, bmpInfo.bmHeight), FloatRect(0.0f, 0.0f, imageSize.width(), imageSize.height()), ColorSpaceDeviceRGB, CompositeCopy);
103 draw(ctxt, dstRect, FloatRect(0.0f, 0.0f, srcSize.width(), srcSize.height()), ColorSpaceDeviceRGB, compositeOp);
111 draw(ctxt, dstRect, FloatRect(0.0f, 0.0f, imageSize.width(), imageSize.height()), ColorSpaceDeviceRGB, compositeOp);
  /external/webkit/Source/WebKit/android/
RenderSkinButton.cpp 79 LOGE("RenderSkinButton::decode: button assets failed to decode\n\tWebView buttons will not draw");
86 void RenderSkinButton::draw(SkCanvas* canvas, const IntRect& r, function in class:WebCore::RenderSkinButton
93 // and webkit will still draw the label and layout space for us.
  /external/webkit/Source/WebKit/android/jni/
WebFrameView.cpp 57 void WebFrameView::draw(WebCore::GraphicsContext* ctx, const WebCore::IntRect& rect) { function in class:android::WebFrameView
61 // We only do this if there is nothing else to draw.
63 // double-draw (slow)
  /frameworks/base/core/jni/android/graphics/
Picture.cpp 54 static void draw(JNIEnv* env, jobject, SkCanvas* canvas, function in class:android::SkPictureGlue
58 picture->draw(canvas);
106 {"nativeDraw", "(II)V", (void*) SkPictureGlue::draw},
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 27 * The rounded rectangle can be drawn to a Canvas with its own draw() method,
37 private Path mPath; // this is what we actually draw
77 public void draw(Canvas canvas, Paint paint) { method in class:RoundRectShape
  /packages/apps/Browser/src/com/android/browser/view/
BasePieView.java 108 * this will be called before the first draw call
120 public abstract void draw(Canvas canvas); method in class:BasePieView
125 view.draw(canvas);
  /packages/apps/Contacts/src/com/android/contacts/
TabStripView.java 73 // Always draw the selected tab last, so that drop shadows are drawn
119 mBottomLeftStrip.draw(canvas);
120 mBottomRightStrip.draw(canvas);
  /packages/apps/Email/src/com/android/email/activity/
MessageListItem.java 350 public void draw(Canvas canvas) { method in class:MessageListItem
351 // Update the background, before View.draw() draws it.
354 super.draw(canvas);
367 // Draw the color chip indicating the mailbox this belongs to
378 // Draw the checkbox
382 // Draw the sender name
390 // Draw the reply state. Draw nothing if neither replied nor forwarded.
409 mSubjectLayout.draw(canvas);
412 // Draw the dat
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ManageCacheDrawer.java 58 public void draw(GLCanvas canvas, Texture content, int width, method in class:ManageCacheDrawer
108 icon.draw(canvas, x, y, w, h);
116 mCachingText.draw(canvas, x, y);
  /external/skia/gpu/include/
GrDrawTarget.h 60 * a single draw call when performing edge antialiasing. This is used for
105 * The DrawTarget may reserve some of the high bits of the stencil. The draw
110 * @return the number of bits usable by the draw target client.
122 * Sets the stencil settings to use for the next draw.
361 * Sets color for next draw to a premultiplied-alpha color.
373 * Sets the color to be used for the next draw to be
382 * @param face the face(s) to draw.
409 * @return the current draw face(s).
486 * Saves the current draw state. The state can be restored at a later time
496 * Restores previously saved draw state. The client guarantees that stat
    [all...]
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLRoot.cpp 162 // draw top
164 // draw from top left corner to bottom point of radical
166 // draw from bottom point to top of left part of radical base "pocket"
168 // draw to end
175 // Build a mask to draw the thick part of the root.
185 // Draw the thick part of the root.
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
NinePatch_Delegate.java 161 draw(canvas_instance, method
170 draw(canvas_instance, method
183 private static void draw(int canvas_instance, method in class:NinePatch_Delegate
217 canvas_delegate.getSnapshot().draw(new GcSnapshot.Drawable() {
218 public void draw(Graphics2D graphics, Paint_Delegate paint) {
219 chunkObject.draw(bitmap_delegate.getImage(), graphics,
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
NumericSprite.java 67 public void draw(GL10 gl, float x, float y, method in class:NumericSprite
74 mLabelMaker.draw(gl, x, y, mLabelId[digit]);
  /development/samples/BrowserPlugin/jni/form/
FormPlugin.cpp 127 draw(canvas);
131 void FormPlugin::draw(ANPCanvas* canvas) { function in class:FormPlugin
143 // draw the username box (5 px from the top edge)
151 // draw the password box (5 px from the bottom edge)
191 // draw circles instead of the actual text
207 switch (evt->data.draw.model) {
209 drawPlugin(evt->data.draw.data.bitmap, evt->data.draw.clip);
  /development/samples/LunarLander/src/com/example/android/lunarlander/
LunarView.java 43 * updatePhysics() advances the physics based on realtime. draw() renders the
44 * ship, and does an invalidate() to prompt another draw() as soon as possible
127 /** What to draw for the Lander when it has crashed */
145 /** What to draw for the Lander when the engine is firing */
175 /** What to draw for the Lander in its normal state */
184 /** Paint to draw the lines on screen. */
196 /** Indicate whether the surface has been created & is ready to draw */
231 // we don't need to transform it and it's faster to draw this way
612 // Draw the background image. Operations on the Canvas accumulate
619 // Draw the fuel gaug
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/EGL/
EglContext.cpp 65 void EglContext::setSurfaces(SurfacePtr read,SurfacePtr draw)
68 m_draw = draw;
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
JoystickView.java 68 mJoystickBackground.draw(canvas);
75 indicator.draw(canvas);

Completed in 759 milliseconds

1 2 3 4 5 67 8 91011>>