Home | History | Annotate | Download | only in parsing

Lines Matching refs:is_one_byte

24   if (is_one_byte()) {
385 if (!name.is_one_byte()) return;
1268 if (!string->is_one_byte()) return false;
1355 if (next_.literal_chars->is_one_byte()) {
1384 if (escaped && next_.literal_chars->is_one_byte()) {
1585 bool is_one_byte,
1587 uint32_t hash = Hash(key, is_one_byte);
1588 byte* encoding = BackupKey(key, is_one_byte);
1650 uint32_t DuplicateFinder::Hash(Vector<const uint8_t> key, bool is_one_byte) {
1654 uint32_t hash = (length << 1) | (is_one_byte ? 1 : 0);
1687 bool is_one_byte) {
1688 uint32_t one_byte_length = (bytes.length() << 1) | (is_one_byte ? 1 : 0);