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

1 2

  /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)) ||
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...]
net_util.cc 166 // which should look like this (no leading spaces, \n-separated) (we format
377 tmp = UnescapeURLComponent(encoded_word, UnescapeRule::SPACES);
    [all...]
  /external/chromium/chrome/browser/ui/webui/
fileicon_source.cc 32 std::string escaped_path = UnescapeURLComponent(path, 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);
history_url_provider.cc 608 // good results for local file paths, input with spaces, etc.
    [all...]
autocomplete.cc 299 // Note that we explicitly excluded hosts with spaces above so that
304 // * Trying to navigate to a hostname with spaces
365 // (e.g. "ps/2 games") than a URL. We can still open URLs with spaces in
548 UnescapeRule::SPACES, NULL, NULL, NULL);
    [all...]
  /external/chromium/webkit/glue/
ftp_directory_listing_response_delegate.cc 96 UnescapeRule::Type unescape_rules = UnescapeRule::SPACES |
  /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 |
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Keyboard.java 694 private static final String SPACES = " ";
696 private static String spaces(int count) { method in class:Keyboard.Builder
697 return (count < SPACES.length()) ? SPACES.substring(0, count) : SPACES;
701 Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args));
705 Log.d(BUILDER_TAG, String.format(spaces(mIndent-- * 2) + format, args));
709 Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args));
    [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);
  /external/chromium/chrome/common/extensions/
extension_file_util.cc 528 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
  /dalvik/docs/
prettify.js 372 /** returns a function that expand tabs to spaces. This function can be fed
380 var SPACES = ' ';
397 // nSpaces is the amount of padding -- the number of spaces needed
402 for (; nSpaces >= 0; nSpaces -= SPACES.length) {
403 out.push(SPACES.substring(0, nSpaces));
    [all...]
  /external/chromium/net/ftp/
ftp_network_transaction.cc 457 UnescapeRule::Type unescape_rules = UnescapeRule::SPACES |
    [all...]
  /external/chromium/chrome/browser/history/
in_memory_url_index.cc 167 UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.text_3.5.0.v20100601-1300.jar 
  /external/jdiff/
xerces.jar 

Completed in 656 milliseconds

1 2