HomeSort by relevance Sort by last modified time
    Searched defs:max_chars (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/chrome/installer/mini_installer/
mini_string_test.cc 37 size_t max_chars = str.capacity() - 1; local
39 while ((str.length() + (arraysize(kTestString) - 1)) <= max_chars) {
  /bootable/recovery/minadbd/
fdevent.c 332 size_t max_chars = FD_SETSIZE * 6 + 1; local
336 printed_out = snprintf(pb, max_chars, __VA_ARGS__); \
341 if (max_chars < (unsigned int)printed_out) { \
346 max_chars -= printed_out; \
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_decode.cpp 404 int max_chars = (src_len - 2) / 2; local
405 if (!max_chars) {
411 FX_LPWSTR dest_buf = result.GetBuffer(max_chars);
414 for (int i = 0; i < max_chars * 2; i += 2) {
418 while (i < max_chars * 2) {
  /system/core/adb/
fdevent.c 323 size_t max_chars = FD_SETSIZE * 6 + 1; local
327 printed_out = snprintf(pb, max_chars, __VA_ARGS__); \
332 if (max_chars < (unsigned int)printed_out) { \
337 max_chars -= printed_out; \
  /external/srec/srec/include/
srec_context.h 57 asr_int32_t max_chars; member in struct:__anon34877
  /external/doclava/src/com/google/doclava/
PageMetadata.java 390 * exceeding max_chars are truncated at the first word boundary
399 int max_chars = 250; local
411 if (str.length() > max_chars) {
412 marker = bi.following(max_chars);

Completed in 267 milliseconds