Ejemplo n.º 1
0
 bool Lexer::isXmlNameSubsequent(wchar c)
 {
     return isUnicodeLetter(c) || isUnicodeDigit(c) || c == '_' || c == ':' || c == '.' || c == '-';
 }
Ejemplo n.º 2
0
GALGAS_bool GALGAS_char::getter_isUnicodeLetter (UNUSED_LOCATION_ARGS) const {
  return GALGAS_bool (isUnicodeLetter (mCharValue)) ;
}
Ejemplo n.º 3
0
 bool Lexer::isXmlNameStart(wchar c)
 {
     return isUnicodeLetter(c) || c == ':' || c == '_';
 }