Lines Matching refs:base
7 #include "src/base/strings.h"
18 constexpr base::uc32 kMaxSupportedCodepoint = 0xFFFFu;
20 constexpr base::uc32 kMaxCodePoint = 0x10ffff;
232 void ConsumeRange(base::uc16 from, base::uc16 to) {
404 // by (complements of) ranges with base::uc16 bounds.
406 std::numeric_limits<base::uc16>::max());
408 base::uc32 from = (*ranges)[i].from();
410 base::uc16 from_uc16 = static_cast<base::uc16>(from);
412 base::uc32 to = (*ranges)[i].to();
414 base::uc16 to_uc16 =
415 static_cast<base::uc16>(std::min(to, kMaxSupportedCodepoint));
423 for (base::uc16 c : node->data()) {