_get               79 core/DateObject.h 		double _get(int index);
_get               82 core/DateObject.h 		double AS3_getUTCFullYear() { return _get(Date::kUTCFullYear); }
_get               83 core/DateObject.h 		double AS3_getUTCMonth() { return _get(Date::kUTCMonth); }
_get               84 core/DateObject.h 		double AS3_getUTCDate() { return _get(Date::kUTCDate); }
_get               85 core/DateObject.h 		double AS3_getUTCDay() { return _get(Date::kUTCDay); }
_get               86 core/DateObject.h 		double AS3_getUTCHours() { return _get(Date::kUTCHours); }
_get               87 core/DateObject.h 		double AS3_getUTCMinutes() { return _get(Date::kUTCMinutes); }
_get               88 core/DateObject.h 		double AS3_getUTCSeconds() { return _get(Date::kUTCSeconds); }
_get               89 core/DateObject.h 		double AS3_getUTCMilliseconds() { return _get(Date::kUTCMilliseconds); }
_get               90 core/DateObject.h 		double AS3_getFullYear() { return _get(Date::kFullYear); }
_get               91 core/DateObject.h 		double AS3_getMonth() { return _get(Date::kMonth); }
_get               92 core/DateObject.h 		double AS3_getDate() { return _get(Date::kDate); }
_get               93 core/DateObject.h 		double AS3_getDay() { return _get(Date::kDay); }
_get               94 core/DateObject.h 		double AS3_getHours() { return _get(Date::kHours); }
_get               95 core/DateObject.h 		double AS3_getMinutes() { return _get(Date::kMinutes); }
_get               96 core/DateObject.h 		double AS3_getSeconds() { return _get(Date::kSeconds); }
_get               97 core/DateObject.h 		double AS3_getMilliseconds() { return _get(Date::kMilliseconds); }
_get               98 core/DateObject.h 		double AS3_getTimezoneOffset() { return _get(Date::kTimezoneOffset); }
_get               99 core/DateObject.h 		double AS3_getTime() { return _get(Date::kTime); }
_get             1303 core/builtin.cpp     double const ret = obj->_get(