HomeSort by relevance Sort by last modified time
    Searched full:clip (Results 101 - 125 of 617) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/awt/org/apache/harmony/awt/gl/render/
JavaBlitter.java 85 MultiRectArea clip) {
89 sysxform, comp, bgcolor, clip);
100 sysxform, comp, bgcolor, clip);
107 Composite comp, Color bgcolor, MultiRectArea clip) {
119 width, height, comp, bgcolor, clip);
136 sysxform, comp, bgcolor, clip);
143 Color bgcolor, MultiRectArea clip) {
149 width, height, comp, bgcolor, clip);
156 MultiRectArea clip){
208 if(clip != null)
    [all...]
  /development/samples/BrowserPlugin/jni/audio/
AudioPlugin.cpp 191 void AudioPlugin::drawPlugin(const ANPBitmap& bitmap, const ANPRectI& clip) {
195 clipR.left = clip.left;
196 clipR.top = clip.top;
197 clipR.right = clip.right;
198 clipR.bottom = clip.bottom;
282 drawPlugin(evt->data.draw.data.bitmap, evt->data.draw.clip);
AudioPlugin.h 48 void drawPlugin(const ANPBitmap& bitmap, const ANPRectI& clip);
  /development/samples/BrowserPlugin/jni/form/
FormPlugin.cpp 117 void FormPlugin::drawPlugin(const ANPBitmap& bitmap, const ANPRectI& clip) {
121 clipR.left = clip.left;
122 clipR.top = clip.top;
123 clipR.right = clip.right;
124 clipR.bottom = clip.bottom;
209 drawPlugin(evt->data.draw.data.bitmap, evt->data.draw.clip);
FormPlugin.h 45 void drawPlugin(const ANPBitmap& bitmap, const ANPRectI& clip);
  /frameworks/base/docs/html/guide/topics/media/jet/
jetcreator_manual.jd 208 a track at the moment the game event occurs might result in a music clip
209 starting in the middle. Alternatively, a clip could be started from the
213 <p>However, with the JET sync engine, a clip
217 the start of a clip and a second event signifies the end of a clip. When the
218 application calls the JET clip function, the next clip in the track is allowed
1016 103 JET clip marker</p>
1023 <h2>6.1 JET Clip Marker (CC103)</h2>
1027 the JET_TriggerClip API call. The clip ID is encoded in the low 6 bits of th
    [all...]
  /external/opencore/nodes/common/include/
pvmf_download_data_source.h 43 OSCL_wString &iDownloadFileName; //local file name of the downloaded clip
111 OSCL_wString &iDownloadFileName; //local file name of the downloaded clip
  /external/skia/src/core/
SkBlitter_4444.cpp 338 void SkARGB4444_Blitter::blitMask(const SkMask& mask, const SkIRect& clip)
340 SkASSERT(mask.fBounds.contains(clip));
348 SkARGB4444_BlitBW(fDevice, mask, clip, fPMColor16);
350 SkARGB4444_BlendBW(fDevice, mask, clip, fPMColor16, 16 - fScale16);
355 int x = clip.fLeft;
356 int y = clip.fTop;
357 int width = clip.width();
358 int height = clip.height();
SkQuadClipper.cpp 34 void SkQuadClipper::setClip(const SkIRect& clip) {
36 fClip.set(clip);
  /external/skia/src/images/
SkFlipPixelRef.cpp 113 void SkFlipPixelRef::CopyBitsFromAddr(const SkBitmap& dst, const SkRegion& clip,
121 SkRegion::Cliperator iter(clip, bounds);
  /external/webkit/WebCore/rendering/
RenderSVGViewportContainer.cpp 67 paintInfo.context->clip(m_viewport);
119 // Respect the viewport clip (which is in parent coords)
  /external/webkit/WebKit/qt/Api/
qwebframe_p.h 85 void renderRelativeCoords(WebCore::GraphicsContext*, QWebFrame::RenderLayer, const QRegion& clip);
86 void renderContentsLayerAbsoluteCoords(WebCore::GraphicsContext*, const QRegion& clip);
  /frameworks/base/graphics/java/android/graphics/drawable/
ColorDrawable.java 30 * with respect to the clip region. Note that a ColorDrawable ignores the ColorFilter.
31 * It also ignores the Bounds, meaning it will draw everywhere in the current clip,
  /dalvik/vm/mterp/armv5te/
OP_DOUBLE_TO_INT.S 11 * We have to clip values to int min/max per the specification. The
OP_DOUBLE_TO_LONG.S 9 * We have to clip values to long min/max per the specification. The
  /dalvik/vm/mterp/armv6t2/
OP_DOUBLE_TO_INT.S 11 * We have to clip values to int min/max per the specification. The
OP_DOUBLE_TO_LONG.S 9 * We have to clip values to long min/max per the specification. The
  /development/samples/BrowserPlugin/jni/animation/
AnimationPlugin.h 38 void drawPlugin(const ANPBitmap& bitmap, const ANPRectI& clip);
  /development/samples/BrowserPlugin/jni/navigation/
NavigationPlugin.h 39 void drawPlugin(const ANPBitmap& bitmap, const ANPRectI& clip);
  /external/webkit/WebCore/css/
CSSPropertyNames.in 13 background-clip
54 clip
160 -webkit-background-clip
218 -webkit-mask-clip
  /external/webkit/WebCore/platform/graphics/cairo/
rgb24-hacks.txt 32 /* If we have a fallback mask clip set on the dst, we have
  /external/webkit/WebCore/platform/graphics/skia/
SkiaUtils.cpp 163 // Get the union of all visible rects in the clip that overlap our bitmap.
193 SkRegion clip; local
233 clip.setRect(x - 1, y - 1, x + 1, y + 1);
235 bool contains = rgn.setPath(*path, clip);
  /external/webkit/WebKit/android/nav/
CachedNode.h 94 static bool Clip(const WebCore::IntRect& outer, WebCore::IntRect* inner,
96 bool clip(const WebCore::IntRect& );
117 bool isNavable(const CachedFrame* frame, const WebCore::IntRect& clip) const {
118 return clip.intersects(bounds(frame));
  /frameworks/base/awt/com/android/internal/awt/
AwtFactory.java 34 * clip of the returned graphics object are the same as in the
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
AudioSystem.java 51 private final static String CLIP = "javax.sound.sampled.Clip"; //$NON-NLS-1$
207 if (Clip.class.isAssignableFrom(lineClass)) {
208 propName = CLIP;
267 if (CLIP.equals(propName)) {
269 return (Clip)(Class.forName("com.android.internal.sound.sampled.AndroidClip").newInstance());
280 public static Clip getClip() throws LineUnavailableException {
281 return (Clip) getLine(new Line.Info(Clip.class));
284 public static Clip getClip(Mixer.Info mixerInfo
    [all...]

Completed in 3665 milliseconds

1 2 3 45 6 7 8 91011>>