HomeSort by relevance Sort by last modified time
    Searched refs:runs_ (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/media/mp4/
mp4_stream_parser.cc 72 runs_.reset();
103 int64 max_clear = runs_->GetMaxClearOffset() + moof_head_;
160 runs_.reset();
321 if (!runs_)
322 runs_.reset(new TrackRunIterator(moov_.get(), log_cb_));
323 RCHECK(runs_->Init(moof));
364 size_t expected_size = runs_->sample_size() +
371 if (runs_->is_keyframe()) {
407 if (!runs_->IsRunValid()) {
424 if (!runs_->IsSampleValid())
    [all...]
track_run_iterator.cc 142 runs_.clear();
255 runs_.push_back(tri);
260 std::sort(runs_.begin(), runs_.end(), CompareMinTrackRunDataOffset());
261 run_itr_ = runs_.begin();
313 return run_itr_ != runs_.end();
334 if (run_itr_ != runs_.end()) {
336 if (next_run != runs_.end()) {
track_run_iterator.h 93 std::vector<TrackRunInfo> runs_; member in class:media::mp4::TrackRunIterator
mp4_stream_parser.h 104 scoped_ptr<mp4::TrackRunIterator> runs_; member in class:media::mp4::MP4StreamParser
  /external/chromium_org/ui/gfx/
render_text_win.cc 241 if (run_index >= runs_.size())
243 internal::TextRun* run = runs_[run_index];
267 for (size_t i = 0; i < runs_.size(); ++i) {
268 spans.push_back(RenderText::FontSpan(runs_[i]->font,
269 ui::Range(LayoutIndexToTextIndex(runs_[i]->range.start()),
270 LayoutIndexToTextIndex(runs_[i]->range.end()))));
282 if (run_index >= runs_.size()) {
287 int visual_index = (direction == CURSOR_RIGHT) ? 0 : runs_.size() - 1;
288 run = runs_[visual_to_logical_[visual_index]];
292 run = runs_[run_index]
    [all...]
render_text_mac.cc 47 for (size_t i = 0; i < runs_.size(); ++i) {
48 gfx::Font font(runs_[i].font_name, runs_[i].text_size);
49 const CFRange cf_range = CTRunGetStringRange(runs_[i].ct_run);
100 runs_.clear();
107 runs_.clear();
166 for (size_t i = 0; i < runs_.size(); ++i) {
167 const TextRun& run = runs_[i];
274 runs_.push_back(TextRun());
275 TextRun* run = &runs_.back()
    [all...]
render_text_mac.h 73 // Updates |runs_| based on |line_| and sets |runs_valid_| to true.
91 std::vector<TextRun> runs_; member in class:gfx::RenderTextMac
93 // Indicates that |runs_| are valid, set by |ComputeRuns()|.
render_text_win.h 103 // |runs_| vector if argument exceeds the text length or width.
123 ScopedVector<internal::TextRun> runs_; member in class:gfx::RenderTextWin
render_text_unittest.cc     [all...]

Completed in 64 milliseconds