Lines Matching refs:compare_no_case
727 fn compare_no_case(&self, t: T) -> CompareResult;
771 fn compare_no_case(&self, t: &'b [u8]) -> CompareResult {
811 fn compare_no_case(&self, t: O) -> CompareResult {
832 fn compare_no_case(&self, t: &'b str) -> CompareResult {
833 self.compare_no_case(AsBytes::as_bytes(t))
845 fn compare_no_case(&self, t: &'b str) -> CompareResult {
870 fn compare_no_case(&self, t: &'b [u8]) -> CompareResult {
871 AsBytes::as_bytes(self).compare_no_case(t)
1097 fn compare_no_case(&self, t: [u8;$N]) -> CompareResult {
1098 self.compare_no_case(&t[..])
1109 fn compare_no_case(&self, t: &'b [u8;$N]) -> CompareResult {
1110 self.compare_no_case(&t[..])