OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BACKSLASH
(Results
1 - 14
of
14
) sorted by null
/external/icu4c/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
);
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
...]
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
...]
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
decoder.py
61
BACKSLASH
= {
68
def scanstring(s, end, encoding=None, _b=
BACKSLASH
, _m=STRINGCHUNK.match):
/external/icu4c/i18n/
selfmtimpl.h
36
#define
BACKSLASH
((UChar)0x005C)
dtptngen_impl.h
31
#define
BACKSLASH
((UChar)0x005C)
plurrule_impl.h
35
#define
BACKSLASH
((UChar)0x005C)
rematch.cpp
272
static const UChar
BACKSLASH
= 0x5c;
350
if (c ==
BACKSLASH
) {
351
//
Backslash
Escape. Copy the following char out without further checks.
388
// Plain
backslash
escape. Just put out the escaped character.
[
all
...]
uregex.cpp
[
all
...]
/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
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java
661
final char
BACKSLASH
= 0x5C;
680
ch ==
BACKSLASH
||
/external/nist-sip/java/gov/nist/core/
LexerCore.java
50
public static final int
BACKSLASH
= (int) '\\';
/external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java
174
public static final int
BACKSLASH
= LexerCore.
BACKSLASH
;
Completed in 1157 milliseconds