/external/opencore/fileformats/mp4/parser/include/ |
impeg4file.h | 293 * @param bool& oIsProgressiveDownloadable - Set to true if the clip is 296 * @param uint32& metaDataSize - If the clip is progressive 303 * either way on whether a clip is progressive downloadable or not. 317 * @param bool& oIsProgressiveDownloadable - Set to true if the clip is 320 * @param uint32& metaDataSize - If the clip is progressive 327 * either way on whether a clip is progressive downloadable or not.
|
/external/sonivox/docs/ |
JET_Programming_Manual.html | 712 moment the game event occurs might result in a music clip starting in the
713 middle. Alternatively, a clip could be started from the beginning, but then it
718 <p class=MsoNormal>However, with the JET sync engine, a clip can be started at
721 w:st="on">MIDI</st1:place> event in the stream signifies the start of a clip
722 and a second event signifies the end of a clip. When the application calls the
723 JET clip function, the next clip in the track is allowed to play fully
[all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
ScreenViewer.java | 257 private final Rectangle clip = new Rectangle(); field in class:ScreenViewer.LoupeViewer 334 g.getClipBounds(clip); 336 g.drawImage(grid, clip.x - clip.x % zoom, clip.y - clip.y % zoom, null);
|
/external/quake/quake/src/WinQuake/ |
sv_phys.cpp | 38 solid_edge items only clip against bsp models. 220 The basic solid body movement clip that slides along multiple planes 318 // modify original_velocity so it parallels all of the clip planes 341 // Con_Printf ("clip velocity, numplanes == %i\n",numplanes); 418 // only clip against bmodels 906 int clip; local 933 clip = SV_FlyMove (ent, 0.1, &steptrace); 939 return clip; 963 int clip; local 976 clip = SV_FlyMove (ent, host_frametime, &steptrace) [all...] |
/external/skia/src/core/ |
SkDraw.cpp | 294 in the clip, we don't have to worry about antialiasing. 329 const SkRegion* clip); 448 const SkMatrix* matrix, const SkRegion* clip) { 456 fClip = clip; 471 fClip = clip; 707 const SkRegion* clip = fClip; local 714 SkScan::AntiFillRect(devRect, clip, blitter); 716 SkScan::FillRect(devRect, clip, blitter); 720 SkScan::AntiHairRect(devRect, clip, blitter); 722 SkScan::HairRect(devRect, clip, blitter) [all...] |
/external/opencore/codecs_v2/video/avc_h264/enc/src/ |
motion_comp.cpp | 382 /* 3/4 pel, no need to clip */ 394 /* 3/4 pel, no need to clip */ 407 /* 3/4 pel, no need to clip */ 420 /* 3/4 pel, no need to clip */ 599 /* 3/4 pel, no need to clip */ 613 /* 3/4 pel, no need to clip */ 628 /* 3/4 pel, no need to clip */ 643 /* 3/4 pel, no need to clip */ 862 /* clip */ [all...] |
/external/opencore/fileformats/mp3/parser/src/ |
imp3ff.cpp | 176 // Parse the mp3 clip 180 // not enough data was available to parse the clip 185 // some other error occured while parsing the clip. 194 // parsing of clip was successful, id3 frames can now be fetched 844 // clip duration is made here. currently complete file is scanned 845 // when compute flag is not present , Compute clip duration by default [all...] |
/external/webkit/WebCore/rendering/style/ |
RenderStyle.h | 431 Length clipLeft() const { return visual->clip.left(); } 432 Length clipRight() const { return visual->clip.right(); } 433 Length clipTop() const { return visual->clip.top(); } 434 Length clipBottom() const { return visual->clip.bottom(); } 435 LengthBox clip() const { return visual->clip; } function in class:WebCore::RenderStyle [all...] |
RenderStyle.cpp | 479 visual->clip != other->visual->clip || visual->hasClip != other->visual->hasClip) 533 data->clip.m_top = top; 534 data->clip.m_right = right; 535 data->clip.m_bottom = bottom; 536 data->clip.m_left = left; [all...] |
/frameworks/base/awt/java/awt/ |
Graphics.java | 58 * specified clip area. The new clip area is the rectangle defined by the 269 Shape clip = getClip(); local 271 if (clip != null) { 273 Rectangle b = clip.getBounds(); 874 * @param clip 877 public abstract void setClip(Shape clip); [all...] |
/external/webkit/WebCore/inspector/front-end/ |
SourceCSSTokenizer.re2js | 48 "background", "background-attachment", "background-clip", "background-color", "background-image", 56 "border-top-width", "border-width", "bottom", "caption-side", "clear", "clip", "color", "content", 74 "-webkit-background-clip", "-webkit-background-composite", "-webkit-background-origin", "-webkit-background-size", 86 "-webkit-mask-box-image", "-webkit-mask-clip", "-webkit-mask-composite", "-webkit-mask-image", 106 "clear", "clip", "close-quote", "col-resize", "collapse", "compact", "condensed", "contain", "content", "content-box", "context-menu",
|
/external/opencore/fileformats/rawgsmamr/parser/include/ |
amrfileparser.h | 232 * @brief Retrieves clip information: file size, format(WMF or IF2) and frame_type(bitrate) 370 * @brief Opens the specified clip and performs initialization of the parser 382 * @brief Retrieves information about the clip such as bit rate, sampling frequency, etc.
|
/external/opencore/pvmi/pvmf/include/ |
pvmi_data_stream_interface.h | 404 * Sets the content length, if known, of the media clip 408 * @param aLength length of clip in bytes 417 * Returns the content length, if known, of the media clip
|
pvmf_return_codes.h | 295 Notification that a clip transition has occurred while playing a playlist 368 Notification for clip bitrate in shoutcast session
|
/external/skia/src/animator/ |
SkDisplayType.cpp | 117 CASE_DRAW_NEW(Clip); 272 CASE_GET_DRAW_INFO(Clip); 439 DRAW_NAME("clip", SkType_Clip),
|
/external/webkit/WebCore/platform/graphics/ |
GraphicsContext.h | 271 void clip(const FloatRect&); 325 void clip(const Path&); 327 // This clip function is used only by <canvas> code. It allows
|
/external/webkit/WebCore/platform/graphics/android/ |
PathAndroid.cpp | 80 SkRegion rgn, clip; local 84 clip.setRect(x, y, x + 1, y + 1); 89 bool contains = rgn.setPath(*m_path, clip);
|
/external/webkit/WebCore/platform/graphics/win/ |
WKCACFLayer.cpp | 224 // It's important to get the clip from the context, because it may be significantly 227 IntRect clip(enclosingIntRect(clipBounds)); 228 m_owner->paintGraphicsLayerContents(graphicsContext, clip);
|
/external/webkit/WebCore/platform/graphics/wx/ |
GraphicsContextWx.cpp | 286 void GraphicsContext::clip(const FloatRect& r) function in class:WebCore::GraphicsContext 347 void GraphicsContext::clip(const Path&) function in class:WebCore::GraphicsContext 354 clip(path);
|
/external/webkit/WebKit/android/nav/ |
CachedNode.cpp | 51 bool CachedNode::Clip(const WebCore::IntRect& outer, WebCore::IntRect* inner, 79 bool CachedNode::clip(const WebCore::IntRect& bounds) function in class:android::CachedNode 81 return Clip(bounds, &mBounds, &mCursorRing);
|
/external/webkit/WebKit/chromium/src/ |
WebPluginContainerImpl.cpp | 122 // Get our clip rect and intersect with it to ensure we don't invalidate 409 // Calculate a clip-rect so that we don't overlap the scrollbars, etc. 428 // Take our element and get the clip rect from the enclosing layer and
|
/external/webkit/WebKit/qt/Api/ |
qwebframe.cpp | 299 void QWebFramePrivate::renderContentsLayerAbsoluteCoords(GraphicsContext* context, const QRegion& clip) 304 QVector<QRect> vector = clip.rects(); 327 void QWebFramePrivate::renderRelativeCoords(GraphicsContext* context, QWebFrame::RenderLayer layer, const QRegion& clip) 332 QVector<QRect> vector = clip.rects(); 363 context->clip(view->visibleContentRect()); [all...] |
/external/webkit/WebCore/platform/graphics/cairo/ |
GraphicsContextCairo.cpp | 585 void GraphicsContext::clip(const FloatRect& rect) function in class:WebCore::GraphicsContext 596 m_data->clip(rect); 810 clip(rect); 1064 void GraphicsContext::clip(const Path& path) function in class:WebCore::GraphicsContext 1077 m_data->clip(path); 1082 clip(path); [all...] |
/external/webkit/WebCore/platform/graphics/qt/ |
GraphicsContextQt.cpp | 675 void GraphicsContext::clip(const FloatRect& rect) function in class:WebCore::GraphicsContext 800 QRectF clip = p->clipPath().boundingRect(); local 801 QRectF deviceClip = p->transform().mapRect(clip); 929 void GraphicsContext::clip(const Path& path) function in class:WebCore::GraphicsContext 939 clip(path); 1067 clip(rect); [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/ |
riva_mmio.h | 102 * Scissor clip rectangle. 398 RivaClip *Clip;
|