Home | History | Annotate | Download | only in src

Lines Matching defs:SPECIAL

23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
46 // This character requires special handling in DoPartialPath. Doing this test
49 SPECIAL = 1,
52 // escaped chars also have the "special" bit set so that the code that looks
55 ESCAPE = ESCAPE_BIT | SPECIAL,
58 // ESCAPE or PASS. We DON'T set the SPECIAL flag since if we encounter these
62 // This character is disallowed in URLs. Note that the "special" bit is also
65 INVALID = INVALID_BIT | SPECIAL,
69 // than one bits because they also turn on the "special" flag. Special is the
74 // Dot is even more special, and the escaped version is handled specially by
76 // bit is never handled (we just need the "special") bit.
83 ESCAPE, PASS, ESCAPE, ESCAPE, PASS, ESCAPE, PASS, PASS, PASS, PASS, PASS, PASS, PASS, UNESCAPE,SPECIAL, PASS,
105 // The given dot is just part of a filename and is not special.
225 if (flags & SPECIAL) {
226 // Needs special handling of some sort.
235 // special case slashes. Since slashes are much more common than
246 // Copy the dot to the output, it means nothing special.
314 // Nothing special about this character, just append it.