OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_frames
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptCallStack.cpp
45
m_frames
.swap(frames);
54
ASSERT(
m_frames
.size() > index);
55
return
m_frames
[index];
60
return
m_frames
.size();
68
size_t frameCount = o->
m_frames
.size();
69
if (frameCount !=
m_frames
.size())
73
if (!
m_frames
[i].isEqual(o->
m_frames
[i]))
83
for (size_t i = 0; i <
m_frames
.size(); i++)
84
frames->addItem(
m_frames
.at(i).buildInspectorObject())
[
all
...]
ScriptCallStack.h
60
Vector<ScriptCallFrame>
m_frames
;
member in class:WebCore::ScriptCallStack
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
BitmapImage.cpp
46
,
m_frames
(0)
70
,
m_frames
(0)
90
m_frames
.grow(1);
91
m_frames
[0].m_hasAlpha = !nativeImage->bitmap().isOpaque();
92
m_frames
[0].m_frame = nativeImage;
93
m_frames
[0].m_haveMetadata = true;
116
for (size_t i = 0; i <
m_frames
.size(); ++i) {
120
m_frames
[i].clear(false);
132
for (size_t i = 0; i <
m_frames
.size(); ++i)
133
allFrameBytes +=
m_frames
[i].m_frameBytes
[
all
...]
BitmapImage.h
117
// Called before accessing
m_frames
[index]. Returns false on index out of bounds.
172
Vector<FrameData, 1>
m_frames
; // An array of the cached frames of the animation. We have to ref frames to pin them in the cache.
member in class:WebCore::BitmapImage
/external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/
GIFImageReader.h
307
if (
m_frames
.isEmpty())
312
// FIXME: This extra complexity is not necessary and we should just report
m_frames
.size().
313
return
m_frames
.last()->isHeaderDefined() ?
m_frames
.size() :
m_frames
.size() - 1;
324
return index <
m_frames
.size() ?
m_frames
[index].get() : 0;
329
void clearDecodeState(size_t index) {
m_frames
[index]->clearDecodeState(); }
343
return
m_frames
.isEmpty() || (
m_frames
.size() == 1u && !m_frames[0]->isComplete())
361
Vector<OwnPtr<GIFFrameContext> >
m_frames
;
member in class:GIFImageReader
[
all
...]
GIFImageReader.cpp
378
GIFFrameContext* currentFrame =
m_frames
[frameIndex].get();
418
ASSERT(!
m_frames
.isEmpty());
420
m_frames
.last()->addLzwBlock(currentComponentPosition, m_bytesToConsume);
425
ASSERT(!
m_frames
.isEmpty());
426
m_frames
.last()->setDataSize(*currentComponent);
550
GIFFrameContext* currentFrame =
m_frames
.last().get();
673
GIFFrameContext* currentFrame =
m_frames
.last().get();
706
ASSERT(!
m_frames
.isEmpty());
707
m_frames
.last()->localColorMap().setDefined();
718
ASSERT(!
m_frames
.isEmpty())
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/loader/archive/
MHTMLParser.cpp
129
m_frames
.append(archive);
135
m_frames
.append(subframe);
223
return
m_frames
.size();
228
return
m_frames
[index].get();
MHTMLParser.h
66
Vector<RefPtr<MHTMLArchive> >
m_frames
;
member in class:WebCore::MHTMLParser
/external/chromium_org/third_party/WebKit/Source/web/
WebPageSerializerImpl.cpp
469
m_frames
.append(m_specifiedWebFrameImpl);
475
for (int i = 0; i < static_cast<int>(
m_frames
.size()); ++i) {
476
WebFrameImpl* currentFrame =
m_frames
[i];
489
m_frames
.append(webFrame);
502
for (unsigned i = 0; i <
m_frames
.size(); ++i) {
503
WebFrameImpl* webFrame =
m_frames
[i];
WebPageSerializerImpl.h
115
Vector<WebFrameImpl*>
m_frames
;
member in class:WebKit::WebPageSerializerImpl
/external/libvpx/libwebm/
mkvparser.cpp
[
all
...]
mkvparser.hpp
118
Frame*
m_frames
;
member in class:mkvparser::Block
Completed in 457 milliseconds