HomeSort by relevance Sort by last modified time
    Searched refs:SPACES (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/chromium_org/extensions/common/
file_util.cc 24 net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS);
43 net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS);
  /external/chromium/net/base/
data_url.cc 67 // Preserve spaces if dealing with text or xml input, same as mozilla:
71 // (Spaces in a data URL should be escaped, which is handled below, so any
72 // spaces now are wrong. People expect to be able to enter them in the URL
81 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS |
95 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS |
escape_unittest.cc 100 // Spaces are plus escaped like web forms.
169 {"Some%20random text %25%2dOK", UnescapeRule::SPACES,
174 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS,
179 {"Hello%20%13%10world %23# %3F? %3D= %26& %25% %2B+", UnescapeRule::SPACES,
189 {"Hello%20%13%10%02", UnescapeRule::SPACES, "Hello %13%10%02"},
230 {L"Some%20random text %25%2dOK", UnescapeRule::SPACES,
235 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS,
240 {L"Hello%20%13%10world %23# %3F? %3D= %26& %25% %2B+", UnescapeRule::SPACES,
254 {L"Hello%20%13%10%02", UnescapeRule::SPACES, L"Hello %13%10%02"},
escape.h 63 // Convert %20 to spaces. In some places where we're showing URLs, we may
67 SPACES = 2,
127 // Spaces change to "+" unless you pass usePlus=false.
net_util_posix.cc 43 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
net_util_win.cc 57 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
escape.cc 45 // return an escaped string. If use_plus is true, spaces are converted
46 // to +, otherwise, if spaces are in the charmap, they are converted to
70 // unescape spaces, but that is controlled by parameters to Unescape*.
141 (value == ' ' && (rules & UnescapeRule::SPACES)) ||
  /external/chromium_org/net/base/
escape_unittest.cc 97 // Spaces are plus escaped like web forms.
156 {"Some%20random text %25%2dOK", UnescapeRule::SPACES,
161 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS,
166 {"Hello%20%13%10world %23# %3F? %3D= %26& %25% %2B+", UnescapeRule::SPACES,
180 {"Hello%20%13%10%02", UnescapeRule::SPACES, "Hello %13%10%02"},
221 {L"Some%20random text %25%2dOK", UnescapeRule::SPACES,
226 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS,
231 {L"Hello%20%13%10world %23# %3F? %3D= %26& %25% %2B+", UnescapeRule::SPACES,
245 {L"Hello%20%13%10%02", UnescapeRule::SPACES, L"Hello %13%10%02"},
data_url.cc 72 // Preserve spaces if dealing with text or xml input, same as mozilla:
76 // (Spaces in a data URL should be escaped, which is handled below, so any
77 // spaces now are wrong. People expect to be able to enter them in the URL
86 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS |
100 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS |
escape.h 21 // Spaces change to "+" unless you pass usePlus=false.
75 // Convert %20 to spaces. In some places where we're showing URLs, we may
79 SPACES = 2,
net_util_posix.cc 51 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
url_util.cc 105 UnescapeRule::SPACES |
  /external/chromium/chrome/browser/ui/webui/
fileicon_source.cc 32 std::string escaped_path = UnescapeURLComponent(path, UnescapeRule::SPACES);
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
screenlock_icon_source.cc 48 net::UnescapeRule::URL_SPECIAL_CHARS | net::UnescapeRule::SPACES);
  /external/chromium/chrome/browser/autocomplete/
history_quick_provider.cc 53 // good results for local file paths, input with spaces, etc.
92 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
155 UnescapeRule::SPACES, NULL, NULL, &inline_autocomplete_offset));
166 UnescapeRule::SPACES, NULL, NULL, &offsets);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CsvUtils.java 41 * spaces around fields before splitting. Note that this behavior doesn't conform to RFC 4180.
199 * Split the CSV text into fields. The leading and trailing spaces of the each field can be
203 * spaces around each fields.
267 private static final String SPACES = " ";
272 final String spaces = SPACES.substring(0, Math.min(padding, SPACES.length())); local
273 sb.append(spaces);
  /external/chromium/webkit/glue/
ftp_directory_listing_response_delegate.cc 96 UnescapeRule::Type unescape_rules = UnescapeRule::SPACES |
  /external/chromium_org/chrome/browser/chromeos/file_manager/
url_util_unittest.cc 23 query, net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS);
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
user_image_source.cc 35 net::UnescapeRule::SPACES));
  /external/chromium_org/webkit/child/
ftp_directory_listing_response_delegate.cc 103 net::UnescapeRule::Type unescape_rules = net::UnescapeRule::SPACES |
  /external/chromium_org/chrome/browser/autocomplete/
history_quick_provider.cc 272 net::UnescapeRule::SPACES, NULL, NULL, &offsets));
276 net::UnescapeRule::SPACES, NULL, NULL, NULL);
  /external/chromium_org/chrome/browser/ui/webui/
fileicon_source.cc 48 net::UnescapeRule::SPACES));
  /external/chromium_org/content/test/
mock_google_streaming_server.cc 47 net::UnescapeRule::SPACES |
  /external/chromium_org/ui/base/webui/
web_ui_util.cc 108 net::UnescapeRule::SPACES));
  /external/chromium_org/net/http/
http_content_disposition.cc 208 net::UnescapeRule::SPACES);
344 value, net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS);

Completed in 257 milliseconds

1 2 3