HomeSort by relevance Sort by last modified time
    Searched refs:m_frames (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptCallStack.cpp 46 m_frames.swap(frames);
51 ASSERT(m_frames.size() > index);
52 return m_frames[index];
57 return m_frames.size();
63 for (size_t i = 0; i < m_frames.size(); i++)
64 frames->addItem(m_frames.at(i).buildInspectorObject());
ScriptCallStack.h 60 Vector<ScriptCallFrame> m_frames; member in class:WebCore::ScriptCallStack
  /external/lldb/source/Plugins/Process/Utility/
UnwindLLDB.cpp 28 m_frames(),
52 if ((m_frames.size() % FRAME_COUNT) == 0)
66 return m_frames.size ();
72 if (m_frames.size() > 0)
96 m_frames.push_back (first_cursor_sp);
103 // For adding a non-zero stack frame to m_frames.
115 if (m_frames.size() == 0)
118 uint32_t cur_idx = m_frames.size ();
120 m_frames[cur_idx - 1]->reg_ctx_lldb_sp,
188 if (!m_frames.empty()
    [all...]
UnwindLLDB.h 65 m_frames.clear();
87 // Iterate over the RegisterContextLLDB's in our m_frames vector, look for the first one that
108 std::vector<CursorSP> m_frames; member in class:lldb_private::UnwindLLDB
109 bool m_unwind_complete; // If this is true, we've enumerated all the frames in the stack, and m_frames.size() is the
110 // number of frames, etc. Otherwise we've only gone as far as directly asked, and m_frames.size()
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
BitmapImage.cpp 47 , m_frames(0)
69 , m_frames(0)
87 m_frames.grow(1);
88 m_frames[0].m_hasAlpha = !nativeImage->bitmap().isOpaque();
89 m_frames[0].m_frame = nativeImage;
90 m_frames[0].m_haveMetadata = true;
107 for (size_t i = 0; i < m_frames.size(); ++i) {
111 m_frames[i].clear(false);
123 for (size_t i = 0; i < m_frames.size(); ++i)
124 allFrameBytes += m_frames[i].m_frameBytes
    [all...]
BitmapImageTest.cpp 73 size_t frameDecodedSize(size_t frame) { return m_image->m_frames[frame].m_frameBytes; }
74 size_t decodedFramesCount() const { return m_image->m_frames.size(); }
BitmapImage.h 118 // Called before accessing m_frames[index]. Returns false on index out of bounds.
167 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/lldb/source/Utility/
SharingPtr.cpp 38 std::vector<void *> m_frames; member in class:Backtrace
42 Backtrace::Backtrace () : m_frames()
56 m_frames.assign (frames + 2, frames + (count - 2));
62 if (!m_frames.empty())
63 ::backtrace_symbols_fd (m_frames.data(), m_frames.size(), STDOUT_FILENO);
  /external/lldb/source/Target/
StackFrameList.cpp 49 m_frames (),
111 if (!m_frames[0]->IsInlined())
128 Block *block_ptr = m_frames[0]->GetFrameBlock();
261 if (m_frames.size() > end_idx || GetAllFramesFetched())
297 if (m_frames.empty())
315 m_frames.size(),
321 m_frames.push_back (unwind_frame_sp);
326 unwind_frame_sp = m_frames.front();
339 unwind_frame_sp.reset (new StackFrame (m_thread.shared_from_this(), m_frames.size(), idx, cfa, pc, NULL));
340 m_frames.push_back (unwind_frame_sp)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.h 304 if (m_frames.isEmpty())
309 // FIXME: This extra complexity is not necessary and we should just report m_frames.size().
310 return m_frames.last()->isHeaderDefined() ? m_frames.size() : m_frames.size() - 1;
321 return index < m_frames.size() ? m_frames[index].get() : 0;
326 void clearDecodeState(size_t index) { m_frames[index]->clearDecodeState(); }
340 return m_frames.isEmpty() || (m_frames.size() == 1u && !m_frames[0]->isComplete())
357 Vector<OwnPtr<GIFFrameContext> > m_frames; member in class:GIFImageReader
    [all...]
GIFImageReader.cpp 371 GIFFrameContext* currentFrame = m_frames[frameIndex].get();
411 ASSERT(!m_frames.isEmpty());
413 m_frames.last()->addLzwBlock(currentComponentPosition, m_bytesToConsume);
418 ASSERT(!m_frames.isEmpty());
419 m_frames.last()->setDataSize(*currentComponent);
543 GIFFrameContext* currentFrame = m_frames.last().get();
668 GIFFrameContext* currentFrame = m_frames.last().get();
701 ASSERT(!m_frames.isEmpty());
702 m_frames.last()->localColorMap().setDefined();
713 ASSERT(!m_frames.isEmpty())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/mhtml/
MHTMLParser.h 69 Vector<RefPtr<MHTMLArchive> > m_frames; member in class:WebCore::MHTMLParser
MHTMLParser.cpp 269 m_frames.append(archive);
275 m_frames.append(subframe);
369 return m_frames.size();
374 return m_frames[index].get();
  /external/chromium_org/third_party/WebKit/Source/web/
WebPageSerializerImpl.cpp 465 m_frames.append(m_specifiedWebLocalFrameImpl);
471 for (int i = 0; i < static_cast<int>(m_frames.size()); ++i) {
472 WebLocalFrameImpl* currentFrame = m_frames[i];
484 m_frames.append(webFrame);
497 for (unsigned i = 0; i < m_frames.size(); ++i) {
498 WebLocalFrameImpl* webFrame = m_frames[i];
WebPageSerializerImpl.h 115 Vector<WebLocalFrameImpl*> m_frames; member in class:blink::WebPageSerializerImpl
  /external/lldb/include/lldb/Target/
StackFrameList.h 141 collection m_frames; member in class:lldb_private::StackFrameList
  /external/lldb/examples/interposing/darwin/fd_interposing/
FDInterposing.cpp 188 m_frames (frames.begin(), frames.end()),
211 return m_frames;
217 return m_frames;
246 Frames m_frames; member in class:fd_interposing::FDEvent
535 if (!m_frames.empty())
536 ::backtrace_symbols_fd (m_frames.data(), m_frames.size(), log_fd);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/
mkvparser.cpp     [all...]
mkvparser.hpp 118 Frame* m_frames; member in class:mkvparser::Block
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
mkvparser.cpp     [all...]
mkvparser.hpp 109 Frame* m_frames; member in class:mkvparser::Block
  /external/libvpx/libvpx/third_party/libwebm/
mkvparser.cpp     [all...]
mkvparser.hpp 120 Frame* m_frames; member in class:mkvparser::Block
  /external/libvpx/libwebm/
mkvparser.cpp     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvparser.cpp     [all...]

Completed in 837 milliseconds

1 2