HomeSort by relevance Sort by last modified time
    Searched defs:clip (Results 1 - 25 of 250) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/icu/source/samples/layout/
Surface.cpp 18 RECT clip; local
20 clip.top = 0;
21 clip.left = 0;
22 clip.bottom = height;
23 clip.right = width;
27 ExtTextOut(fHdc, x, y - fAscent, ETO_CLIPPED | ETO_GLYPH_INDEX, &clip,
  /external/icu/icu4c/source/samples/layout/
Surface.cpp 18 RECT clip; local
20 clip.top = 0;
21 clip.left = 0;
22 clip.bottom = height;
23 clip.right = width;
27 ExtTextOut(fHdc, x, y - fAscent, ETO_CLIPPED | ETO_GLYPH_INDEX, &clip,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_clip_state.c 41 struct brw_clip_unit_state *clip; local
43 clip = brw_state_batch(brw, AUB_TRACE_CLIP_STATE,
44 sizeof(*clip), 32, &brw->clip.state_offset);
45 memset(clip, 0, sizeof(*clip));
48 clip->thread0.grf_reg_count = (ALIGN(brw->clip.prog_data->total_grf, 16) /
50 clip->thread0.kernel_start_pointer =
52 brw->clip.state_offset
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_clip.c 42 /* Second state atom for user clip planes:
46 struct pipe_clip_state clip; local
50 STATIC_ASSERT(sizeof(clip.ucp) <= sizeof(ctx->Transform._ClipUserPlane));
52 /* if we have a vertex shader that writes clip vertex we need to pass
59 memcpy(clip.ucp,
61 : ctx->Transform._ClipUserPlane, sizeof(clip.ucp));
62 st->state.clip = clip;
63 cso_set_clip(st->cso_context, &clip);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_clip_state.c 41 struct brw_clip_unit_state *clip; local
43 clip = brw_state_batch(brw, AUB_TRACE_CLIP_STATE,
44 sizeof(*clip), 32, &brw->clip.state_offset);
45 memset(clip, 0, sizeof(*clip));
48 clip->thread0.grf_reg_count = (ALIGN(brw->clip.prog_data->total_grf, 16) /
50 clip->thread0.kernel_start_pointer =
52 brw->clip.state_offset
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_clip.c 42 /* Second state atom for user clip planes:
46 struct pipe_clip_state clip; local
50 STATIC_ASSERT(sizeof(clip.ucp) <= sizeof(ctx->Transform._ClipUserPlane));
52 /* if we have a vertex shader that writes clip vertex we need to pass
59 memcpy(clip.ucp,
61 : ctx->Transform._ClipUserPlane, sizeof(clip.ucp));
62 st->state.clip = clip;
63 cso_set_clip(st->cso_context, &clip);
  /external/chromium_org/third_party/WebKit/Source/core/paint/
VideoPainter.cpp 35 bool clip = !contentRect.contains(rect); local
36 if (clip) {
38 context->clip(contentRect);
46 if (clip)
BackgroundImageGeometry.cpp 29 void BackgroundImageGeometry::clip(const IntRect& clipRect) function in class:blink::BackgroundImageGeometry
HTMLCanvasPainter.cpp 24 bool clip = !contentRect.contains(paintRect); local
25 if (clip) {
28 paintInfo.context->clip(pixelSnappedIntRect(contentRect));
47 if (clip)
  /external/chromium_org/ppapi/tests/
test_flash_fullscreen.cc 27 const pp::Rect& clip,
31 clip.point() == pp::Point(0, 0) &&
32 clip.size() == screen_size);
139 pp::Rect clip = view.GetClipRect(); local
140 if (fullscreen_pending_ && IsFullscreenView(position, clip, screen_size_)) {
144 !IsFullscreenView(position, clip, screen_size_)) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleVisualData.h 43 return clip == o.clip
50 LengthBox clip; member in class:blink::StyleVisualData
  /external/chromium_org/third_party/skia/tests/
FillPathTest.cpp 31 SkIRect clip; local
36 clip.set(0, height - expected_lines, width, height);
42 SkScan::FillPath(path, clip, &blitter);
  /external/skia/tests/
FillPathTest.cpp 31 SkIRect clip; local
36 clip.set(0, height - expected_lines, width, height);
42 SkScan::FillPath(path, clip, &blitter);
  /external/chromium_org/cc/trees/
layer_tree_host_pixeltest_masks.cc 106 // Clip to the top half of the green layer.
107 scoped_refptr<Layer> clip = Layer::Create(); local
108 clip->SetPosition(gfx::Point(0, 0));
109 clip->SetBounds(gfx::Size(200, 100));
110 clip->SetMasksToBounds(true);
111 background->AddChild(clip);
115 clip->AddChild(green);
170 // Clip to the bottom half of the green layer, and the left half of the
172 scoped_refptr<Layer> clip = Layer::Create(); local
173 clip->SetPosition(gfx::Point(0, 50))
245 scoped_refptr<Layer> clip = Layer::Create(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebScrollbarThemePainter.cpp 46 SkRect clip = SkRect::MakeXYWH(rect.x, rect.y, rect.width, rect.height); local
47 canvas->clipRect(clip);
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
soundclip.cc 40 : clip(c),
46 const void *clip; member in struct:cricket::PlaySoundMessageData
57 bool Soundclip::PlaySound(const void *clip,
60 PlaySoundMessageData data(clip, len, flags);
65 bool Soundclip::PlaySound_w(const void *clip,
68 return soundclip_media_->PlaySound(static_cast<const char *>(clip),
77 data->result = PlaySound_w(data->clip,
  /external/chromium_org/third_party/libwebp/dec/
quant.c 16 static WEBP_INLINE int clip(int v, int M) { function
91 m->y1_mat_[0] = kDcTable[clip(q + dqy1_dc, 127)];
92 m->y1_mat_[1] = kAcTable[clip(q + 0, 127)];
94 m->y2_mat_[0] = kDcTable[clip(q + dqy2_dc, 127)] * 2;
98 m->y2_mat_[1] = (kAcTable[clip(q + dqy2_ac, 127)] * 101581) >> 16;
101 m->uv_mat_[0] = kDcTable[clip(q + dquv_dc, 117)];
102 m->uv_mat_[1] = kAcTable[clip(q + dquv_ac, 127)];
  /external/chromium_org/third_party/libwebp/dsp/
yuv.c 20 static WEBP_INLINE uint8_t clip(int v, int max_value) { function
43 VP8kClip[i - YUV_RANGE_MIN] = clip(k, 255);
44 VP8kClip4Bits[i - YUV_RANGE_MIN] = clip((k + 8) >> 4, 15);
55 VP8kClip[i - YUV_RANGE_MIN] = clip(k, 255);
56 VP8kClip4Bits[i - YUV_RANGE_MIN] = clip((k + 8) >> 4, 15);
  /external/webp/src/dec/
quant.c 16 static WEBP_INLINE int clip(int v, int M) { function
91 m->y1_mat_[0] = kDcTable[clip(q + dqy1_dc, 127)];
92 m->y1_mat_[1] = kAcTable[clip(q + 0, 127)];
94 m->y2_mat_[0] = kDcTable[clip(q + dqy2_dc, 127)] * 2;
98 m->y2_mat_[1] = (kAcTable[clip(q + dqy2_ac, 127)] * 101581) >> 16;
101 m->uv_mat_[0] = kDcTable[clip(q + dquv_dc, 117)];
102 m->uv_mat_[1] = kAcTable[clip(q + dquv_ac, 127)];
  /external/webp/src/dsp/
yuv.c 20 static WEBP_INLINE uint8_t clip(int v, int max_value) { function
43 VP8kClip[i - YUV_RANGE_MIN] = clip(k, 255);
44 VP8kClip4Bits[i - YUV_RANGE_MIN] = clip((k + 8) >> 4, 15);
55 VP8kClip[i - YUV_RANGE_MIN] = clip(k, 255);
56 VP8kClip4Bits[i - YUV_RANGE_MIN] = clip((k + 8) >> 4, 15);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
gpclip.c 50 Word16 clip = 0; local
52 clip = 1;
54 return (clip);
  /frameworks/base/core/java/android/content/
ClipboardManager.java 80 * Defines a listener callback that is invoked when the primary clip on the clipboard changes.
91 * clip changes.
113 * Sets the current primary clip on the clipboard. This is the clip that
116 * @param clip The clipped data item to set.
118 public void setPrimaryClip(ClipData clip) {
120 if (clip != null) {
121 clip.prepareToLeaveProcess();
123 getService().setPrimaryClip(clip, mContext.getOpPackageName());
129 * Returns the current primary clip on the clipboard
193 ClipData clip = getPrimaryClip(); local
    [all...]
  /external/chromium_org/third_party/fuzzymatch/
fuzzymatch.c 126 BOX *clip = boxCreate(0, 0, clipwidth, clipheight); local
128 deltabinaryclipped = pixClipRectangle(deltabinary, clip, NULL);
129 boxDestroy(&clip);
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_vertex.c 44 GLvector4f clip; member in struct:vertex_stage_data
56 /* This function implements cliptesting for user-defined clip planes.
62 GLvector4f *clip, \
76 GLfloat *coord = (GLfloat *)clip->data; \
77 GLuint stride = clip->stride; \
78 GLuint count = clip->count; \
161 VB->ClipPtr = TransformRaw( &store->clip,
181 /* Cliptest and perspective divide. Clip functions must clear
245 _mesa_vector4f_alloc( &store->clip, 0, size, 32 );
252 !store->clip.data |
    [all...]
  /external/chromium_org/ui/gfx/
blit.cc 39 // Now we know the clip is a regular rectangle, make sure it covers the
164 // We expect all coords to be inside the canvas, so clip here.
165 gfx::Rect clip = gfx::IntersectRects( local
169 gfx::Rect dest_rect = gfx::IntersectRects(clip + offset, clip);

Completed in 4733 milliseconds

1 2 3 4 5 6 7 8 910