Searched refs:custom_string (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_xxlimited.py | 37 custom_string = self.module.Str("abcd") 38 self.assertEqual(custom_string, "abcd") 39 self.assertEqual(custom_string.upper(), "ABCD")
|
/external/libcups/cups/ |
D | ppd-emit.c | 681 if (cparam->current.custom_string) in ppdEmitString() 682 bufsize += strlen(cparam->current.custom_string); in ppdEmitString() 731 if (cparam->current.custom_string) in ppdEmitString() 732 bufsize += 4 * strlen(cparam->current.custom_string); in ppdEmitString() 834 if (cparam->current.custom_string) in ppdEmitString() 836 strlcpy(bufptr, cparam->current.custom_string, (size_t)(bufend - bufptr)); in ppdEmitString() 1041 if (cparam->current.custom_string) in ppdEmitString() 1043 for (s = cparam->current.custom_string; *s; s ++) in ppdEmitString()
|
D | ppd-mark.c | 891 if (cparam->current.custom_string) in ppd_mark_option() 892 free(cparam->current.custom_string); in ppd_mark_option() 894 cparam->current.custom_string = strdup(choice + 7); in ppd_mark_option() 971 if (cparam->current.custom_string) in ppd_mark_option() 972 free(cparam->current.custom_string); in ppd_mark_option() 974 cparam->current.custom_string = strdup(val->value); in ppd_mark_option()
|
D | ppd.h | 249 int custom_string; /* String length */ member 261 char *custom_string; /* String value */ member
|
D | testppd.c | 1304 cparam->minimum.custom_string, in main() 1305 cparam->maximum.custom_string); in main()
|
D | ppd.c | 220 free(cparam->current.custom_string); in ppdClose() 1062 cparam->minimum.custom_string = atoi(cminimum); in _ppdOpen() 1063 cparam->maximum.custom_string = atoi(cmaximum); in _ppdOpen()
|
/external/perfetto/docs/design-docs/ |
D | extensions.md | 28 optional string custom_string = 1000; 33 to have a new method to set `custom_string` in addition to all other protobuf
|
/external/fmtlib/doc/ |
D | api.rst | 356 using custom_string = 359 custom_string vformat(custom_allocator alloc, fmt::string_view format_str, 363 return custom_string(buf.data(), buf.size(), alloc); 367 inline custom_string format(custom_allocator alloc,
|
/external/libcups/cgi-bin/ |
D | admin.c | 2998 if (cparam->current.custom_string) in do_set_options() 3000 cparam->current.custom_string); in do_set_options() 3583 if (integer < cparam->minimum.custom_string || in get_option_value() 3584 integer > cparam->maximum.custom_string) in get_option_value() 3665 if (integer < cparam->minimum.custom_string || in get_option_value() 3666 integer > cparam->maximum.custom_string) in get_option_value()
|