HomeSort by relevance Sort by last modified time
    Searched full:special_chars (Results 1 - 7 of 7) sorted by null

  /external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
JsEscapeFunction.java 38 char[] SPECIAL_CHARS = {'/', '"', '\'', '\\', '>', '<', '&', ';'};
41 ESCAPE_CHARS = new char[32 + SPECIAL_CHARS.length];
48 System.arraycopy(SPECIAL_CHARS, 0, ESCAPE_CHARS, 32, SPECIAL_CHARS.length);
StyleEscapeFunction.java 41 String SPECIAL_CHARS = "_.,!#%- ";
55 if (SPECIAL_CHARS.indexOf(n) != -1) {
  /external/chromium_org/native_client_sdk/src/tools/lib/tests/
quote_test.py 103 parser.add_option('-s', '--special-chars', dest='special_chars', default=':',
127 qq = quote.unquote(word, options.special_chars, options.quote)
134 q = quote.quote(word, options.special_chars, options.quote)
135 qq = quote.unquote(q, options.special_chars, options.quote)
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Annotate.py 14 special_chars = [ variable
62 for c, cc, html in special_chars:
166 for c, cc, html in special_chars:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_parse.py 20 SPECIAL_CHARS = ".\\[{()*+?^$|"
413 if this and this[0] not in SPECIAL_CHARS:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_parse.py 20 SPECIAL_CHARS = ".\\[{()*+?^$|"
413 if this and this[0] not in SPECIAL_CHARS:
  /external/pdfium/core/src/fpdfdoc/
doc_vt.cpp 413 static int special_chars[128] = { variable
434 if (special_chars[word] & 0x0001) {
482 if ((special_chars[word] >> 3) & 1) {
528 if ((special_chars[word] >> 5) & 1) {
537 if ((special_chars[word] >> 2) & 1) {
    [all...]

Completed in 200 milliseconds