Home
last modified time | relevance | path

Searched refs:kMaxLineLength (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/system_wrappers/source/
Ddata_log_unittest.cc50 char line_buffer[kMaxLineLength]; in VerifyTable()
51 char* ret = fgets(line_buffer, kMaxLineLength, log_file); in VerifyTable()
56 std::string line(line_buffer, kMaxLineLength); in VerifyTable()
58 while (fgets(line_buffer, kMaxLineLength, log_file) != NULL) { in VerifyTable()
59 line = std::string(line_buffer, kMaxLineLength); in VerifyTable()
113 enum { kMaxLineLength = 100 }; enumerator
/external/skia/tools/fonts/
Dcreate_test_font.cpp93 kMaxLineLength = 80, enumerator
108 *out += (int) last_line_length(*out) >= kMaxLineLength ? '\n' : ' '; in output_fixed()
127 *out += (int) last_line_length(*out) >= kMaxLineLength ? '\n' : ' '; in output_scalar()
259 if (outChCount >= kMaxLineLength) { in output_font()
279 if (outChCount >= kMaxLineLength) { in output_font()
/external/skqp/tools/
Dcreate_test_font.cpp92 kMaxLineLength = 80, enumerator
107 *out += (int) last_line_length(*out) >= kMaxLineLength ? '\n' : ' '; in output_fixed()
126 *out += (int) last_line_length(*out) >= kMaxLineLength ? '\n' : ' '; in output_scalar()
258 if (outChCount >= kMaxLineLength) { in output_font()
278 if (outChCount >= kMaxLineLength) { in output_font()
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dbwe_test_framework.cc590 const size_t kMaxLineLength = 100; in Init() local
591 char line[kMaxLineLength]; in Init()
592 if (fgets(line, kMaxLineLength, trace_file)) { in Init()
/external/webrtc/webrtc/base/
Dproxydetect.cc58 static const size_t kMaxLineLength = 1024; variable
513 if ((line.length() == 0) || (line.length() > kMaxLineLength) in ReadFirefoxPrefs()
519 char buffer[kMaxLineLength]; in ReadFirefoxPrefs()