Searched refs:has_equal (Results 1 – 2 of 2) sorted by relevance
115 char *current_argv, *has_equal; in parse_long_options() local124 if ((has_equal = strchr(current_argv, '=')) != NULL) { in parse_long_options()126 current_argv_len = has_equal - current_argv; in parse_long_options()127 has_equal++; in parse_long_options()159 if (long_options[match].has_arg == no_argument && has_equal) { in parse_long_options()173 if (has_equal) in parse_long_options()174 optarg = has_equal; in parse_long_options()
26 concept has_equal = requires (T const& x, T const& y) { { x == y }; };80 static_assert(!has_equal<FilterIterator>); in tests()