Home
last modified time | relevance | path

Searched refs:allow_empty (Results 1 – 4 of 4) sorted by relevance

/third_party/cef/libcef/browser/devtools/
Ddevtools_util.cc14 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/
Ducm_subs.c604 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/
Dwidget_tests.py121 def checkColorParam(self, widget, name, *, allow_empty=None, **kwargs): argument
/third_party/python/Lib/test/
Dtest_buffer.py703 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))