/external/chromium-trace/catapult/tracing/tracing/ui/tracks/ |
frame_track.html | 33 this.frames_ = undefined; 38 return this.frames_; 42 this.frames_ = frames; 46 this.frames_ = this.frames_.slice(); 47 this.frames_.sort(startCompare); 50 this.items = this.frames_.map(function(frame) {
|
/external/libchrome/base/trace_event/ |
heap_profiler_stack_frame_deduplicator.h | 25 // is referenced by index into |frames_|. The children are referenced via a map 26 // of |StackFrame|s to index into |frames_|. So there is a trie for bottum-up 38 // The index of the parent stack frame in |frames_|, or -1 if there is no 42 // Indices into |frames_| of frames called from the current frame. 52 // called function), and returns the index of its leaf node in |frames_|. 57 ConstIterator begin() const { return frames_.begin(); } 58 ConstIterator end() const { return frames_.end(); } 71 std::vector<FrameNode> frames_; member in class:base::trace_event::StackFrameDeduplicator
|
heap_profiler_stack_frame_deduplicator.cc | 44 frame_index = static_cast<int>(frames_.size()); 49 // Append the node after modifying |nodes|, because the |frames_| vector 51 frames_.push_back(frame_node); 57 nodes = &frames_[frame_index].children; 103 size_t frames_allocated = frames_.capacity() * sizeof(FrameNode); 104 size_t frames_resident = frames_.size() * sizeof(FrameNode); 106 for (const FrameNode& node : frames_)
|
/external/webrtc/webrtc/modules/desktop_capture/ |
screen_capture_frame_queue.cc | 32 assert(!frames_[current_].get() || !frames_[current_]->IsShared()); 36 frames_[current_].reset(SharedDesktopFrame::Wrap(frame)); 41 frames_[i].reset();
|
screen_capture_frame_queue.h | 55 return frames_[current_].get(); 59 return frames_[(current_ + kQueueLength - 1) % kQueueLength].get(); 67 rtc::scoped_ptr<SharedDesktopFrame> frames_[kQueueLength]; member in class:webrtc::ScreenCaptureFrameQueue
|
/external/opencv3/modules/videostab/src/ |
stabilizer.cpp | 79 frames_.clear(); 122 at(curPos_, frames_) = frame; 145 at(curStabilizedPos_ + radius_, frames_) = at(curPos_, frames_); 164 inpainter_->setFrames(frames_); 178 deblurer_->setFrames(frames_); 198 at(curStabilizedPos_, frames_).copyTo(preProcessedFrame_); 202 preProcessedFrame_ = at(curStabilizedPos_, frames_); 273 frames_.resize(cacheSize); 282 at(i, frames_) = firstFrame [all...] |
/system/core/include/backtrace/ |
Backtrace.h | 129 size_t NumFrames() const { return frames_.size(); } 132 if (frame_num >= frames_.size()) { 135 return &frames_[frame_num]; 139 iterator begin() { return frames_.begin(); } 140 iterator end() { return frames_.end(); } 143 const_iterator begin() const { return frames_.begin(); } 144 const_iterator end() const { return frames_.end(); } 169 std::vector<backtrace_frame_data_t> frames_; member in class:Backtrace
|
/external/opencv3/modules/cudacodec/src/ |
video_reader.cpp | 81 std::deque< std::pair<CUVIDPARSERDISPINFO, CUVIDPROCPARAMS> > frames_; 133 if (frames_.empty()) 165 frames_.push_back(std::make_pair(displayInfo, videoProcParams)); 169 if (frames_.empty()) 172 std::pair<CUVIDPARSERDISPINFO, CUVIDPROCPARAMS> frameInfo = frames_.front(); 173 frames_.pop_front(); 191 if (frames_.empty())
|
/external/google-breakpad/src/google_breakpad/processor/ |
call_stack.h | 65 const vector<StackFrame*>* frames() const { return &frames_; } 68 // Stackwalker is responsible for building the frames_ vector. 72 vector<StackFrame*> frames_; member in class:google_breakpad::CallStack
|
/external/google-breakpad/src/processor/ |
stackwalker_address_list.cc | 55 frames_(frames), 66 frame->instruction = frames_[0]; 87 frame->instruction = frames_[frame_index];
|
call_stack.cc | 46 for (vector<StackFrame *>::const_iterator iterator = frames_.begin(); 47 iterator != frames_.end();
|
stackwalker_address_list.h | 64 const uint64_t* frames_; member in class:google_breakpad::StackwalkerAddressList
|
stackwalker.cc | 172 stack->frames_.push_back(frame.release()); 173 if (stack->frames_.size() > max_frames_) {
|
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
deblurring.hpp | 62 DeblurerBase() : radius_(0), frames_(0), motions_(0), blurrinessRates_(0) {} 74 virtual void setFrames(const std::vector<Mat> &val) { frames_ = &val; } 75 virtual const std::vector<Mat>& frames() const { return *frames_; } 85 const std::vector<Mat> *frames_; member in class:cv::videostab::DeblurerBase
|
inpainting.hpp | 65 : radius_(0), motionModel_(MM_UNKNOWN), frames_(0), motions_(0), 81 virtual void setFrames(const std::vector<Mat> &val) { frames_ = &val; } 82 virtual const std::vector<Mat>& frames() const { return *frames_; } 96 const std::vector<Mat> *frames_; member in class:cv::videostab::InpainterBase
|
/system/core/libbacktrace/ |
UnwindPtrace.cpp | 106 frames_.resize(num_frames+1); 107 backtrace_frame_data_t* frame = &frames_.at(num_frames); 114 backtrace_frame_data_t* prev = &frames_.at(num_frames-1);
|
UnwindCurrent.cpp | 104 frames_.resize(num_frames+1); 105 backtrace_frame_data_t* frame = &frames_.at(num_frames); 121 backtrace_frame_data_t* prev = &frames_.at(num_frames-1);
|
Backtrace.cpp | 70 if (frame_num >= frames_.size()) { 73 return FormatFrameData(&frames_[frame_num]);
|
/external/chromium-trace/catapult/tracing/tracing/model/helpers/ |
android_app.html | 252 this.frames_ = undefined; 277 if (!this.frames_) { 280 this.frames_ = uiFrames.concat(rtFrames); 283 this.frames_.sort(function(a, b) { a.end - b.end }); 285 return this.frames_;
|
/external/opencv3/modules/cudaoptflow/src/ |
farneback.cpp | 159 GpuMat frames_[2]; 321 frame0.convertTo(frames_[0], CV_32F, streams[0]); 322 frame1.convertTo(frames_[1], CV_32F, streams[1]); 329 pyramid0_[0] = frames_[0]; 330 pyramid1_[0] = frames_[1]; 428 frames_[i], smoothSize/2, blurredFrame[i], BORDER_REFLECT101, StreamAccessor::getStream(streams[i]));
|
/external/libvpx/libvpx/test/ |
encode_perf_test.cc | 28 uint32_t bitrate_, int frames_) 33 frames(frames_) {}
|
decode_perf_test.cc | 198 uint32_t bitrate_, int frames_) 203 frames(frames_) {}
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/ |
mkvmuxer.cpp | [all...] |
/external/opencv3/3rdparty/libwebp/demux/ |
demux.c | 73 Frame* frames_; member in struct:WebPDemuxer 429 if (dmux->frames_ != NULL) return PARSE_ERROR; 590 const Frame* const frame = dmux->frames_; 609 if (dmux->state_ == WEBP_DEMUX_DONE && dmux->frames_ == NULL) return 0; 611 for (f = dmux->frames_; f != NULL; f = f->next_) { 664 dmux->frames_tail_ = &dmux->frames_; 712 for (f = dmux->frames_; f != NULL;) { 748 for (f = dmux->frames_; f != NULL; f = f->next_) {
|
/external/webp/src/demux/ |
demux.c | 70 Frame* frames_; member in struct:WebPDemuxer 397 if (dmux->frames_ != NULL) return PARSE_ERROR; 562 const Frame* const frame = dmux->frames_; 594 const Frame* f = dmux->frames_; 600 if (dmux->state_ == WEBP_DEMUX_DONE && dmux->frames_ == NULL) return 0; 656 dmux->frames_tail_ = &dmux->frames_; 760 for (f = dmux->frames_; f != NULL;) { 794 for (f = dmux->frames_; f != NULL; f = f->next_) {
|