/external/chromium_org/third_party/skia/src/core/ |
SkScan.h | 35 static void FillRect(const SkRect& rect, const SkRasterClip& clip, 37 SkScan::FillXRect(*(const SkXRect*)&rect, clip, blitter); 39 static void AntiFillRect(const SkRect& rect, const SkRasterClip& clip, 41 SkScan::AntiFillXRect(*(const SkXRect*)&rect, clip, blitter); 68 static void FillIRect(const SkIRect&, const SkRegion* clip, SkBlitter*); 69 static void FillXRect(const SkXRect&, const SkRegion* clip, SkBlitter*); 71 static void FillRect(const SkRect& rect, const SkRegion* clip, 73 SkScan::FillXRect(*(const SkXRect*)&rect, clip, blitter); 75 static void AntiFillRect(const SkRect& rect, const SkRegion* clip, 77 SkScan::AntiFillXRect(*(const SkXRect*)&rect, clip, blitter) [all...] |
SkBlitBWMaskTemplate.h | 19 SK_BLITBWMASK_NAME name of function(const SkBitmap& bitmap, const SkMask& mask, const SkIRect& clip, SK_BLITBWMASK_ARGS) 26 static void SK_BLITBWMASK_NAME(const SkBitmap& bitmap, const SkMask& srcMask, const SkIRect& clip SK_BLITBWMASK_ARGS) 28 SkASSERT(clip.fRight <= srcMask.fBounds.fRight); 30 int cx = clip.fLeft; 31 int cy = clip.fTop; 35 unsigned height = clip.height(); 44 if (cx == maskLeft && clip.fRight == srcMask.fBounds.fRight) 61 int rite_edge = clip.fRight - maskLeft;
|
/external/skia/src/core/ |
SkScan.h | 35 static void FillRect(const SkRect& rect, const SkRasterClip& clip, 37 SkScan::FillXRect(*(const SkXRect*)&rect, clip, blitter); 39 static void AntiFillRect(const SkRect& rect, const SkRasterClip& clip, 41 SkScan::AntiFillXRect(*(const SkXRect*)&rect, clip, blitter); 68 static void FillIRect(const SkIRect&, const SkRegion* clip, SkBlitter*); 69 static void FillXRect(const SkXRect&, const SkRegion* clip, SkBlitter*); 71 static void FillRect(const SkRect& rect, const SkRegion* clip, 73 SkScan::FillXRect(*(const SkXRect*)&rect, clip, blitter); 75 static void AntiFillRect(const SkRect& rect, const SkRegion* clip, 77 SkScan::AntiFillXRect(*(const SkXRect*)&rect, clip, blitter) [all...] |
SkBlitBWMaskTemplate.h | 19 SK_BLITBWMASK_NAME name of function(const SkBitmap& bitmap, const SkMask& mask, const SkIRect& clip, SK_BLITBWMASK_ARGS) 26 static void SK_BLITBWMASK_NAME(const SkBitmap& bitmap, const SkMask& srcMask, const SkIRect& clip SK_BLITBWMASK_ARGS) 28 SkASSERT(clip.fRight <= srcMask.fBounds.fRight); 30 int cx = clip.fLeft; 31 int cy = clip.fTop; 35 unsigned height = clip.height(); 44 if (cx == maskLeft && clip.fRight == srcMask.fBounds.fRight) 61 int rite_edge = clip.fRight - maskLeft;
|
/frameworks/av/libvideoeditor/vss/common/inc/ |
M4VIFI_Defines.h | 33 #define Y16(r, g, b) CLIP( ( ( (80593 * r)+(77855 * g)+(30728 * b)) >> 15)) 34 #define U16(r, g, b) CLIP(128+ ( ( -(45483 * r)-(43936 * g)+(134771 * b)) >> 15 )) 35 #define V16(r, g, b) CLIP(128+ ( ( (134771 * r)-(55532 * g)-(21917 * b)) >> 15 )) 52 Rx = CLIP(((Yx37 + (Vx * 51) + 16) >> 5) - 223); \ 53 Gx = CLIP(((Yx37 - ((Ux+(Vx<<1)) * 13) +16) >> 5) + 135); \ 54 Bx = CLIP(((Yx37 + (Ux * 65) + 16) >> 5) - 277) 57 Rx = CLIP(((Yx2568 + (Vx * 0x3343) + (M4VIFI_Int32)0xffe40800) >> 13)); \ 58 Gx = CLIP(((Yx2568 - (Ux * 0x0c92) - (Vx * 0x1a1e) + (M4VIFI_Int32)0x00110180) >> 13)); \ 59 Bx = CLIP(((Yx2568 + (Ux * 0x40cf) + (M4VIFI_Int32)0xffdd4200) >> 13)); 103 #define Y24(r,g,b) CLIP(( ( (19595 * r) + (38470 * g) + (9437 * b) ) >>16) [all...] |
/frameworks/native/opengl/libagl/ |
vertex.cpp | 52 // Divides a vertex clip coordinates by W 56 // [x,y,z]window = vpt * ([x,y,z]clip / clip.w) 69 const int32_t rw = gglRecip28(v->clip.w); 72 v->window.x = gglMulAddx(gglMulx(v->clip.x, rw, 16), m[ 0], m[12], 28); 73 v->window.y = gglMulAddx(gglMulx(v->clip.y, rw, 16), m[ 5], m[13], 28); 77 v->window.z = gglMulAddx(gglMulx(v->clip.z, rw, 16), m[10], m[14], 28); 85 // ndc = clip / W 88 // clip to the view-volume 89 uint32_t clip = v->flags & vertex_t::CLIP_ALL local 118 uint32_t clip = 0; local [all...] |
/frameworks/base/core/java/android/content/ |
ClipDescription.java | 39 * The MIME type for a clip holding plain text. 44 * The MIME type for a clip holding HTML text. 49 * The MIME type for a clip holding one or more URIs. This should be 58 * The MIME type for a clip holding an Intent. 66 * Create a new clip. 68 * @param label Label to show to the user describing this clip. 114 * Return the label for this clip. 121 * Check whether the clip description contains the given MIME type. 124 * @return Returns true if one of the MIME types in the clip description 137 * Filter the clip description MIME types by the given MIME type. Return [all...] |
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
ClipboardTest.java | 71 final ClipData clip = clipboardManager.getPrimaryClip(); local 72 assertEquals(EXPECTED_TEXT_RESULT, clip.getItemAt(0).coerceToText(getActivity())); 76 String htmlText = clip.getItemAt(0).getHtmlText(); 87 // Returns whether there is a primary clip with content on the current clipboard. 89 final ClipData clip = clipboardManager.getPrimaryClip(); local 90 if (clip != null && clip.getItemCount() > 0) { 91 return !TextUtils.isEmpty(clip.getItemAt(0).getText());
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
SVGCSSPropertyNames.in | 7 clip-path 8 clip-rule
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/ |
nvc0_program.h | 39 uint32_t clip_mode; /* clip/cull selection */ 40 uint8_t clip_enable; /* mask of defined clip planes */
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_program.h | 39 uint32_t clip_mode; /* clip/cull selection */ 40 uint8_t clip_enable; /* mask of defined clip planes */
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_SetClipRect.3 | 11 Sets the clipping rectangle for a surface\&. When this surface is the destination of a blit, only the area within the clip rectangle will be drawn into\&. 13 The rectangle pointed to by \fBrect\fR will be clipped to the edges of the surface so that the clip rectangle for a surface can never fall outside the edges of the surface\&.
|
SDL_FillRect.3 | 15 If there is a clip rectangle set on the destination (set via \fISDL_SetClipRect\fR) then this function will clip based on the intersection of the clip rectangle and the \fBdstrect\fR rectangle and the dstrect rectangle will be modified to represent the area actually filled\&.
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDrawClip.h | 21 DECLARE_DRAW_MEMBER_INFO(Clip);
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrClipMaskCache.cpp | 14 // We need an initial frame to capture the clip state prior to
|
/external/pixman/demos/ |
Makefile.am | 13 clip-test \ 14 clip-in \ 36 clip_test_SOURCES = clip-test.c $(GTK_UTILS) 37 clip_in_SOURCES = clip-in.c $(GTK_UTILS)
|
/external/skia/src/animator/ |
SkDrawClip.h | 21 DECLARE_DRAW_MEMBER_INFO(Clip);
|
/external/skia/src/gpu/ |
GrClipMaskCache.cpp | 14 // We need an initial frame to capture the clip state prior to
|
/frameworks/base/core/res/res/drawable/ |
progress_horizontal.xml | 33 <clip> 44 </clip> 48 <clip> 59 </clip>
|
/packages/apps/MusicFX/res/drawable/ |
progress_vertical.xml | 33 <clip> 44 </clip> 48 <clip 61 </clip>
|
/frameworks/av/libvideoeditor/vss/inc/ |
M4VSS3GPP_InternalFunctions.h | 69 * @brief One step of audio processing for the MP3 clip 78 * @brief Open next clip 106 * @brief Do what to do when the end of a clip video track is reached 107 * @note If there is audio on the current clip, process it, else switch to the next clip 116 * @brief Do what to do when the end of a clip audio track is reached 125 * @brief Check if the clip is compatible with VSS editing 127 * @param pClipCtxt (IN) internal clip context 138 * @brief Open a clip. Creates a clip context [all...] |
/external/chromium_org/chrome/browser/thumbnails/ |
thumbnailing_context.h | 24 // Wider than tall by twice or more, clip horizontally. 26 // Wider than tall, clip horizontally. 28 // Taller than wide, clip vertically.
|
/external/chromium_org/chrome/test/functional/media/ |
audio_latency_perf.py | 8 Benchmark measuring how fast we can continuously repeat a short sound clip. In 10 beginning of the clip, and resuming audio playback. 13 a clip 50 times and the ideal duration of all playbacks is 1000ms and the total
|
/external/skia/tests/ |
FillPathTest.cpp | 32 SkIRect clip; local 37 clip.set(0, height - expected_lines, width, height); 43 SkScan::FillPath(path, clip, &blitter);
|
/packages/apps/Music/res/drawable/ |
progress_horizontal.xml | 30 <clip android:drawable="@drawable/panel_now_playing_progress_bg"/> 38 <clip> 46 </clip>
|