Searched refs:add_space (Results 1 – 3 of 3) sorted by relevance
/external/fmtlib/include/fmt/ |
D | ranges.h | 165 FMT_CONSTEXPR const char* format_str_quoted(bool add_space, const Arg&) { 166 return add_space ? " {}" : "{}"; 171 FMT_CONSTEXPR const char* format_str_quoted(bool add_space, const Arg&) { 172 return add_space ? " \"{}\"" : "\"{}\""; 175 FMT_CONSTEXPR const char* format_str_quoted(bool add_space, const char*) { 176 return add_space ? " \"{}\"" : "\"{}\""; 178 FMT_CONSTEXPR const wchar_t* format_str_quoted(bool add_space, const wchar_t*) { 179 return add_space ? L" \"{}\"" : L"\"{}\""; 182 FMT_CONSTEXPR const char* format_str_quoted(bool add_space, const char) { 183 return add_space ? " '{}'" : "'{}'"; [all …]
|
/external/wpa_supplicant_8/src/utils/ |
D | edit.c | 431 int room, plen, add_space; in complete() local 472 add_space = count == 1 && len < room; in complete() 474 os_memmove(cmdbuf + cmdbuf_pos + len + add_space, cmdbuf + cmdbuf_pos, in complete() 477 if (add_space) in complete() 480 cmdbuf_pos += len + add_space; in complete() 481 cmdbuf_len += len + add_space; in complete()
|
/external/python/cffi/c/ |
D | ffi_obj.c | 619 int add_paren, add_space; in ffi_getctype() local 643 add_space = (!add_paren && replace_with_len > 0 && in ffi_getctype() 646 res = _combine_type_name_l(ct, replace_with_len + add_space + 2*add_paren); in ffi_getctype() 653 if (add_space) in ffi_getctype()
|