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

1 2 3 4

  /external/chromium_org/tools/gn/
escape_unittest.cc 6 #include "tools/gn/escape.h"
8 TEST(Escape, UsedQuotes) {
  /external/chromium/net/base/
escape.cc 5 #include "net/base/escape.h"
44 // Given text to escape and a Charmap defining which values to escape,
48 std::string Escape(const std::string& text, const Charmap& charmap,
157 // Invalid escape sequence, just pass the percent through and continue
202 return Escape(text, kQueryCharmap, use_plus);
205 // Convert the string to a sequence of bytes and then % escape anything
209 return UTF8ToUTF16(Escape(UTF16ToUTF8(text), kQueryCharmap, use_plus));
218 return Escape(path, kPathCharmap, false);
228 return Escape(path, kUrlEscape, true)
    [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,
157 // Invalid escape sequence, just pass the percent through and continue
251 return Escape(text, kQueryCharmap, use_plus);
255 return Escape(path, kPathCharmap, false);
259 return Escape(path, kUrlEscape, use_plus);
263 return Escape(input, kNonASCIICharmap, false);
267 return Escape(text, kExternalHandlerCharmap, false)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 67 Escape RN 5
140 M_BD_LOOK8 Escape,7 ;// Load Escape Value
141 LSR Escape,Escape,#25
142 CMP Escape,#3 ;// check for escape mode
144 BNE notEscapemode ;// Branch if not in Escape mode 3
147 CMP shortVideoHeader,#0 ;// Check shortVideoHeader flag to know the type of Escape mode
150 ;// Escape Mode
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 67 Escape RN 5
140 M_BD_LOOK8 Escape,7 ;// Load Escape Value
141 LSR Escape,Escape,#25
142 CMP Escape,#3 ;// check for escape mode
144 BNE notEscapemode ;// Branch if not in Escape mode 3
147 CMP shortVideoHeader,#0 ;// Check shortVideoHeader flag to know the type of Escape mode
150 ;// Escape Mode
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
chrome_v8_context.cc 86 return handle_scope.Escape(
92 return handle_scope.Escape(function->Call(global, argc, argv));
93 return handle_scope.Escape(
v8_schema_registry.cc 78 return handle_scope.Escape(v8_apis);
104 return handle_scope.Escape(to_return);
binding_generating_native_handler.cc 42 return scope.Escape(object);
module_system.cc 188 return handle_scope.Escape(RequireForJsInner(
218 return handle_scope.Escape(exports);
270 return handle_scope.Escape(exports);
311 return handle_scope.Escape(
320 return handle_scope.Escape(
333 return handle_scope.Escape(result);
511 return handle_scope.Escape(result);
518 return handle_scope.Escape(
566 return handle_scope.Escape(v8::Local<v8::String>(
  /external/chromium_org/tools/perf/benchmarks/
dromaeo.py 22 def Escape(k):
33 results.Add(Escape(k), 'runs/s', float(v), data_type=data_type)
  /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/chromium_org/tools/grit/grit/gather/
skeleton_gatherer.py 27 # rules defined by self.Escape()
47 def Escape(self, text):
95 return self.Escape(text)
igoogle_strings.py 122 def Escape(self, text):
muppet_strings.py 132 def Escape(self, text):
rc.py 29 # How to escape certain characters
47 def Escape(text):
  /external/chromium_org/third_party/markupsafe/
__init__.py 16 __all__ = ['Markup', 'soft_unicode', 'escape', 'escape_silent']
30 The `escape` function returns markup objects so that double escaping can't
49 :meth:`escape` classmethod to create a :class:`Markup` object:
51 >>> Markup.escape("Hello <em>World</em>!")
55 arguments are passed through the :func:`escape` function:
80 return self.__class__(super(Markup, self).__add__(self.escape(other)))
85 return self.escape(other).__add__(self)
96 arg = tuple(_MarkupEscapeHelper(x, self.escape) for x in arg)
98 arg = _MarkupEscapeHelper(arg, self.escape)
108 return self.__class__(text_type.join(self, map(self.escape, seq))
157 def escape(cls, s): member in class:Markup
228 from markupsafe._speedups import escape, escape_silent, soft_unicode namespace
230 from markupsafe._native import escape, escape_silent, soft_unicode namespace
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceNamedConstructor.cpp 121 return scope.Escape(result);
154 return handleScope.Escape(templ);
V8TestNamedConstructor.cpp 132 return scope.Escape(result);
165 return handleScope.Escape(templ);
V8TestInterfaceDoNotCheckConstants.cpp 108 return handleScope.Escape(templ);
V8TestInterfaceEmpty.cpp 103 return handleScope.Escape(templ);
V8TestInterfaceEventTarget.cpp 103 return handleScope.Escape(templ);
  /external/chromium_org/v8/src/
uri.h 203 static Handle<String> Escape(Isolate* isolate, Handle<String> string);
247 Handle<String> URIEscape::Escape(Isolate* isolate, Handle<String> string) {
  /external/qemu/
curses_keys.h 47 [0x01b] = 1, /* Escape */
480 { "Escape", 27 },

Completed in 1000 milliseconds

1 2 3 4