Searched refs:secondChar (Results 1 - 1 of 1) sorted by relevance

/haiku/src/kits/storage/sniffer/
H A DPattern.cpp133 char secondChar; local
135 secondChar = 'a' + (fString[i] - 'A'); // Also check lowercase
137 secondChar = 'A' + (fString[i] - 'a'); // Also check uppercase
139 secondChar = fString[i]; // Check the same char twice as punishment for doing a case insensitive search ;-)
141 && ((secondChar & fMask[i]) != (buffer[i] & fMask[i])))
179 char secondChar; local
181 secondChar = 'a' + (fString[i] - 'A'); // Also check lowercase
183 secondChar = 'A' + (fString[i] - 'a'); // Also check uppercase
185 secondChar = fString[i]; // Check the same char twice as punishment for doing a case insensitive search ;-)
187 && ((secondChar
[all...]

Completed in 44 milliseconds