Home
last modified time | relevance | path

Searched refs:max_string_length (Results 1 – 3 of 3) sorted by relevance

/external/pigweed/pw_arduino_build/py/pw_arduino_build/
Dbuilder.py560 max_string_length = [0, 0]
568 if len(name) > max_string_length[0]:
569 max_string_length[0] = len(name)
570 if len(description) > max_string_length[1]:
571 max_string_length[1] = len(description)
574 return all_options, max_string_length
578 max_string_length = [0, 0]
583 if len(full_key) > max_string_length[0]:
584 max_string_length[0] = len(full_key)
585 if len(value["description"]) > max_string_length[1]:
[all …]
/external/tensorflow/tensorflow/core/platform/
Dabi.cc32 int max_string_length, void* (*p_alloc)(std::size_t),
/external/google-breakpad/src/google_breakpad/processor/
Dminidump.h1163 static void set_max_string_length(uint32_t max_string_length) { in set_max_string_length() argument
1164 max_string_length_ = max_string_length; in set_max_string_length()
1166 static uint32_t max_string_length() { return max_string_length_; } in max_string_length() function