/external/webkit/Source/WebCore/platform/graphics/ |
D | BitmapImage.cpp | 49 , m_frames(0) in BitmapImage() 79 const size_t clearBeforeFrame = destroyAll ? m_frames.size() : m_currentFrame; in destroyDecodedData() 84 if (m_frames[i].clear(false)) in destroyDecodedData() 99 if (m_frames.size() * frameBytes(m_size) > cLargeAnimationCutoff) in destroyDecodedDataIfNecessary() 124 if (m_frames.size() < numFrames) in cacheFrame() 125 m_frames.grow(numFrames); in cacheFrame() 127 m_frames[index].m_frame = m_source.createFrameAtIndex(index); in cacheFrame() 128 if (numFrames == 1 && m_frames[index].m_frame) in cacheFrame() 131 m_frames[index].m_haveMetadata = true; in cacheFrame() 132 m_frames[index].m_isComplete = m_source.frameIsCompleteAtIndex(index); in cacheFrame() [all …]
|
D | BitmapImage.h | 272 …Vector<FrameData> m_frames; // An array of the cached frames of the animation. We have to ref fram…
|
/external/webkit/Source/WebCore/inspector/ |
D | ScriptCallStack.cpp | 45 m_frames.swap(frames); in ScriptCallStack() 54 ASSERT(m_frames.size() > index); in at() 55 return m_frames[index]; in at() 60 return m_frames.size(); in size() 68 size_t frameCount = o->m_frames.size(); in isEqual() 69 if (frameCount != m_frames.size()) in isEqual() 73 if (!m_frames[i].isEqual(o->m_frames[i])) in isEqual() 84 for (size_t i = 0; i < m_frames.size(); i++) in buildInspectorArray() 85 frames->pushObject(m_frames.at(i).buildInspectorObject()); in buildInspectorArray()
|
D | ScriptCallStack.h | 60 Vector<ScriptCallFrame> m_frames; variable
|
/external/webkit/Tools/QtTestBrowser/ |
D | fpstimer.cpp | 50 for (int i = m_frames.length() - 1; i >= 0; --i, ++count) { in numFrames() 51 int msecs = m_frames[i].msecsTo(now); in numFrames() 70 m_frames.clear(); in stop() 77 m_frames.append(QTime::currentTime()); in timerEvent() 78 if (m_frames.length() > MAX_FRAMES_SAVED) in timerEvent() 79 m_frames.erase(m_frames.begin(), m_frames.begin() + FRAMES_TO_PURGE_WHEN_FULL); in timerEvent()
|
D | fpstimer.h | 51 QList<QTime> m_frames; variable
|
/external/webkit/Source/WebKit/android/wds/ |
D | DebugServer.h | 54 m_frames.append(frame); in addFrame() 57 size_t i = m_frames.find(frame); in removeFrame() 59 m_frames.remove(i); in removeFrame() 62 if (idx < m_frames.size()) in getFrame() 63 return m_frames.at(idx); in getFrame() 68 WTF::Vector<Frame*> m_frames; variable
|
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
D | ImageOpenVG.cpp | 57 , m_frames(1) in BitmapImage() 80 m_frames[0].m_frame = tiledImage; in BitmapImage() 81 m_frames[0].m_hasAlpha = true; in BitmapImage() 82 m_frames[0].m_isComplete = true; in BitmapImage() 83 m_frames[0].m_haveMetadata = true; in BitmapImage()
|
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
D | ImageCairo.cpp | 65 , m_frames(0) in BitmapImage() 89 m_frames.grow(1); in BitmapImage() 90 m_frames[0].m_frame = surface; in BitmapImage() 91 m_frames[0].m_hasAlpha = cairo_surface_get_content(surface) != CAIRO_CONTENT_COLOR; in BitmapImage() 92 m_frames[0].m_haveMetadata = true; in BitmapImage()
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | ImageQt.cpp | 166 , m_frames(0) in BitmapImage() 188 m_frames.grow(1); in BitmapImage() 189 m_frames[0].m_frame = pixmap; in BitmapImage() 190 m_frames[0].m_hasAlpha = pixmap->hasAlpha(); in BitmapImage() 191 m_frames[0].m_haveMetadata = true; in BitmapImage()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebPageSerializerImpl.cpp | 469 m_frames.append(m_specifiedWebFrameImpl); in collectTargetFrames() 475 for (int i = 0; i < static_cast<int>(m_frames.size()); ++i) { in collectTargetFrames() 476 WebFrameImpl* currentFrame = m_frames[i]; in collectTargetFrames() 488 m_frames.append(webFrame); in collectTargetFrames() 501 for (unsigned i = 0; i < m_frames.size(); ++i) { in serialize() 502 WebFrameImpl* webFrame = m_frames[i]; in serialize()
|
D | WebPageSerializerImpl.h | 112 Vector<WebFrameImpl*> m_frames; variable
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
D | ImageCG.cpp | 71 , m_frames(0) in BitmapImage() 93 m_frames.grow(1); in BitmapImage() 94 m_frames[0].m_frame = cgImage; in BitmapImage() 95 m_frames[0].m_hasAlpha = true; in BitmapImage() 96 m_frames[0].m_haveMetadata = true; in BitmapImage()
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
D | ImageAndroid.cpp | 78 , m_frames(0) in BitmapImage() 96 m_frames.grow(1); in BitmapImage() 97 m_frames[0].m_frame = ref; in BitmapImage() 98 m_frames[0].m_hasAlpha = !ref->bitmap().isOpaque(); in BitmapImage()
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
D | ImageMac.mm | 48 if (m_frames.size() != 1)
|
/external/libvpx/libwebm/ |
D | mkvparser.cpp | 8177 m_frames(NULL), in Block() 8185 delete[] m_frames; in ~Block() 8195 assert(m_frames == NULL); in Parse() 8252 m_frames = new Frame[m_frame_count]; in Parse() 8254 Frame& f = m_frames[0]; in Parse() 8282 m_frames = new Frame[m_frame_count]; in Parse() 8283 assert(m_frames); in Parse() 8287 Frame* pf = m_frames; in Parse() 8352 pf = m_frames; in Parse() 8376 Frame* pf = m_frames; in Parse() [all …]
|
D | mkvparser.hpp | 118 Frame* m_frames; member in mkvparser::Block
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2002-12-03 | 5421 to be sent for frames in m_frames. The fix is to use actual slot/signal 8215 (KHTMLPart::clear): Head in the direction of using the m_frames and 8227 (KWQKHTMLPartImpl::requestFrame): Set up a ChildFrame in the m_frames array.
|
D | ChangeLog-2003-10-25 | 5776 m_frames list so it's not accidentally reused, since our naming scheme gives frames in
|
D | ChangeLog-2006-05-10 | 22464 syntax. Removed unused m_frames. Changed m_doc and m_typingStyle to use
|
D | ChangeLog | 26064 …::BitmapImage::getFirstCGImageRefOfSize): Call frameCount() instead of accessing m_frames.size() to
|