Changeset 34587 in webkit for trunk/JavaScriptCore/kjs/MathObject.h
- Timestamp:
- Jun 15, 2008, 10:28:46 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/MathObject.h
r34582 r34587 42 42 43 43 // Functions 44 JSValue* mathProtoFuncAbs(ExecState*, JSObject*, const List&);45 JSValue* mathProtoFuncACos(ExecState*, JSObject*, const List&);46 JSValue* mathProtoFuncASin(ExecState*, JSObject*, const List&);47 JSValue* mathProtoFuncATan(ExecState*, JSObject*, const List&);48 JSValue* mathProtoFuncATan2(ExecState*, JSObject*, const List&);49 JSValue* mathProtoFuncCeil(ExecState*, JSObject*, const List&);50 JSValue* mathProtoFuncCos(ExecState*, JSObject*, const List&);51 JSValue* mathProtoFuncExp(ExecState*, JSObject*, const List&);52 JSValue* mathProtoFuncFloor(ExecState*, JSObject*, const List&);53 JSValue* mathProtoFuncLog(ExecState*, JSObject*, const List&);54 JSValue* mathProtoFuncMax(ExecState*, JSObject*, const List&);55 JSValue* mathProtoFuncMin(ExecState*, JSObject*, const List&);56 JSValue* mathProtoFuncPow(ExecState*, JSObject*, const List&);57 JSValue* mathProtoFuncRandom(ExecState*, JSObject*, const List&);58 JSValue* mathProtoFuncRound(ExecState*, JSObject*, const List&);59 JSValue* mathProtoFuncSin(ExecState*, JSObject*, const List&);60 JSValue* mathProtoFuncSqrt(ExecState*, JSObject*, const List&);61 JSValue* mathProtoFuncTan(ExecState*, JSObject*, const List&);44 JSValue* mathProtoFuncAbs(ExecState*, JSObject*, const ArgList&); 45 JSValue* mathProtoFuncACos(ExecState*, JSObject*, const ArgList&); 46 JSValue* mathProtoFuncASin(ExecState*, JSObject*, const ArgList&); 47 JSValue* mathProtoFuncATan(ExecState*, JSObject*, const ArgList&); 48 JSValue* mathProtoFuncATan2(ExecState*, JSObject*, const ArgList&); 49 JSValue* mathProtoFuncCeil(ExecState*, JSObject*, const ArgList&); 50 JSValue* mathProtoFuncCos(ExecState*, JSObject*, const ArgList&); 51 JSValue* mathProtoFuncExp(ExecState*, JSObject*, const ArgList&); 52 JSValue* mathProtoFuncFloor(ExecState*, JSObject*, const ArgList&); 53 JSValue* mathProtoFuncLog(ExecState*, JSObject*, const ArgList&); 54 JSValue* mathProtoFuncMax(ExecState*, JSObject*, const ArgList&); 55 JSValue* mathProtoFuncMin(ExecState*, JSObject*, const ArgList&); 56 JSValue* mathProtoFuncPow(ExecState*, JSObject*, const ArgList&); 57 JSValue* mathProtoFuncRandom(ExecState*, JSObject*, const ArgList&); 58 JSValue* mathProtoFuncRound(ExecState*, JSObject*, const ArgList&); 59 JSValue* mathProtoFuncSin(ExecState*, JSObject*, const ArgList&); 60 JSValue* mathProtoFuncSqrt(ExecState*, JSObject*, const ArgList&); 61 JSValue* mathProtoFuncTan(ExecState*, JSObject*, const ArgList&); 62 62 63 63 } // namespace KJS
Note:
See TracChangeset
for help on using the changeset viewer.