/external/chromium/net/base/ |
net_util.h | 324 // the URL for human readability. You will generally want |UnescapeRule::SPACES| 325 // for display to the user if you can handle spaces, or |UnescapeRule::NORMAL| 358 // format_types = kFormatUrlOmitAll and unescape = SPACES. This is the typical 362 return FormatUrl(url, languages, kFormatUrlOmitAll, UnescapeRule::SPACES,
|
net_util_unittest.cc | 322 // Embedded spaces will be turned to %20 in the display. 803 // by web servers in the wild). Spaces between them are removed. 871 // spaces [all...] |
/external/chromium_org/chrome/browser/autocomplete/ |
autocomplete_provider.cc | 118 net::UnescapeRule::SPACES, NULL, NULL, NULL);
|
bookmark_provider.cc | 173 net::UnescapeRule::SPACES, NULL, NULL, NULL);
|
zero_suggest_provider.cc | 330 net::kFormatUrlOmitAll, net::UnescapeRule::SPACES, NULL, NULL, NULL);
|
history_url_provider.cc | 721 // good results for local file paths, input with spaces, etc. [all...] |
/external/chromium_org/chrome/browser/history/ |
in_memory_url_index_types.cc | 48 net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS,
|
/external/chromium_org/chrome/browser/ui/bookmarks/ |
bookmark_utils.cc | 273 net::UnescapeRule::SPACES, NULL, NULL, NULL);
|
/external/chromium_org/net/base/ |
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*. 141 (value == ' ' && (rules & UnescapeRule::SPACES)) ||
|
net_util.h | 272 // Then, leading and trailing '.'s will be removed. On Windows, trailing spaces 365 // the URL for human readability. You will generally want |UnescapeRule::SPACES| 366 // for display to the user if you can handle spaces, or |UnescapeRule::NORMAL| 410 // format_types = kFormatUrlOmitAll and unescape = SPACES. This is the typical 414 return FormatUrl(url, languages, kFormatUrlOmitAll, UnescapeRule::SPACES,
|
net_util_win.cc | 120 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
|
/external/chromium_org/webkit/browser/fileapi/ |
file_system_url.cc | 76 net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS |
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
KeyboardBuilder.java | 195 private static final String SPACES = " "; 197 private static String spaces(final int count) { method in class:KeyboardBuilder 198 return (count < SPACES.length()) ? SPACES.substring(0, count) : SPACES; 202 Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args)); 206 Log.d(BUILDER_TAG, String.format(spaces(mIndent-- * 2) + format, args)); 210 Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args)); [all...] |
/external/chromium/chrome/browser/autocomplete/ |
history_url_provider.cc | 608 // good results for local file paths, input with spaces, etc. [all...] |
/external/chromium/chrome/browser/net/ |
url_fixer_upper.cc | 542 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS)); 546 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
|
/external/chromium/chrome/browser/policy/ |
device_management_service_unittest.cc | 219 UnescapeRule::SPACES | 230 UnescapeRule::SPACES |
|
/external/chromium_org/chrome/browser/extensions/ |
isolated_app_browsertest.cc | 72 net::UnescapeRule::SPACES | 78 net::UnescapeRule::SPACES |
|
extension_apitest.cc | 109 net::UnescapeRule::SPACES |
|
/external/chromium_org/chrome/common/net/ |
url_fixer_upper.cc | 602 net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS)); 606 net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS);
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPUtilsImpl.java | 195 // Skip any leading spaces and separation characters. Always skip commas here. 241 break; // Have multiple spaces, or a space followed by a 827 * zero or more spaces. Any of the recognized semicolons or spaces are 850 throw new XMPException("Separator can have only spaces and one semicolon", 905 * Classifies the character into normal chars, spaces, semicola, quotes, 914 if (SPACES.indexOf(ch) >= 0 || (0x2000 <= ch && ch <= 0x200B)) 1040 // Multiple spaces are a separator. 1131 private static final String SPACES = "\u0020\u3000\u303F"; [all...] |
/external/chromium_org/chrome/browser/extensions/api/web_request/ |
form_data_parser.cc | 354 net::UnescapeRule::SPACES | net::UnescapeRule::REPLACE_PLUS_WITH_SPACE;
|
/external/chromium_org/components/policy/core/common/cloud/ |
device_management_service_unittest.cc | 341 net::UnescapeRule::SPACES | 352 net::UnescapeRule::SPACES |
|
/external/chromium_org/ui/gfx/ |
text_elider.cc | 224 net::UnescapeRule::SPACES, &parsed, NULL, NULL); 529 net::UnescapeRule::SPACES, &parsed, &prefix_end_, NULL); [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
safe_browsing_util.cc | 221 UnescapeRule::CONTROL_CHARS | UnescapeRule::SPACES |
|
/external/chromium/chrome/browser/ui/views/bookmarks/ |
bookmark_editor_view.cc | 294 UnescapeRule::SPACES, NULL, NULL, NULL);
|