Changeset 34587 in webkit for trunk/JavaScriptCore/kjs/date_object.h
- Timestamp:
- Jun 15, 2008, 10:28:46 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/date_object.h
r34581 r34587 76 76 // GetYear, SetYear, ToGMTString 77 77 78 JSValue* dateProtoFuncToString(ExecState*, JSObject*, const List&);79 JSValue* dateProtoFuncToUTCString(ExecState*, JSObject*, const List&);80 JSValue* dateProtoFuncToDateString(ExecState*, JSObject*, const List&);81 JSValue* dateProtoFuncToTimeString(ExecState*, JSObject*, const List&);82 JSValue* dateProtoFuncToLocaleString(ExecState*, JSObject*, const List&);83 JSValue* dateProtoFuncToLocaleDateString(ExecState*, JSObject*, const List&);84 JSValue* dateProtoFuncToLocaleTimeString(ExecState*, JSObject*, const List&);85 JSValue* dateProtoFuncValueOf(ExecState*, JSObject*, const List&);86 JSValue* dateProtoFuncGetTime(ExecState*, JSObject*, const List&);87 JSValue* dateProtoFuncGetFullYear(ExecState*, JSObject*, const List&);88 JSValue* dateProtoFuncGetUTCFullYear(ExecState*, JSObject*, const List&);89 JSValue* dateProtoFuncToGMTString(ExecState*, JSObject*, const List&);90 JSValue* dateProtoFuncGetMonth(ExecState*, JSObject*, const List&);91 JSValue* dateProtoFuncGetUTCMonth(ExecState*, JSObject*, const List&);92 JSValue* dateProtoFuncGetDate(ExecState*, JSObject*, const List&);93 JSValue* dateProtoFuncGetUTCDate(ExecState*, JSObject*, const List&);94 JSValue* dateProtoFuncGetDay(ExecState*, JSObject*, const List&);95 JSValue* dateProtoFuncGetUTCDay(ExecState*, JSObject*, const List&);96 JSValue* dateProtoFuncGetHours(ExecState*, JSObject*, const List&);97 JSValue* dateProtoFuncGetUTCHours(ExecState*, JSObject*, const List&);98 JSValue* dateProtoFuncGetMinutes(ExecState*, JSObject*, const List&);99 JSValue* dateProtoFuncGetUTCMinutes(ExecState*, JSObject*, const List&);100 JSValue* dateProtoFuncGetSeconds(ExecState*, JSObject*, const List&);101 JSValue* dateProtoFuncGetUTCSeconds(ExecState*, JSObject*, const List&);102 JSValue* dateProtoFuncGetMilliSeconds(ExecState*, JSObject*, const List&);103 JSValue* dateProtoFuncGetUTCMilliseconds(ExecState*, JSObject*, const List&);104 JSValue* dateProtoFuncGetTimezoneOffset(ExecState*, JSObject*, const List&);105 JSValue* dateProtoFuncSetTime(ExecState*, JSObject*, const List&);106 JSValue* dateProtoFuncSetMilliSeconds(ExecState*, JSObject*, const List&);107 JSValue* dateProtoFuncSetUTCMilliseconds(ExecState*, JSObject*, const List&);108 JSValue* dateProtoFuncSetSeconds(ExecState*, JSObject*, const List&);109 JSValue* dateProtoFuncSetUTCSeconds(ExecState*, JSObject*, const List&);110 JSValue* dateProtoFuncSetMinutes(ExecState*, JSObject*, const List&);111 JSValue* dateProtoFuncSetUTCMinutes(ExecState*, JSObject*, const List&);112 JSValue* dateProtoFuncSetHours(ExecState*, JSObject*, const List&);113 JSValue* dateProtoFuncSetUTCHours(ExecState*, JSObject*, const List&);114 JSValue* dateProtoFuncSetDate(ExecState*, JSObject*, const List&);115 JSValue* dateProtoFuncSetUTCDate(ExecState*, JSObject*, const List&);116 JSValue* dateProtoFuncSetMonth(ExecState*, JSObject*, const List&);117 JSValue* dateProtoFuncSetUTCMonth(ExecState*, JSObject*, const List&);118 JSValue* dateProtoFuncSetFullYear(ExecState*, JSObject*, const List&);119 JSValue* dateProtoFuncSetUTCFullYear(ExecState*, JSObject*, const List&);120 JSValue* dateProtoFuncSetYear(ExecState*, JSObject*, const List&);121 JSValue* dateProtoFuncGetYear(ExecState*, JSObject*, const List&);78 JSValue* dateProtoFuncToString(ExecState*, JSObject*, const ArgList&); 79 JSValue* dateProtoFuncToUTCString(ExecState*, JSObject*, const ArgList&); 80 JSValue* dateProtoFuncToDateString(ExecState*, JSObject*, const ArgList&); 81 JSValue* dateProtoFuncToTimeString(ExecState*, JSObject*, const ArgList&); 82 JSValue* dateProtoFuncToLocaleString(ExecState*, JSObject*, const ArgList&); 83 JSValue* dateProtoFuncToLocaleDateString(ExecState*, JSObject*, const ArgList&); 84 JSValue* dateProtoFuncToLocaleTimeString(ExecState*, JSObject*, const ArgList&); 85 JSValue* dateProtoFuncValueOf(ExecState*, JSObject*, const ArgList&); 86 JSValue* dateProtoFuncGetTime(ExecState*, JSObject*, const ArgList&); 87 JSValue* dateProtoFuncGetFullYear(ExecState*, JSObject*, const ArgList&); 88 JSValue* dateProtoFuncGetUTCFullYear(ExecState*, JSObject*, const ArgList&); 89 JSValue* dateProtoFuncToGMTString(ExecState*, JSObject*, const ArgList&); 90 JSValue* dateProtoFuncGetMonth(ExecState*, JSObject*, const ArgList&); 91 JSValue* dateProtoFuncGetUTCMonth(ExecState*, JSObject*, const ArgList&); 92 JSValue* dateProtoFuncGetDate(ExecState*, JSObject*, const ArgList&); 93 JSValue* dateProtoFuncGetUTCDate(ExecState*, JSObject*, const ArgList&); 94 JSValue* dateProtoFuncGetDay(ExecState*, JSObject*, const ArgList&); 95 JSValue* dateProtoFuncGetUTCDay(ExecState*, JSObject*, const ArgList&); 96 JSValue* dateProtoFuncGetHours(ExecState*, JSObject*, const ArgList&); 97 JSValue* dateProtoFuncGetUTCHours(ExecState*, JSObject*, const ArgList&); 98 JSValue* dateProtoFuncGetMinutes(ExecState*, JSObject*, const ArgList&); 99 JSValue* dateProtoFuncGetUTCMinutes(ExecState*, JSObject*, const ArgList&); 100 JSValue* dateProtoFuncGetSeconds(ExecState*, JSObject*, const ArgList&); 101 JSValue* dateProtoFuncGetUTCSeconds(ExecState*, JSObject*, const ArgList&); 102 JSValue* dateProtoFuncGetMilliSeconds(ExecState*, JSObject*, const ArgList&); 103 JSValue* dateProtoFuncGetUTCMilliseconds(ExecState*, JSObject*, const ArgList&); 104 JSValue* dateProtoFuncGetTimezoneOffset(ExecState*, JSObject*, const ArgList&); 105 JSValue* dateProtoFuncSetTime(ExecState*, JSObject*, const ArgList&); 106 JSValue* dateProtoFuncSetMilliSeconds(ExecState*, JSObject*, const ArgList&); 107 JSValue* dateProtoFuncSetUTCMilliseconds(ExecState*, JSObject*, const ArgList&); 108 JSValue* dateProtoFuncSetSeconds(ExecState*, JSObject*, const ArgList&); 109 JSValue* dateProtoFuncSetUTCSeconds(ExecState*, JSObject*, const ArgList&); 110 JSValue* dateProtoFuncSetMinutes(ExecState*, JSObject*, const ArgList&); 111 JSValue* dateProtoFuncSetUTCMinutes(ExecState*, JSObject*, const ArgList&); 112 JSValue* dateProtoFuncSetHours(ExecState*, JSObject*, const ArgList&); 113 JSValue* dateProtoFuncSetUTCHours(ExecState*, JSObject*, const ArgList&); 114 JSValue* dateProtoFuncSetDate(ExecState*, JSObject*, const ArgList&); 115 JSValue* dateProtoFuncSetUTCDate(ExecState*, JSObject*, const ArgList&); 116 JSValue* dateProtoFuncSetMonth(ExecState*, JSObject*, const ArgList&); 117 JSValue* dateProtoFuncSetUTCMonth(ExecState*, JSObject*, const ArgList&); 118 JSValue* dateProtoFuncSetFullYear(ExecState*, JSObject*, const ArgList&); 119 JSValue* dateProtoFuncSetUTCFullYear(ExecState*, JSObject*, const ArgList&); 120 JSValue* dateProtoFuncSetYear(ExecState*, JSObject*, const ArgList&); 121 JSValue* dateProtoFuncGetYear(ExecState*, JSObject*, const ArgList&); 122 122 123 123 /** … … 131 131 132 132 virtual ConstructType getConstructData(ConstructData&); 133 virtual JSObject* construct(ExecState*, const List& args);133 virtual JSObject* construct(ExecState*, const ArgList& args); 134 134 135 virtual JSValue* callAsFunction(ExecState*, JSObject* thisObj, const List& args);135 virtual JSValue* callAsFunction(ExecState*, JSObject* thisObj, const ArgList& args); 136 136 137 JSObject* construct(const List&);137 JSObject* construct(const ArgList&); 138 138 }; 139 139
Note:
See TracChangeset
for help on using the changeset viewer.