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

1 2 3

  /external/chromium_org/net/base/
escape_unittest.cc 94 // Spaces are plus escaped like web forms.
129 url, UnescapeRule::SPACES, &adjustments);
163 {"Some%20random text %25%2dOK", UnescapeRule::SPACES,
168 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS,
173 {"Hello%20%13%10world %23# %3F? %3D= %26& %25% %2B+", UnescapeRule::SPACES,
187 {"Hello%20%13%10%02", UnescapeRule::SPACES, "Hello %13%10%02"},
253 {L"Some%20random text %25%2dOK", UnescapeRule::SPACES,
258 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS,
263 {L"Hello%20%13%10world %23# %3F? %3D= %26& %25% %2B+", UnescapeRule::SPACES,
277 {L"Hello%20%13%10%02", UnescapeRule::SPACES, L"Hello %13%10%02"}
    [all...]
data_url.cc 87 // Preserve spaces if dealing with text or xml input, same as mozilla:
91 // (Spaces in a data URL should be escaped, which is handled below, so any
92 // spaces now are wrong. People expect to be able to enter them in the URL
101 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS |
115 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS |
escape.h 22 // Spaces change to "+" unless you pass usePlus=false.
76 // Convert %20 to spaces. In some places where we're showing URLs, we may
80 SPACES = 2,
filename_util.cc 108 path, UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
url_util.cc 105 UnescapeRule::SPACES |
escape.cc 40 // return an escaped string. If use_plus is true, spaces are converted
41 // to +, otherwise, if spaces are in the charmap, they are converted to
65 // unescape spaces, but that is controlled by parameters to Unescape*.
206 (first_byte == ' ' && (rules & UnescapeRule::SPACES)) ||
filename_util_internal.cc 29 // Handle CreateFile() stripping trailing dots and spaces on filenames
65 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
  /external/chromium_org/chrome/browser/media/
midi_permission_infobar_delegate.cc 61 net::UnescapeRule::SPACES, NULL, NULL, NULL));
  /external/chromium_org/chrome/browser/notifications/
desktop_notification_infobar_delegate.cc 61 net::UnescapeRule::SPACES, NULL, NULL, NULL));
  /external/chromium_org/chrome/browser/services/gcm/
push_messaging_infobar_delegate.cc 50 net::UnescapeRule::SPACES, NULL, NULL, NULL));
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
screenlock_icon_source.cc 49 net::UnescapeRule::URL_SPECIAL_CHARS | net::UnescapeRule::SPACES);
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
user_image_source.cc 30 net::UnescapeRule::SPACES));
  /external/chromium_org/chrome/browser/content_settings/
permission_bubble_request_impl.cc 81 net::UnescapeRule::SPACES, NULL, NULL, NULL));
  /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/geolocation/
geolocation_infobar_delegate.cc 143 net::UnescapeRule::SPACES, NULL, NULL, NULL));
  /external/chromium_org/content/child/
ftp_directory_listing_response_delegate.cc 110 net::UnescapeRule::Type unescape_rules = net::UnescapeRule::SPACES |
  /external/chromium_org/chrome/browser/autocomplete/
history_quick_provider.cc 244 net::UnescapeRule::SPACES, NULL, NULL, NULL),
250 info.url(), languages_, format_types, net::UnescapeRule::SPACES, NULL,
bookmark_provider.cc 32 // Removes leading spaces from |title| before displaying, otherwise it looks
194 net::UnescapeRule::SPACES, NULL, NULL, &offsets);
  /external/chromium_org/chrome/browser/
chrome_quota_permission_context.cc 102 net::UnescapeRule::SPACES, NULL, NULL, NULL)
228 net::UnescapeRule::SPACES, NULL, NULL, NULL)
  /external/chromium_org/chrome/browser/ui/webui/
fileicon_source.cc 47 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 107 net::UnescapeRule::SPACES));
  /external/chromium_org/net/http/
http_content_disposition.cc 190 net::UnescapeRule::SPACES);
326 value, net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS);
  /external/chromium_org/extensions/common/
file_util.cc 338 net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS);
357 net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardBuilder.java 196 private static final String SPACES = " ";
198 private static String spaces(final int count) { method in class:KeyboardBuilder
199 return (count < SPACES.length()) ? SPACES.substring(0, count) : SPACES;
203 Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args));
207 Log.d(BUILDER_TAG, String.format(spaces(mIndent-- * 2) + format, args));
211 Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args));
    [all...]

Completed in 492 milliseconds

1 2 3