Home
last modified time | relevance | path

Searched refs:ignore_case_ (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/src/core/ext/xds/
Dxds_api.cc435 : type_(type), ignore_case_(ignore_case) { in StringMatcher()
444 : type_(other.type_), ignore_case_(other.ignore_case_) { in StringMatcher()
464 ignore_case_ = other.ignore_case_; in operator =()
469 if (type_ != other.type_ || ignore_case_ != other.ignore_case_) return false; in operator ==()
481 return ignore_case_ ? absl::EqualsIgnoreCase(value, string_matcher_) in Match()
484 return ignore_case_ ? absl::StartsWithIgnoreCase(value, string_matcher_) in Match()
487 return ignore_case_ ? absl::EndsWithIgnoreCase(value, string_matcher_) in Match()
490 return ignore_case_ in Match()
506 ignore_case_ ? ", ignore_case" : ""); in ToString()
509 ignore_case_ ? ", ignore_case" : ""); in ToString()
[all …]
Dxds_api.h211 bool ignore_case_ = false; variable