Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_wsgiref.py123 def check_hello(self, out, has_length=True): argument
131 (has_length and "Content-Length: 13\r\n" or "") +
161 self.check_hello(out, has_length=False)
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dcord.cc464 template <bool has_length>
473 if (available >= (has_length ? length : 1)) { in GetAppendRegion()
475 *size = has_length ? length : available; in GetAppendRegion()
476 set_inline_size(has_length ? sz + length : kMaxInline); in GetAppendRegion()
481 size_t extra = has_length ? length : (std::max)(sz, kMinFlatLength); in GetAppendRegion()
Dcord.h776 template <bool has_length>