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

1 2

  /external/nist-sip/java/gov/nist/core/
LexerCore.java 50 public static final int BACKSLASH = (int) '\\';
  /external/chromium_org/third_party/icu/source/common/
util.cpp 17 static const UChar BACKSLASH = 0x005C; /*\*/
80 result.append(BACKSLASH);
111 if (c == BACKSLASH) {
310 // We prefer backslash APOSTROPHE to double APOSTROPHE
320 rule.append(BACKSLASH).append(APOSTROPHE);
339 rule.append(BACKSLASH).append(APOSTROPHE);
361 (c == APOSTROPHE || c == BACKSLASH)) {
362 rule.append(BACKSLASH);
uniset.cpp 35 #define BACKSLASH ((UChar)0x005C) /*\*/
    [all...]
uniset_props.cpp 63 #define BACKSLASH ((UChar)0x005C) /*\*/
76 //static const UChar PERL_OPEN[] = { BACKSLASH,LOWER_P,0 }; // "\\p"
78 //static const UChar NAME_OPEN[] = { BACKSLASH,UPPER_N,0 }; // "\\N"
291 return pattern.charAt(pos)==BACKSLASH && ((c=pattern.charAt(pos+1))==LOWER_P || c==UPPER_P);
301 return pattern.charAt(pos)==BACKSLASH && pattern.charAt(pos+1)==UPPER_N;
    [all...]
ucnv_u7.c 64 * - BACKSLASH
90 #define BACKSLASH 92
94 #define isLegalUTF7(c) (((uint8_t)((c)-32)<94 && (c)!=BACKSLASH) || isCRLFTAB(c))
255 * Backslash and Tilde and most control characters are not allowed in UTF-7.
825 * - BACKSLASH
    [all...]
  /external/icu4c/common/
util.cpp 18 static const UChar BACKSLASH = 0x005C; /*\*/
81 result.append(BACKSLASH);
112 if (c == BACKSLASH) {
306 // We prefer backslash APOSTROPHE to double APOSTROPHE
316 rule.append(BACKSLASH).append(APOSTROPHE);
335 rule.append(BACKSLASH).append(APOSTROPHE);
357 (c == APOSTROPHE || c == BACKSLASH)) {
358 rule.append(BACKSLASH);
uniset_props.cpp 63 #define BACKSLASH ((UChar)0x005C) /*\*/
76 //static const UChar PERL_OPEN[] = { BACKSLASH,LOWER_P,0 }; // "\\p"
78 //static const UChar NAME_OPEN[] = { BACKSLASH,UPPER_N,0 }; // "\\N"
292 return pattern.charAt(pos)==BACKSLASH && ((c=pattern.charAt(pos+1))==LOWER_P || c==UPPER_P);
302 return pattern.charAt(pos)==BACKSLASH && pattern.charAt(pos+1)==UPPER_N;
    [all...]
uniset.cpp 37 #define BACKSLASH ((UChar)0x005C) /*\*/
    [all...]
ucnv_u7.c 65 * - BACKSLASH
91 #define BACKSLASH 92
95 #define isLegalUTF7(c) (((uint8_t)((c)-32)<94 && (c)!=BACKSLASH) || isCRLFTAB(c))
256 * Backslash and Tilde and most control characters are not allowed in UTF-7.
851 * - BACKSLASH
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeySpecParser.java 46 * Special character, comma ',' backslash '\', and bar '|' can be escaped by '\' character.
57 private static final char BACKSLASH = '\\';
72 * A key specification can contain a character escaped by the backslash character, including a
92 // The characters in question in this loop are COMMA and BACKSLASH. These characters never
107 } else if (c == BACKSLASH) {
136 if (text.indexOf(BACKSLASH) < 0) {
143 if (c == BACKSLASH && pos + 1 < length) {
155 if (moreKeySpec.indexOf(BACKSLASH, start) < 0) {
165 if (c == BACKSLASH && pos + 1 < length) {
409 } else if (c == BACKSLASH) {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java 174 public static final int BACKSLASH = LexerCore.BACKSLASH;
  /external/chromium_org/third_party/icu/source/i18n/
selfmtimpl.h 36 #define BACKSLASH ((UChar)0x005C)
plurrule_impl.h 35 #define BACKSLASH ((UChar)0x005C)
dtptngen_impl.h 31 #define BACKSLASH ((UChar)0x005C)
uregex.cpp     [all...]
  /external/icu4c/i18n/
selfmtimpl.h 31 #define BACKSLASH ((UChar)0x005C)
plurrule_impl.h 32 #define BACKSLASH ((UChar)0x005C)
dtptngen_impl.h 31 #define BACKSLASH ((UChar)0x005C)
  /external/chromium_org/third_party/icu/source/test/intltest/
idnaconf.cpp 152 * All lines ending in a backslash (\) and immediately followed by a newline
160 static const UChar BACKSLASH = 0x5c;
169 if (c == BACKSLASH && curOffset < len -1){ // escaped new line mark
  /external/chromium_org/third_party/simplejson/
decoder.py 89 BACKSLASH = {
97 _b=BACKSLASH, _m=STRINGCHUNK.match):
124 # or a backslash denoting that an escape sequence follows
  /external/icu4c/test/intltest/
idnaconf.cpp 152 * All lines ending in a backslash (\) and immediately followed by a newline
160 static const UChar BACKSLASH = 0x5c;
169 if (c == BACKSLASH && curOffset < len -1){ // escaped new line mark
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
decoder.py 58 BACKSLASH = {
66 _b=BACKSLASH, _m=STRINGCHUNK.match):
93 # or a backslash denoting that an escape sequence follows
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
decoder.py 58 BACKSLASH = {
66 _b=BACKSLASH, _m=STRINGCHUNK.match):
93 # or a backslash denoting that an escape sequence follows
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java 645 final char BACKSLASH = 0x5C;
664 ch == BACKSLASH ||
  /external/qemu/android/skin/
keyset.c 120 _KEYSYM1_(BACKSLASH) \

Completed in 438 milliseconds

1 2