HomeSort by relevance Sort by last modified time
    Searched defs:escape (Results 101 - 125 of 989) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
DelimitedWriter.java 96 delegate.write(escape(field)); method
158 private String escape(final String value) { method in class:DelimitedWriter
161 // Escape and quote if the source value contains the delimiter
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
CharLiteralExpr.java 79 public static CharLiteralExpr escape(String string) { method in class:CharLiteralExpr
StringLiteralExpr.java 69 public static StringLiteralExpr escape(String string) { method in class:StringLiteralExpr
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
FunctionRegistry.java 56 public void escape(String name, String input, Appendable output) throws IOException { method in class:FunctionRegistry
141 * Registers an escaper, that is called when executing a <?cs escape ?> command.
143 * @param name The name with which <?cs escape ?> will invoke this escaper.
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
filters.py 28 """legacy HTML escape for non-unicode mode."""
39 html_escape = markupsafe.escape
108 def escape(self, text): member in class:XMLEntityEscaper
172 text = _html_entities_escaper.escape(bad_text)
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/
PercentEscaper.java 189 public String escape(String s) { method in class:PercentEscaper
204 protected char[] escape(int cp) { method in class:PercentEscaper
  /external/valgrind/none/tests/amd64/
faultstatus.c 21 static jmp_buf escape; variable
70 siglongjmp(escape, ok + 1);
127 if (sigsetjmp(escape, 1) == 0) {
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscaperBuilder.java 33 * a very fast escape method.
45 * Overriding escape method to be slightly faster for this decorator. We test the replacements
48 @Override public String escape(String s) { method in class:CharEscaperBuilder.CharArrayDecorator
59 @Override protected char[] escape(char c) { method in class:CharEscaperBuilder.CharArrayDecorator
PercentEscaper.java 190 public String escape(String s) { method in class:PercentEscaper
206 protected char[] escape(int cp) { method in class:PercentEscaper
  /prebuilts/go/darwin-x86/src/html/template/
template.go 93 // escape escapes all associated templates.
94 func (t *Template) escape() error { func
119 if err := t.escape(); err != nil {
  /prebuilts/go/darwin-x86/test/
escape_closure.go 7 // Test escape analysis for closure arguments.
9 package escape package
15 func(p *int) { // ERROR "p does not escape" "func literal does not escape"
17 // BAD: x should not escape to heap here
24 func(p *int) { // ERROR "p does not escape" "func literal does not escape"
26 // BAD: x should not escape to heap here
33 // BAD: x should not escape here
35 func(p *int) { // ERROR "p does not escape" "func literal does not escape
    [all...]
escape_field.go 7 // Test escape analysis with respect to field assignments.
9 package escape package
33 // BAD: &i should not escape
56 // BAD: &i should not escape here
69 // BAD: &i should not escape
71 field6(&x) // ERROR "field6a &x does not escape"
77 y.x.p1 = &i // ERROR "field7 &i does not escape$"
107 // BAD: &i should not escape
123 // BAD: &i should not escape
130 x := &X{p1: &i} // ERROR "&i escapes to heap$" "field13 &X literal does not escape$
    [all...]
escape_indir.go 7 // Test escape analysis when assigning to indirections.
9 package escape package
26 x := &ConstPtr{} // ERROR "&ConstPtr literal does not escape"
27 // BAD: i should not escape here
41 x := &ConstPtr{} // ERROR "&ConstPtr literal does not escape"
62 x := &ConstPtr{} // ERROR "&ConstPtr literal does not escape"
69 *p = *&ConstPtr{} // ERROR "&ConstPtr literal does not escape"
75 p1 := &ConstPtr{} // ERROR "&ConstPtr literal does not escape"
80 // BAD: p should not escape here
82 p1 := &ConstPtr{} // ERROR "&ConstPtr literal does not escape"
    [all...]
escape_slice.go 7 // Test escape analysis for slices.
9 package escape package
20 // BAD: i should not escape
50 func slice4(s []*int) { // ERROR "s does not escape"
55 func slice5(s []*int) { // ERROR "s does not escape"
57 s = make([]*int, 10) // ERROR "make\(\[\]\*int, 10\) does not escape"
64 s := make([]*int, 10) // ERROR "make\(\[\]\*int, 10\) does not escape"
65 // BAD: i should not escape
72 s := make([]*int, 10) // ERROR "make\(\[\]\*int, 10\) does not escape"
80 s := []*int{&i} // ERROR "&i does not escape" "literal does not escape
    [all...]
  /prebuilts/go/linux-x86/src/html/template/
template.go 93 // escape escapes all associated templates.
94 func (t *Template) escape() error { func
119 if err := t.escape(); err != nil {
  /prebuilts/go/linux-x86/test/
escape_closure.go 7 // Test escape analysis for closure arguments.
9 package escape package
15 func(p *int) { // ERROR "p does not escape" "func literal does not escape"
17 // BAD: x should not escape to heap here
24 func(p *int) { // ERROR "p does not escape" "func literal does not escape"
26 // BAD: x should not escape to heap here
33 // BAD: x should not escape here
35 func(p *int) { // ERROR "p does not escape" "func literal does not escape
    [all...]
escape_field.go 7 // Test escape analysis with respect to field assignments.
9 package escape package
33 // BAD: &i should not escape
56 // BAD: &i should not escape here
69 // BAD: &i should not escape
71 field6(&x) // ERROR "field6a &x does not escape"
77 y.x.p1 = &i // ERROR "field7 &i does not escape$"
107 // BAD: &i should not escape
123 // BAD: &i should not escape
130 x := &X{p1: &i} // ERROR "&i escapes to heap$" "field13 &X literal does not escape$
    [all...]
escape_indir.go 7 // Test escape analysis when assigning to indirections.
9 package escape package
26 x := &ConstPtr{} // ERROR "&ConstPtr literal does not escape"
27 // BAD: i should not escape here
41 x := &ConstPtr{} // ERROR "&ConstPtr literal does not escape"
62 x := &ConstPtr{} // ERROR "&ConstPtr literal does not escape"
69 *p = *&ConstPtr{} // ERROR "&ConstPtr literal does not escape"
75 p1 := &ConstPtr{} // ERROR "&ConstPtr literal does not escape"
80 // BAD: p should not escape here
82 p1 := &ConstPtr{} // ERROR "&ConstPtr literal does not escape"
    [all...]
escape_slice.go 7 // Test escape analysis for slices.
9 package escape package
20 // BAD: i should not escape
50 func slice4(s []*int) { // ERROR "s does not escape"
55 func slice5(s []*int) { // ERROR "s does not escape"
57 s = make([]*int, 10) // ERROR "make\(\[\]\*int, 10\) does not escape"
64 s := make([]*int, 10) // ERROR "make\(\[\]\*int, 10\) does not escape"
65 // BAD: i should not escape
72 s := make([]*int, 10) // ERROR "make\(\[\]\*int, 10\) does not escape"
80 s := []*int{&i} // ERROR "&i does not escape" "literal does not escape
    [all...]
  /external/guava/guava-tests/test/com/google/common/escape/
UnicodeEscaperTest.java 17 package com.google.common.escape;
43 protected char[] escape(int c) {
51 protected char[] escape(int cp) {
80 assertEquals(expected.toString(), SIMPLE_ESCAPER.escape(input.toString()));
130 e.escape((String) null);
163 protected char[] escape(int cp) {
177 e.escape("\0HeLLo \uD800\uDC00 WorlD!\n"));
189 return e.escape(s);
  /art/tools/ahat/src/main/com/android/ahat/
DocString.java 69 mStringBuilder.append(HtmlEscaper.escape(text));
187 mStringBuilder.append(HtmlEscaper.escape(alt));
196 mStringBuilder.append(HtmlEscaper.escape(alt));
  /build/soong/cc/
cmakelists.go 350 // - Double escape all special \ and " characters.
359 // we should create a method NinjaAndShellUnescape in escape.go and use that instead.
368 func escape(s string) string { func
375 s = escape(s)
376 s = escape(s)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
re.py 87 escape Backslash all non-alphanumerics in a string.
114 "compile", "purge", "template", "escape", "I", "L", "M", "S", "X",
208 def escape(pattern): function
209 "Escape all non-alphanumeric characters in pattern."
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
saxutils.py 23 def escape(data, entities={}): function
24 """Escape &, <, and > in a string of data.
26 You can escape other strings of data by passing a dictionary as
54 """Escape and quote an attribute value.
56 Escape &, <, and > in a string of data, then quote it for use as
60 You can escape other strings of data by passing a dictionary as
66 data = escape(data, entities)
188 self._write(escape(content))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
re.py 87 escape Backslash all non-alphanumerics in a string.
110 "compile", "purge", "template", "escape", "I", "L", "M", "S", "X",
206 def escape(pattern): function
207 "Escape all non-alphanumeric characters in pattern."

Completed in 722 milliseconds

1 2 3 45 6 7 8 91011>>