Esempio n. 1
0
GALGAS_bool GALGAS_timer::getter_isRunning (UNUSED_LOCATION_ARGS) const {
    GALGAS_bool result ;
    if (isValid ()) {
        result = GALGAS_bool (mTimer.isRunning ()) ;
    }
    return result ;
}
Esempio n. 2
0
GALGAS_bool GALGAS_bool::constructor_default (UNUSED_LOCATION_ARGS) {
  return GALGAS_bool (false) ;
}
Esempio n. 3
0
GALGAS_bool GALGAS_char::getter_isUnicodeNumber (UNUSED_LOCATION_ARGS) const {
  return GALGAS_bool (isUnicodeNumber (mCharValue)) ;
}
Esempio n. 4
0
GALGAS_bool GALGAS_application::constructor_verboseOutput (UNUSED_LOCATION_ARGS) {
  return GALGAS_bool (verboseOutput ()) ;
}
Esempio n. 5
0
GALGAS_bool GALGAS_char::getter_isUnicodePunctuation (UNUSED_LOCATION_ARGS) const {
  return GALGAS_bool (isUnicodePunctuation (mCharValue)) ;
}
Esempio n. 6
0
GALGAS_bool GALGAS_char::getter_isUnicodeSymbol (UNUSED_LOCATION_ARGS) const {
  return GALGAS_bool (isUnicodeCommand (mCharValue)) ;
}
Esempio n. 7
0
GALGAS_bool GALGAS_char::getter_isxdigit (UNUSED_LOCATION_ARGS) const {
  return GALGAS_bool (((UNICODE_VALUE (mCharValue) >= '0') && (UNICODE_VALUE (mCharValue) <= '9')) 
                             || ((UNICODE_VALUE (mCharValue) >= 'a') && (UNICODE_VALUE (mCharValue) <= 'f'))
                             || ((UNICODE_VALUE (mCharValue) >= 'A') && (UNICODE_VALUE (mCharValue) <= 'F'))) ;
}
Esempio n. 8
0
GALGAS_bool GALGAS_char::getter_isupper (UNUSED_LOCATION_ARGS) const {
  return GALGAS_bool (((UNICODE_VALUE (mCharValue) >= 'A') && (UNICODE_VALUE (mCharValue) <= 'Z'))) ;
}
Esempio n. 9
0
GALGAS_bool GALGAS_char::getter_iscntrl (UNUSED_LOCATION_ARGS) const {
  return GALGAS_bool (((UNICODE_VALUE (mCharValue) >= 1) && (UNICODE_VALUE (mCharValue) <= 31)) || (UNICODE_VALUE (mCharValue) == 127)) ;
}