Lines Matching refs:first

384 lexbor_str_data_ncasecmp_first(const lxb_char_t *first, const lxb_char_t *sec,  in lexbor_str_data_ncasecmp_first()  argument
390 if (first[i] == '\0') { in lexbor_str_data_ncasecmp_first()
391 return &first[i]; in lexbor_str_data_ncasecmp_first()
394 if (lexbor_str_res_map_lowercase[ first[i] ] in lexbor_str_data_ncasecmp_first()
401 return &first[i]; in lexbor_str_data_ncasecmp_first()
405 lexbor_str_data_ncasecmp_end(const lxb_char_t *first, const lxb_char_t *sec, in lexbor_str_data_ncasecmp_end() argument
411 if (lexbor_str_res_map_lowercase[ first[size] ] in lexbor_str_data_ncasecmp_end()
435 lexbor_str_data_ncasecmp(const lxb_char_t *first, const lxb_char_t *sec, in lexbor_str_data_ncasecmp() argument
439 if (lexbor_str_res_map_lowercase[ first[i] ] in lexbor_str_data_ncasecmp()
450 lexbor_str_data_nlocmp_right(const lxb_char_t *first, const lxb_char_t *sec, in lexbor_str_data_nlocmp_right() argument
454 if (first[i] != lexbor_str_res_map_lowercase[ sec[i] ]) { in lexbor_str_data_nlocmp_right()
463 lexbor_str_data_nupcmp_right(const lxb_char_t *first, const lxb_char_t *sec, in lexbor_str_data_nupcmp_right() argument
467 if (first[i] != lexbor_str_res_map_uppercase[ sec[i] ]) { in lexbor_str_data_nupcmp_right()
476 lexbor_str_data_casecmp(const lxb_char_t *first, const lxb_char_t *sec) in lexbor_str_data_casecmp() argument
479 if (lexbor_str_res_map_lowercase[*first] in lexbor_str_data_casecmp()
485 if (*first == '\0') { in lexbor_str_data_casecmp()
489 first++; in lexbor_str_data_casecmp()
495 lexbor_str_data_ncmp_end(const lxb_char_t *first, const lxb_char_t *sec, in lexbor_str_data_ncmp_end() argument
501 if (first[size] != sec[size]) { in lexbor_str_data_ncmp_end()
523 lexbor_str_data_ncmp(const lxb_char_t *first, const lxb_char_t *sec, in lexbor_str_data_ncmp() argument
526 return memcmp(first, sec, sizeof(lxb_char_t) * size) == 0; in lexbor_str_data_ncmp()
530 lexbor_str_data_cmp(const lxb_char_t *first, const lxb_char_t *sec) in lexbor_str_data_cmp() argument
533 if (*first != *sec) { in lexbor_str_data_cmp()
537 if (*first == '\0') { in lexbor_str_data_cmp()
541 first++; in lexbor_str_data_cmp()
547 lexbor_str_data_cmp_ws(const lxb_char_t *first, const lxb_char_t *sec) in lexbor_str_data_cmp_ws() argument
550 if (*first != *sec) { in lexbor_str_data_cmp_ws()
554 if (lexbor_utils_whitespace(*first, ==, ||) || *first == '\0') { in lexbor_str_data_cmp_ws()
558 first++; in lexbor_str_data_cmp_ws()