Lines Matching defs:find_token
878 fn find_token(&self, token: T) -> bool;
882 fn find_token(&self, token: u8) -> bool {
888 fn find_token(&self, token: u8) -> bool {
889 self.as_bytes().find_token(token)
894 fn find_token(&self, token: &u8) -> bool {
895 self.find_token(*token)
900 fn find_token(&self, token: &u8) -> bool {
901 self.as_bytes().find_token(token)
906 fn find_token(&self, token: char) -> bool {
912 fn find_token(&self, token: char) -> bool {
918 fn find_token(&self, token: char) -> bool {
924 fn find_token(&self, token: &char) -> bool {
925 self.find_token(*token)
1115 fn find_token(&self, token: u8) -> bool {
1121 fn find_token(&self, token: &u8) -> bool {
1122 self.find_token(*token)