HomeSort by relevance Sort by last modified time
    Searched refs:CharCategory (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/unicode/glib/
UnicodeGLib.h 86 enum CharCategory {
204 inline CharCategory category(UChar32 c)
209 return (CharCategory) U_MASK(g_unichar_type(c));
  /external/webkit/Source/JavaScriptCore/wtf/unicode/brew/
UnicodeBrew.cpp 145 CharCategory category(unsigned int c)
147 return static_cast<CharCategory>(TO_MASK((int8_t) ICU::category(c)));
UnicodeBrew.h 77 enum CharCategory {
140 CharCategory category(unsigned int);
  /external/webkit/Source/JavaScriptCore/wtf/unicode/wince/
UnicodeWinCE.cpp 155 CharCategory category(unsigned int c)
157 return static_cast<CharCategory>(TO_MASK((__int8) UnicodeCE::category(c)));
UnicodeWinCE.h 79 enum CharCategory {
120 CharCategory category(unsigned int);
  /external/webkit/Source/JavaScriptCore/wtf/unicode/icu/
UnicodeIcu.h 77 enum CharCategory {
203 inline CharCategory category(UChar32 c)
205 return static_cast<CharCategory>(U_GET_GC_MASK(c));
  /external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/
UnicodeQt4.h 120 enum CharCategory {
368 inline CharCategory category(UChar32 c)
370 return (CharCategory) U_MASK(QChar::category(uint32_t(c)));
  /external/webkit/Source/WebCore/platform/text/brew/
TextBreakIteratorBrew.cpp 37 CharCategory charCategory = category(c);
38 return charCategory != Mark_NonSpacing && (charCategory != Other_Surrogate || (c < 0xd800 || c >= 0xdc00));
  /external/webkit/Source/WebCore/platform/text/wince/
TextBreakIteratorWinCE.cpp 37 CharCategory charCategory = category(c);
38 return charCategory != Mark_NonSpacing && (charCategory != Other_Surrogate || (c < 0xd800 || c >= 0xdc00));
  /external/webkit/Source/WebCore/xml/
XPathParser.cpp 68 CharCategory category = Unicode::category(aChar);
  /external/webkit/Source/WebCore/platform/graphics/
Font.cpp 496 CharCategory category = Unicode::category(c);
  /external/webkit/Source/WebCore/rendering/
RenderBlock.cpp     [all...]

Completed in 735 milliseconds