Home | History | Annotate | Download | only in src

Lines Matching refs:source

4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
146 unsigned int source = host[i];
147 if (source == '%') {
149 // Source will be used only if decode operation was successful.
151 reinterpret_cast<unsigned char*>(&source))) {
161 if (source < 0x80) {
163 unsigned char replacement = kHostCharLookup[source];
166 AppendEscapedChar(source, output);
170 AppendEscapedChar(source, output);
181 output->push_back(static_cast<OUTCHAR>(source));