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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/tools/diag-build/
diag-build.sh 90 escape () { function
94 escCC=$(escape $CC)
95 escCXX=$(escape $CXX)
  /external/guava/guava/src/com/google/common/escape/
Escaper.java 17 package com.google.common.escape;
37 * individual {@code char} values, it is not safe to assume that {@code escape(s)} is equivalent to
38 * {@code escape(s.substring(0, n)) + escape(s.substing(n))} for arbitrary {@code n}. This is
40 * escape strings and concatenate the results is if you can rule out this possibility, either by
87 public abstract String escape(String string); method in class:Escaper
93 return escape(from);
98 * Returns a {@link Function} that invokes {@link #escape(String)} on this escaper.
package-info.java 19 * {@link com.google.common.escape.Escaper}.
30 package com.google.common.escape;
Platform.java 17 package com.google.common.escape;
ArrayBasedCharEscaper.java 17 package com.google.common.escape;
117 public final String escape(String s) { method in class:ArrayBasedCharEscaper
134 @Override protected final char[] escape(char c) { method in class:ArrayBasedCharEscaper
156 * @param c the character to escape
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
literals.py 19 def escape(m): function
28 raise ValueError("invalid hex string escape ('\\%s')" % tail)
32 raise ValueError("invalid hex string escape ('\\%s')" % tail)
37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
48 return re.sub(r"\\(\'|\"|\\|[abfnrtv]|x.{0,2}|[0-7]{1,3})", escape, s)
  /external/autotest/utils/
gslib.py 18 def escape(name): function
19 """Escape GS object name.
29 """Percent escape a character.
31 @param char: character to escape.
  /external/libmojo/third_party/markupsafe/
_native.py 15 def escape(s): function
32 """Like :func:`escape` but converts `None` into an empty
37 return escape(s)
  /external/python/cpython2/Lib/lib2to3/pgen2/
literals.py 19 def escape(m): function
28 raise ValueError("invalid hex string escape ('\\%s')" % tail)
32 raise ValueError("invalid hex string escape ('\\%s')" % tail)
37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
48 return re.sub(r"\\(\'|\"|\\|[abfnrtv]|x.{0,2}|[0-7]{1,3})", escape, s)
  /external/python/cpython3/Lib/lib2to3/pgen2/
literals.py 19 def escape(m): function
28 raise ValueError("invalid hex string escape ('\\%s')" % tail)
32 raise ValueError("invalid hex string escape ('\\%s')" % tail)
37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
48 return re.sub(r"\\(\'|\"|\\|[abfnrtv]|x.{0,2}|[0-7]{1,3})", escape, s)
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
literals.py 19 def escape(m): function
28 raise ValueError("invalid hex string escape ('\\%s')" % tail)
32 raise ValueError("invalid hex string escape ('\\%s')" % tail)
37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
48 return re.sub(r"\\(\'|\"|\\|[abfnrtv]|x.{0,2}|[0-7]{1,3})", escape, s)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
literals.py 19 def escape(m): function
28 raise ValueError("invalid hex string escape ('\\%s')" % tail)
32 raise ValueError("invalid hex string escape ('\\%s')" % tail)
37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
48 return re.sub(r"\\(\'|\"|\\|[abfnrtv]|x.{0,2}|[0-7]{1,3})", escape, s)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug320.go 30 escape(&t)
40 func escape(*int) { func
issue13587.go 14 func escape(p *error) func
17 escape(&err)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug320.go 30 escape(&t)
40 func escape(*int) { func
issue13587.go 14 func escape(p *error) func
17 escape(&err)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
literals.py 19 def escape(m): function
28 raise ValueError("invalid hex string escape ('\\%s')" % tail)
32 raise ValueError("invalid hex string escape ('\\%s')" % tail)
37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
48 return re.sub(r"\\(\'|\"|\\|[abfnrtv]|x.{0,2}|[0-7]{1,3})", escape, s)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
literals.py 19 def escape(m): function
28 raise ValueError("invalid hex string escape ('\\%s')" % tail)
32 raise ValueError("invalid hex string escape ('\\%s')" % tail)
37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
48 return re.sub(r"\\(\'|\"|\\|[abfnrtv]|x.{0,2}|[0-7]{1,3})", escape, s)
  /external/guava/guava-tests/test/com/google/common/escape/
PackageSanityTests.java 17 package com.google.common.escape;
  /external/annotation-tools/scene-lib/src/annotations/util/
Strings.java 19 public static String escape(String in) { method in class:Strings
  /external/clang/tools/scan-build-py/libscanbuild/
shell.py 44 def escape(word): function in function:encode
52 return " ".join([escape(arg) for arg in command])
  /external/guava/guava-gwt/src-super/com/google/common/escape/super/com/google/common/escape/
Platform.java 17 package com.google.common.escape;
  /external/guava/guava-gwt/test/com/google/common/escape/
TestModuleEntryPoint.java 17 package com.google.common.escape;
  /external/markdown/markdown/
postprocessors.py 48 if str(self.markdown.safeMode).lower() == 'escape':
49 html = self.escape(html)
62 def escape(self, html): member in class:RawHtmlPostprocessor
  /external/python/cpython3/Lib/html/
__init__.py 9 __all__ = ['escape', 'unescape']
12 def escape(s, quote=True): function

Completed in 308 milliseconds

1 2 3 4 5 6 7 8 91011>>