HomeSort by relevance Sort by last modified time
    Searched defs:Escape (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/tools/grit/grit/gather/
admin_template.py 40 def Escape(self, text):
igoogle_strings.py 122 def Escape(self, text):
muppet_strings.py 132 def Escape(self, text):
policy_json.py 182 str_val = "'%s'" % self.Escape(str_val)
247 def Escape(self, text):
skeleton_gatherer.py 27 # rules defined by self.Escape()
47 def Escape(self, text):
95 return self.Escape(text)
rc.py 29 # How to escape certain characters
47 def Escape(text):
  /external/chromium_org/v8/tools/
android-run.py 69 def Escape(arg):
92 args = [Escape(arg) for arg in sys.argv[1:]]
nacl-run.py 64 def Escape(arg):
136 args = [Escape(arg) for arg in sys.argv[1:]]
  /external/chromium_org/chrome/browser/
chrome_process_finder_win.cc 33 // The following is copied from net/base/escape.cc. We don't want to depend on
37 // TODO(koz): Move these functions out of net/base/escape.cc into base/escape.cc
40 // BEGIN COPY from net/base/escape.cc
61 // Given text to escape and a Charmap defining which values to escape,
65 std::string Escape(const std::string& text, const Charmap& charmap,
92 return Escape(text, kQueryCharmap, use_plus);
95 // END COPY from net/base/escape.cc
  /external/clang/lib/Driver/
Job.cpp 79 const bool Escape = std::strpbrk(Arg, "\"\\$");
81 if (!Quote && !Escape) {
86 // Quote and escape. This isn't really complete, but good enough.
  /external/chromium_org/tools/perf/benchmarks/
dromaeo.py 61 def Escape(k):
79 results.current_page, Escape(name), 'runs/s', value, important))
  /external/chromium_org/v8/src/
uri.h 183 MUST_USE_RESULT static MaybeHandle<String> Escape(Isolate* isolate,
228 MaybeHandle<String> URIEscape::Escape(Isolate* isolate, Handle<String> string) {
api.cc 598 i::Object** EscapableHandleScope::Escape(i::Object** escape_value) {
601 "EscapeableHandleScope::Escape",
602 "Escape value set twice");
    [all...]
  /external/chromium_org/net/base/
escape.cc 5 #include "net/base/escape.h"
39 // Given text to escape and a Charmap defining which values to escape,
43 std::string Escape(const std::string& text, const Charmap& charmap,
305 return Escape(text, kQueryCharmap, use_plus);
309 return Escape(path, kPathCharmap, false);
313 return Escape(path, kUrlEscape, use_plus);
317 return Escape(input, kNonASCIICharmap, false);
321 return Escape(text, kExternalHandlerCharmap, false);
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_util.cc 14 #include "net/base/escape.h"
277 std::string Escape(const std::string& url) {
384 // 7. After performing all above steps, percent-escape all chars in url which
386 std::string escaped_canon_url_str(Escape(url_unescaped_with_can_hostpath));
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
braille_key_types.js 107 'Escape': 27,
  /external/chromium_org/v8/include/
v8.h 853 * which will be later filled with the escape value.
865 V8_INLINE Local<T> Escape(Local<T> value) {
867 Escape(reinterpret_cast<internal::Object**>(*value));
872 internal::Object** Escape(internal::Object** escape_value);
    [all...]

Completed in 767 milliseconds