Home
last modified time | relevance | path

Searched refs:UNICODE_TABLE (Results 1 – 2 of 2) sorted by relevance

/dports/deskutils/fbreader/FBReader-0.99.6-freebsdport/zlibrary/core/src/util/
H A DZLUnicodeUtil.cpp47 static std::map<ZLUnicodeUtil::Ucs4Char,ZLUnicodeData> UNICODE_TABLE; variable
76 UNICODE_TABLE.insert(std::make_pair(code, ZLUnicodeData(type, lower, upper))); in startElementHandler()
82 if (!inProgress && UNICODE_TABLE.empty()) { in initUnicodeTable()
356 std::map<ZLUnicodeUtil::Ucs4Char,ZLUnicodeData>::const_iterator it = UNICODE_TABLE.find(ch); in isLetter()
357 if (it == UNICODE_TABLE.end()) { in isLetter()
442 std::map<ZLUnicodeUtil::Ucs4Char,ZLUnicodeData>::const_iterator it = UNICODE_TABLE.find(ch); in toLower()
443 return (it != UNICODE_TABLE.end()) ? it->second.LowerCase : ch; in toLower()
465 std::map<ZLUnicodeUtil::Ucs4Char,ZLUnicodeData>::const_iterator it = UNICODE_TABLE.find(ch); in toUpper()
466 return (it != UNICODE_TABLE.end()) ? it->second.UpperCase : ch; in toUpper()
/dports/games/coronapoker/coronapoker-4.33/src/main/java/com/tonikelope/coronapoker/
H A DCard.java35 private final static HashMap<String, String> UNICODE_TABLE = loadUnicodeTable(); field in Card
73 return UNICODE_TABLE; in getUNICODE_TABLE()
278 return "[" + this.valor + Card.UNICODE_TABLE.get(this.palo) + "]"; in toString()