Bug 924642 - SpiderMonkey: Apply internal name linkage using static keywords. r=njn

This commit is contained in:
Dan Gohman
2013-10-10 05:18:01 -07:00
parent f3457e80f6
commit f147ac843f
40 changed files with 97 additions and 97 deletions

View File

@@ -100,7 +100,7 @@ using JS::GenericNaN;
* hashCode
*/
inline double
static inline double
Day(double t)
{
return floor(t / msPerDay);
@@ -116,14 +116,14 @@ TimeWithinDay(double t)
}
/* ES5 15.9.1.3. */
inline bool
static inline bool
IsLeapYear(double year)
{
JS_ASSERT(ToInteger(year) == year);
return fmod(year, 4) == 0 && (fmod(year, 100) != 0 || fmod(year, 400) == 0);
}
inline double
static inline double
DaysInYear(double year)
{
if (!IsFinite(year))
@@ -131,7 +131,7 @@ DaysInYear(double year)
return IsLeapYear(year) ? 366 : 365;
}
inline double
static inline double
DayFromYear(double y)
{
return 365 * (y - 1970) +
@@ -140,7 +140,7 @@ DayFromYear(double y)
floor((y - 1601) / 400.0);
}
inline double
static inline double
TimeFromYear(double y)
{
return DayFromYear(y) * msPerDay;
@@ -171,14 +171,14 @@ YearFromTime(double t)
return y;
}
inline int
static inline int
DaysInFebruary(double year)
{
return IsLeapYear(year) ? 29 : 28;
}
/* ES5 15.9.1.4. */
inline double
static inline double
DayWithinYear(double t, double year)
{
JS_ASSERT_IF(IsFinite(t), YearFromTime(t) == year);
@@ -282,7 +282,7 @@ WeekDay(double t)
return result;
}
inline int
static inline int
DayFromMonth(int month, bool isLeapYear)
{
/*
@@ -299,7 +299,7 @@ DayFromMonth(int month, bool isLeapYear)
}
template<typename T>
inline int
static inline int
DayFromMonth(T month, bool isLeapYear) MOZ_DELETE;
/* ES5 15.9.1.12 (out of order to accommodate DaylightSavingTA). */
@@ -333,7 +333,7 @@ MakeDay(double year, double month, double date)
}
/* ES5 15.9.1.13 (out of order to accommodate DaylightSavingTA). */
inline double
static inline double
MakeDate(double day, double time)
{
/* Step 1. */