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

  /external/chromium_org/ui/message_center/views/
bounded_label_unittest.cc 62 return label_->GetWrappedTextForTest(width, lines_);
67 label_->SetBounds(0, 0, width, font_list_.GetHeight() * lines_);
68 return label_->GetLinesForWidthAndLimit(width, lines_);
75 lines_ = lines;
77 label_->SetLineLimit(lines_);
88 int lines_; member in class:message_center::test::BoundedLabelTest
  /external/chromium/net/ftp/
ftp_ctrl_response_buffer.cc 29 while (!lines_.empty()) {
30 ParsedLine line = lines_.front();
31 lines_.pop();
120 lines_.push(ParseLine(buffer_.substr(cut_pos, i - cut_pos - 1)));
ftp_ctrl_response_buffer.h 77 std::queue<ParsedLine> lines_; member in class:net::FtpCtrlResponseBuffer
  /external/chromium_org/net/ftp/
ftp_ctrl_response_buffer.cc 34 while (!lines_.empty()) {
35 ParsedLine line = lines_.front();
36 lines_.pop();
145 lines_.push(ParseLine(buffer_.substr(cut_pos, i - cut_pos - 1)));
ftp_ctrl_response_buffer.h 78 std::queue<ParsedLine> lines_; member in class:net::FtpCtrlResponseBuffer
  /external/chromium_org/third_party/icu/source/test/perf/ustrperf/
stringperf.h 92 (*fn1_)(lines_[i].name,lines_[i].len,uS0_[i]);
100 (*fn1_)(lines_[i].name,-1,uS0_[i]);
136 lines_=srcLines;
149 uS0_[i]=UnicodeString(lines_[i].name, lines_[i].len);
160 lines_=srcLines;
183 lines_=NULL;
205 lines_=NULL;
250 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len, &err)
321 ULine* lines_; member in class:StringPerfFunction
    [all...]
  /external/icu4c/test/perf/ustrperf/
stringperf.h 94 (*fn1_)(lines_[i].name,lines_[i].len,uS0_[i]);
102 (*fn1_)(lines_[i].name,-1,uS0_[i]);
138 lines_=srcLines;
151 uS0_[i]=UnicodeString(lines_[i].name, lines_[i].len);
162 lines_=srcLines;
185 lines_=NULL;
207 lines_=NULL;
252 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len, &err)
323 ULine* lines_; member in class:StringPerfFunction
    [all...]
  /external/chromium/net/tools/flip_server/
balsa_frame.cc 79 lines_.clear();
495 DCHECK(!lines_.empty());
498 const Lines::size_type lines_size_m1 = lines_.size() - 1;
504 const char* current = stream_begin + lines_[1].first;
512 const char* line_begin = stream_begin + lines_[i].first;
519 const char c = *(stream_begin + lines_[i].first);
528 const char* line_end = stream_begin + lines_[i - 1].second;
792 DCHECK(!lines_.empty());
803 if (lines_.size() > 2) {
    [all...]
balsa_frame.h 255 Lines lines_; member in class:net::BalsaFrame
  /external/chromium_org/net/tools/balsa/
balsa_frame.cc 79 lines_.clear();
495 DCHECK(!lines_.empty());
498 const Lines::size_type lines_size_m1 = lines_.size() - 1;
504 const char* current = stream_begin + lines_[1].first;
512 const char* line_begin = stream_begin + lines_[i].first;
519 const char c = *(stream_begin + lines_[i].first);
528 const char* line_end = stream_begin + lines_[i - 1].second;
759 DCHECK(!lines_.empty());
770 if (lines_.size() > 2) {
    [all...]
balsa_frame.h 256 Lines lines_; member in class:net::BalsaFrame
  /external/chromium_org/ui/gfx/
text_elider.cc 810 lines_(lines),
816 void Init() { lines_->clear(); }
883 std::vector<base::string16>* lines_; member in class:gfx::__anon17666::RectangleText
    [all...]
render_text.cc 432 lines_.clear();
440 lines_.clear();
930 offset.Add(Vector2d(0, lines_[line_number].preceding_heights));
945 DCHECK(!lines_.empty());
948 for (; line < lines_.size() && x > lines_[line].size.width(); ++line)
949 x -= lines_[line].size.width();
    [all...]
render_text.h 405 const std::vector<internal::Line>& lines() const { return lines_; }
406 void set_lines(std::vector<internal::Line>* lines) { lines_.swap(*lines); }
486 // Ensure the text is laid out, lines are computed, and |lines_| is valid.
675 std::vector<internal::Line> lines_; member in class:gfx::RenderText
render_text_win.cc 359 DCHECK(!lines_.empty());
362 lines_.pop_back();
364 lines->swap(lines_);
368 // A (line index, segment index) pair that specifies a segment in |lines_|.
372 return &lines_[handle.first].segments[handle.second];
375 // Breaks a run into segments that fit in the last line in |lines_| and adds
376 // them. Adds a new Line to the back of |lines_| whenever a new segment can't
412 // Finishes the size calculations of the last Line in |lines_|. Adds a new
413 // Line to the back of |lines_|.
415 if (!lines_.empty())
479 std::vector<Line> lines_; member in class:gfx::internal::LineBreaker
    [all...]
render_text_unittest.cc     [all...]
  /external/chromium/net/http/
http_util.h 188 lines_.Reset();
212 StringTokenizer lines_; member in class:net::HttpUtil::HeadersIterator
  /external/chromium_org/net/http/
http_util.h 226 lines_.Reset();
250 base::StringTokenizer lines_; member in class:net::HttpUtil::HeadersIterator
http_util.cc 770 : lines_(headers_begin, headers_end, line_delimiter) {
777 while (lines_.GetNext()) {
778 name_begin_ = lines_.token_begin();
779 values_end_ = lines_.token_end();
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
image_util.js 16 this.lines_ = {};
26 if (!(key in this.lines_)) {
28 var div = this.lines_[key] = document.createElement('div');
31 this.lines_[key] = {};
34 this.lines_[key].textContent = key + ': ' + value;
47 for (var key in this.lines_)
52 console.log('trace.' + this.lines_[key].textContent);
  /external/chromium_org/ash/system/user/
tray_user.cc 223 ScopedVector<gfx::RenderText> lines_; member in class:ash::internal::tray::PublicAccountUserDetails
507 lines_.clear();
550 lines_.push_back(line);
555 const gfx::Size last_line_size = lines_.back()->GetStringSize();
578 for (ScopedVector<gfx::RenderText>::const_iterator it = lines_.begin();
579 it != lines_.end(); ++it) {
    [all...]
  /external/chromium-trace/
script.js     [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeBackgroundScript.js     [all...]
chromeVoxChromeOptionsScript.js     [all...]
chromeVoxChromePageScript.js     [all...]

Completed in 407 milliseconds