OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMaxLineLength
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/system_wrappers/source/
data_log_unittest.cc
50
char line_buffer[
kMaxLineLength
];
51
char* ret = fgets(line_buffer,
kMaxLineLength
, log_file);
56
std::string line(line_buffer,
kMaxLineLength
);
58
while (fgets(line_buffer,
kMaxLineLength
, log_file) != NULL) {
59
line = std::string(line_buffer,
kMaxLineLength
);
113
enum {
kMaxLineLength
= 100 };
/external/skia/tools/
create_test_font.cpp
83
kMaxLineLength
= 80,
98
*out += (int) last_line_length(*out) >=
kMaxLineLength
? '\n' : ' ';
117
*out += (int) last_line_length(*out) >=
kMaxLineLength
? '\n' : ' ';
249
if (outChCount >=
kMaxLineLength
) {
269
if (outChCount >=
kMaxLineLength
) {
/external/webrtc/webrtc/base/
proxydetect.cc
58
static const size_t
kMaxLineLength
= 1024;
513
if ((line.length() == 0) || (line.length() >
kMaxLineLength
)
519
char buffer[
kMaxLineLength
];
[
all
...]
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework.cc
590
const size_t
kMaxLineLength
= 100;
591
char line[
kMaxLineLength
];
592
if (fgets(line,
kMaxLineLength
, trace_file)) {
Completed in 198 milliseconds