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

1 2 3

  /external/protobuf/src/google/protobuf/util/internal/
json_escaping.h 79 // Escape the given ByteSource to the given ByteSink.
80 static void Escape(strings::ByteSource* input, strings::ByteSink* output);
json_objectwriter.cc 139 JsonEscaping::Escape(&source, &sink_);
174 JsonEscaping::Escape(&source, &sink_);
json_escaping.cc 329 // Tries to escape the given code point first. If the given code point
358 void JsonEscaping::Escape(strings::ByteSource* input,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 81 Escape RN 5
154 M_BD_LOOK8 Escape,7 ;// Load Escape Value
155 LSR Escape,Escape,#25
156 CMP Escape,#3 ;// check for escape mode
158 BNE notEscapemode ;// Branch if not in Escape mode 3
161 CMP shortVideoHeader,#0 ;// Check shortVideoHeader flag to know the type of Escape mode
164 ;// Escape Mode
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 81 Escape RN 5
154 M_BD_LOOK8 Escape,7 ;// Load Escape Value
155 LSR Escape,Escape,#25
156 CMP Escape,#3 ;// check for escape mode
158 BNE notEscapemode ;// Branch if not in Escape mode 3
161 CMP shortVideoHeader,#0 ;// Check shortVideoHeader flag to know the type of Escape mode
164 ;// Escape Mode
    [all...]
  /external/v8/tools/
android-run.py 69 def Escape(arg):
93 args = [Escape(arg) for arg in sys.argv[1:]]
  /external/v8/src/
uri.h 38 // ES6 section B.2.1.1 escape (string)
39 static MaybeHandle<String> Escape(Isolate* isolate, Handle<String> string);
  /prebuilts/go/darwin-x86/src/text/tabwriter/
tabwriter.go 73 // A segment of text may be escaped by bracketing it with Escape
77 // Escape characters are stripped from the output; otherwise they
79 // width of the escaped text is always computed excluding the Escape
105 endChar byte // terminating char of escaped sequence (Escape for escapes, '>', ';' for HTML tags/entities, or 0)
152 // Strip Escape characters bracketing escaped text segments
400 // To escape a text segment, bracket it with Escape characters.
407 const Escape = '\xff'
412 case Escape:
413 b.endChar = Escape
    [all...]
  /prebuilts/go/linux-x86/src/text/tabwriter/
tabwriter.go 73 // A segment of text may be escaped by bracketing it with Escape
77 // Escape characters are stripped from the output; otherwise they
79 // width of the escaped text is always computed excluding the Escape
105 endChar byte // terminating char of escaped sequence (Escape for escapes, '>', ';' for HTML tags/entities, or 0)
152 // Strip Escape characters bracketing escaped text segments
400 // To escape a text segment, bracket it with Escape characters.
407 const Escape = '\xff'
412 case Escape:
413 b.endChar = Escape
    [all...]
  /external/libmojo/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
    [all...]
  /prebuilts/go/darwin-x86/src/html/template/
content_test.go 132 // Escape sequence not over-escaped.
146 // Escape sequence not over-escaped.
159 // Escape sequence not over-escaped.
172 // Escape sequence not over-escaped.
186 // Escape sequence not over-escaped.
213 // Escape sequence not over-escaped.
  /prebuilts/go/linux-x86/src/html/template/
content_test.go 132 // Escape sequence not over-escaped.
146 // Escape sequence not over-escaped.
159 // Escape sequence not over-escaped.
172 // Escape sequence not over-escaped.
186 // Escape sequence not over-escaped.
213 // Escape sequence not over-escaped.
  /prebuilts/go/darwin-x86/test/
escape4.go 7 // Test, using compiler diagnostic flags, that the escape analysis is working.
23 // Escape analysis used to miss inlined code in closures.
25 func() { // ERROR "func literal does not escape" "can inline f1.func1"
  /prebuilts/go/linux-x86/test/
escape4.go 7 // Test, using compiler diagnostic flags, that the escape analysis is working.
23 // Escape analysis used to miss inlined code in closures.
25 func() { // ERROR "func literal does not escape" "can inline f1.func1"
  /external/llvm/unittests/Support/
RegexTest.cpp 130 TEST_F(RegexTest, Escape) {
131 EXPECT_EQ("a\\[bc\\]", Regex::escape("a[bc]"));
132 EXPECT_EQ("abc\\{1\\\\,2\\}", Regex::escape("abc{1\\,2}"));
  /external/skia/experimental/SkV8Example/
JsContext.cpp 58 // we need to call Close to let one, the result, escape into the
60 return handleScope.Escape(result);
  /external/v8/samples/
process.cc 352 // we need to call Close to let one, the result, escape into the
354 return handle_scope.Escape(result);
428 return handle_scope.Escape(result);
466 // we need to call Close to let one, the result, escape into the
468 return handle_scope.Escape(result);
560 return handle_scope.Escape(result);
  /external/clang/lib/Driver/
Job.cpp 83 const bool Escape = std::strpbrk(Arg, "\"\\$");
85 if (!Quote && !Escape) {
90 // Quote and escape. This isn't really complete, but good enough.
  /prebuilts/go/darwin-x86/src/go/printer/
printer.go 210 p.output = append(p.output, tabwriter.Escape) // protect '\n' in //line from tabwriter interpretation
212 p.output = append(p.output, tabwriter.Escape)
256 // and p.last. If isLit is set, s is escaped w/ tabwriter.Escape characters
263 // avoids processing extra escape characters and reduces run time of the
282 // tabwriter.Escape bytes since they do not appear in legal
284 p.output = append(p.output, tabwriter.Escape)
315 p.output = append(p.output, tabwriter.Escape)
    [all...]
  /prebuilts/go/linux-x86/src/go/printer/
printer.go 210 p.output = append(p.output, tabwriter.Escape) // protect '\n' in //line from tabwriter interpretation
212 p.output = append(p.output, tabwriter.Escape)
256 // and p.last. If isLit is set, s is escaped w/ tabwriter.Escape characters
263 // avoids processing extra escape characters and reduces run time of the
282 // tabwriter.Escape bytes since they do not appear in legal
284 p.output = append(p.output, tabwriter.Escape)
315 p.output = append(p.output, tabwriter.Escape)
    [all...]
  /build/make/core/
dumpvar.mk 117 @# Escape \` to defer the execution of report_config_sh to preserve the line breaks.
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
vt320.java 223 Escape = new String[4];
232 Escape[0] = Escape[1] = Escape[2] = Escape[3] = "\u001b";
531 res = codes.getProperty(prefixes[i] + "ESCAPE");
533 Escape[i] = unEscape(res);
827 private String Escape[], BackSpace[], NUMDot[], NUMPlus[];
842 * Replace escape code characters (backslash + identifier) with their respective codes.
    [all...]
  /external/v8/src/builtins/
builtins-global.cc 62 // ES6 section B.2.1.1 escape (string)
70 RETURN_RESULT_OR_FAILURE(isolate, Uri::Escape(isolate, string));
  /external/v8/tools/vim/
ninja-build.vim 73 # Escape \ for Vim, and ^ for both Vim and shell.
  /prebuilts/go/darwin-x86/src/regexp/syntax/
doc.go 75 Escape sequences:

Completed in 6520 milliseconds

1 2 3