toInt             334 core/AvmCore-inlines.h 		return MathUtils::toInt(AvmCore::number(atom));
toInt             268 core/Date.cpp  		day = MathUtils::toInt(day);
toInt             269 core/Date.cpp  		time = MathUtils::toInt(time);
toInt             281 core/Date.cpp  		hour = MathUtils::toInt(hour);
toInt             282 core/Date.cpp  		min  = MathUtils::toInt(min);
toInt             283 core/Date.cpp  		sec  = MathUtils::toInt(sec);
toInt             284 core/Date.cpp  		ms   = MathUtils::toInt(ms);
toInt             296 core/Date.cpp  		year  = MathUtils::toInt(year);
toInt             297 core/Date.cpp  		month = MathUtils::toInt(month);
toInt             298 core/Date.cpp  		date  = MathUtils::toInt(date);
toInt              90 core/Date.h    			return MathUtils::toInt(t) + (+0.);
toInt             122 core/MathUtils.h 		static double toInt(double value);
toInt            2161 core/StringObject.cpp 		int32_t start = (int32_t) NativeObjectHelpers::ClampIndex(MathUtils::toInt(d_start), len); 
toInt            2166 core/StringObject.cpp 		int32_t end = (int32_t)NativeObjectHelpers::ClampIndex(MathUtils::toInt(d_count) + (double)start, len); 
toInt            2181 core/StringObject.cpp 		double start = MathUtils::toInt(d_start);
toInt            2182 core/StringObject.cpp 		double end = MathUtils::toInt(d_end);
toInt            2195 core/StringObject.cpp 		int32_t start = (int32_t)NativeObjectHelpers::ClampIndex(MathUtils::toInt(d_start), len); 
toInt            2196 core/StringObject.cpp 		int32_t end = (int32_t)NativeObjectHelpers::ClampIndex(MathUtils::toInt(d_end), len);