Home
last modified time | relevance | path

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

/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DParseCommandLine.cpp39 bool afterBackslash = false; in GunkSpaces() local
44 if (!afterBackslash) { in GunkSpaces()
52 if ((insideQuote)||(afterBackslash)) in GunkSpaces()
57 afterBackslash = (*string == '\\') ? !afterBackslash : false; in GunkSpaces()
67 bool afterBackslash = false; in RemoveQuotes() local
72 bool temp = (*string == '\\') ? !afterBackslash : false; in RemoveQuotes()
76 if (afterBackslash) in RemoveQuotes()
81 *(to++) = afterBackslash ? '\n' : *string; in RemoveQuotes()
85 *(to++) = afterBackslash ? '\t' : *string; in RemoveQuotes()
92 afterBackslash = temp; in RemoveQuotes()