コード例 #1
0
GALGAS_uint GALGAS_timer::getter_msFromStart (UNUSED_LOCATION_ARGS) const {
    GALGAS_uint result ;
    if (isValid ()) {
        result = GALGAS_uint (mTimer.msFromStart ()) ;
    }
    return result ;
}
コード例 #2
0
GALGAS_uint GALGAS_uint::constructor_warningCount (UNUSED_LOCATION_ARGS) {
  return GALGAS_uint ((uint32_t) totalWarningCount ()) ;
}
コード例 #3
0
GALGAS_uint GALGAS_uint::constructor_errorCount (UNUSED_LOCATION_ARGS) {
  return GALGAS_uint ((uint32_t) totalErrorCount ()) ;
}
コード例 #4
0
GALGAS_uint GALGAS_uint::constructor_max (UNUSED_LOCATION_ARGS) {
  return GALGAS_uint (UINT32_MAX) ;
}
コード例 #5
0
GALGAS_uint GALGAS_uint::constructor_default (UNUSED_LOCATION_ARGS) {
  return GALGAS_uint (0) ;
}
コード例 #6
0
ファイル: GALGAS_char.cpp プロジェクト: 1984c/trampoline
GALGAS_uint GALGAS_char::getter_uint (UNUSED_LOCATION_ARGS) const {
  return GALGAS_uint (UNICODE_VALUE (mCharValue)) ;
}