/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | PatternTokenizer.java | 148 public static final char SINGLE_QUOTE = '\''; field in PatternTokenizer 165 if (usingQuote) needingQuoteCharacters.add(SINGLE_QUOTE); in quoteLiteral() 175 result.append(SINGLE_QUOTE); in quoteLiteral() 186 if (usingQuote && cp == SINGLE_QUOTE) { // double it in quoteLiteral() 187 result.append(SINGLE_QUOTE); in quoteLiteral() 198 if (cp == SINGLE_QUOTE) { // double it and continue in quoteLiteral() 199 result.append(SINGLE_QUOTE); in quoteLiteral() 200 result.append(SINGLE_QUOTE); in quoteLiteral() 203 result.append(SINGLE_QUOTE); in quoteLiteral() 215 result.append(SINGLE_QUOTE); in quoteLiteral() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | PatternTokenizer.java | 146 public static final char SINGLE_QUOTE = '\''; field in PatternTokenizer 163 if (usingQuote) needingQuoteCharacters.add(SINGLE_QUOTE); in quoteLiteral() 173 result.append(SINGLE_QUOTE); in quoteLiteral() 184 if (usingQuote && cp == SINGLE_QUOTE) { // double it in quoteLiteral() 185 result.append(SINGLE_QUOTE); in quoteLiteral() 196 if (cp == SINGLE_QUOTE) { // double it and continue in quoteLiteral() 197 result.append(SINGLE_QUOTE); in quoteLiteral() 198 result.append(SINGLE_QUOTE); in quoteLiteral() 201 result.append(SINGLE_QUOTE); in quoteLiteral() 213 result.append(SINGLE_QUOTE); in quoteLiteral() [all …]
|
/external/rust/crates/regex-syntax/src/unicode_tables/ |
D | word_break.rs | 25 ("Single_Quote", SINGLE_QUOTE), 1049 pub const SINGLE_QUOTE: &'static [(char, char)] = &[('\'', '\'')]; constant
|
/external/icu/icu4c/source/i18n/ |
D | umsg.cpp | 605 #define SINGLE_QUOTE ((UChar)0x0027) macro 645 case SINGLE_QUOTE: in umsg_autoQuoteApostrophe() 657 case SINGLE_QUOTE: in umsg_autoQuoteApostrophe() 665 MAppend(SINGLE_QUOTE); in umsg_autoQuoteApostrophe() 673 case SINGLE_QUOTE: in umsg_autoQuoteApostrophe() 702 MAppend(SINGLE_QUOTE); in umsg_autoQuoteApostrophe()
|
D | choicfmt.cpp | 54 #define SINGLE_QUOTE ((UChar)0x0027) /*'*/ macro 317 if (c == SINGLE_QUOTE && nestingLevel == 0) { in setChoices() 329 result.append(SINGLE_QUOTE).append(c).append(SINGLE_QUOTE); in setChoices()
|
D | selfmtimpl.h | 31 #define SINGLE_QUOTE ((UChar)0x0027) macro
|
D | dtptngen.cpp | 1152 value = SINGLE_QUOTE; in getAppendName() 1154 value += SINGLE_QUOTE; in getAppendName() 1237 if (patChr == SINGLE_QUOTE) { in mapSkeletonMetacharacters() 2483 return (UBool)(s.charAt(0) == SINGLE_QUOTE); in isQuoteLiteral() 2493 if (items[i].charAt(0)==SINGLE_QUOTE) { in getQuoteLiteral() 2498 if ( items[i].charAt(0)==SINGLE_QUOTE ) { in getQuoteLiteral() 2499 if ( (i+1<itemNumber) && (items[i+1].charAt(0)==SINGLE_QUOTE)) { in getQuoteLiteral() 2522 if ( (c==SINGLE_QUOTE) || (c==BACKSLASH) || (c==SPACE) || (c==COLON) || in isPatternSeparator()
|
D | plurrule_impl.h | 54 static const UChar SINGLE_QUOTE = ((UChar) 0x0027); variable
|
D | dtptngen_impl.h | 35 #define SINGLE_QUOTE ((UChar)0x0027) macro
|
D | msgfmt.cpp | 58 #define SINGLE_QUOTE ((UChar)0x0027) macro 1097 … (subMsgString.indexOf(SINGLE_QUOTE) >= 0 && !MessageImpl::jdkAposMode(msgPattern)) in format()
|
/external/icu/libicu/cts_headers/ |
D | selfmtimpl.h | 31 #define SINGLE_QUOTE ((UChar)0x0027) macro
|
D | dtptngen_impl.h | 35 #define SINGLE_QUOTE ((UChar)0x0027) macro
|
D | plurrule_impl.h | 54 static const UChar SINGLE_QUOTE = ((UChar) 0x0027); variable
|
/external/testng/src/main/java/org/testng/reporters/ |
D | JUnitXMLReporter.java | 34 private static final Pattern SINGLE_QUOTE = Pattern.compile("'"); field in JUnitXMLReporter 41 ATTR_ESCAPES.put("'", SINGLE_QUOTE);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | MessageFormat.java | 2496 private static final char SINGLE_QUOTE = '\''; field in MessageFormat 2542 case SINGLE_QUOTE: in autoQuoteApostrophe() 2553 case SINGLE_QUOTE: in autoQuoteApostrophe() 2561 buf.append(SINGLE_QUOTE); in autoQuoteApostrophe() 2568 case SINGLE_QUOTE: in autoQuoteApostrophe() 2594 buf.append(SINGLE_QUOTE); in autoQuoteApostrophe()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | MessageFormat.java | 2424 private static final char SINGLE_QUOTE = '\''; field in MessageFormat 2469 case SINGLE_QUOTE: in autoQuoteApostrophe() 2480 case SINGLE_QUOTE: in autoQuoteApostrophe() 2488 buf.append(SINGLE_QUOTE); in autoQuoteApostrophe() 2495 case SINGLE_QUOTE: in autoQuoteApostrophe() 2521 buf.append(SINGLE_QUOTE); in autoQuoteApostrophe()
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxmlparser.cpp | 1426 const char SINGLE_QUOTE = '\''; in Parse() local 1429 if ( *p == SINGLE_QUOTE ) in Parse() 1451 if ( *p == SINGLE_QUOTE || *p == DOUBLE_QUOTE ) { in Parse()
|
/external/dokka/core/src/main/kotlin/Kotlin/ |
D | ContentBuilder.kt | 147 MarkdownTokenTypes.SINGLE_QUOTE, in buildContentTo()
|
/external/tinyxml2/ |
D | tinyxml2.cpp | 108 static const char SINGLE_QUOTE = '\''; variable 132 { "apos", 4, SINGLE_QUOTE },
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
D | UCharacter.java | 3403 public static final int SINGLE_QUOTE = 15; /*[SQ]*/ field
|
/external/icu/android_icu4j/src/main/java/android/icu/lang/ |
D | UCharacter.java | 2923 public static final int SINGLE_QUOTE = 15; /*[SQ]*/ field
|
/external/icu/android_icu4j/api/public/ |
D | current.txt | 1094 field public static final int SINGLE_QUOTE = 15; // 0xf
|
/external/icu/icu4j/tools/build/ |
D | icu4j60.api3.gz |
|
D | icu4j62.api3.gz | 12;ICU4J 62.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j61.api3.gz |
|