Lines Matching refs:start
490 /// it at the start or the end, e.g. `[abc-]`.
732 // ** must be at the start.
930 CharRange(start, end) => {
932 if !options.case_sensitive && c.is_ascii() && start.is_ascii() && end.is_ascii() {
933 let start = start.to_ascii_lowercase();
936 let start_up = start.to_uppercase().next().unwrap();
940 // both start and end are within a-z or A-Z
941 if start != start_up && end != end_up {
943 if c >= start && c <= end {
949 if c >= start && c <= end {
986 /// Whether or not paths that contain components that start with a `.`
1179 // Only start sub-patterns on start of path segment.