Searched refs:allow_empty (Results 1 – 4 of 4) sorted by relevance
/third_party/cef/libcef/browser/devtools/ |
D | devtools_util.cc | 14 bool IsValidDictionary(const base::StringPiece& str, bool allow_empty) { in IsValidDictionary() argument 15 return str.length() >= (allow_empty ? 2 : 3) && str[0] == '{' && in IsValidDictionary()
|
/third_party/alsa-lib/src/ucm/ |
D | ucm_subs.c | 604 allow_empty = (empty_ok); \ 611 allow_empty = (empty_ok); \ 662 bool ignore_error, allow_empty; in uc_mgr_get_substituted_value() local 744 if (rval == NULL || (!allow_empty && rval[0] == '\0')) { in uc_mgr_get_substituted_value()
|
/third_party/python/Lib/tkinter/test/ |
D | widget_tests.py | 121 def checkColorParam(self, widget, name, *, allow_empty=None, **kwargs): argument
|
/third_party/python/Lib/test/ |
D | test_buffer.py | 703 def rslice(n, allow_empty=False): argument 707 minlen = 0 if allow_empty or n == 0 else 1 711 def rslices(n, allow_empty=False): argument 714 yield rslice(n, allow_empty) 723 yield tuple(rslice(shape[n], allow_empty=True) for n in range(ndim))
|