Home
last modified time | relevance | path

Searched refs:kQuote (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/i18n/
Ddecimalformatpattern.cpp35 #define kQuote ((UChar)0x0027) /*'\''*/ macro
358 affix->append(kQuote); // Encode currency in applyPatternWithoutExpandAffix()
377 } else if (ch == kQuote) { in applyPatternWithoutExpandAffix()
381 U_ASSERT(U16_LENGTH(kQuote) == 1); in applyPatternWithoutExpandAffix()
383 if (pos < pattern.length() && pattern[pos] == kQuote) { in applyPatternWithoutExpandAffix()
384 affix->append(kQuote); // Encode quote in applyPatternWithoutExpandAffix()
413 affix->append(kQuote); // Encode percent/perMill in applyPatternWithoutExpandAffix()
427 affix->append(kQuote); // Encode percent/perMill in applyPatternWithoutExpandAffix()
446 affix->append(kQuote); // Encode minus in applyPatternWithoutExpandAffix()
451 affix->append(kQuote); // Encode plus in applyPatternWithoutExpandAffix()
[all …]
Ddecimfmt.cpp259 #define kQuote ((UChar)0x0027) /*'\''*/ macro
3389 if (c == kQuote) {
4262 if (c == kQuote) {
4522 i = affixPattern->indexOf(kQuote, pos);
4536 if (c == kQuote) {
4821 (*fNegPrefixPattern)[(int32_t)0] == kQuote &&
/external/chromium_org/third_party/icu/source/i18n/
Ddecimfmt.cpp259 #define kQuote ((UChar)0x0027) /*'\''*/ macro
3300 if (c == kQuote) { in compareComplexAffix()
4173 if (c == kQuote) { in expandAffix()
4433 i = affixPattern->indexOf(kQuote, pos); in appendAffixPattern()
4447 if (c == kQuote) { in appendAffixPattern()
4732 (*fNegPrefixPattern)[(int32_t)0] == kQuote && in toPattern()
5040 affix->append(kQuote); // Encode currency in applyPatternWithoutExpandAffix()
5059 } else if (ch == kQuote) { in applyPatternWithoutExpandAffix()
5063 U_ASSERT(U16_LENGTH(kQuote) == 1); in applyPatternWithoutExpandAffix()
5065 if (pos < pattern.length() && pattern[pos] == kQuote) { in applyPatternWithoutExpandAffix()
[all …]
/external/chromium_org/chrome/utility/importer/
Dbookmark_html_reader.cc29 const char kQuote[] = "\""; in GetAttribute() local
31 size_t begin = attribute_list.find(attribute + "=" + kQuote); in GetAttribute()