OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_OBJECTS_H_ | 5 #ifndef V8_OBJECTS_H_ |
6 #define V8_OBJECTS_H_ | 6 #define V8_OBJECTS_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 #include "src/assert-scope.h" | 10 #include "src/assert-scope.h" |
(...skipping 6571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6582 V(String.prototype, toLowerCase, StringToLowerCase) \ | 6582 V(String.prototype, toLowerCase, StringToLowerCase) \ |
6583 V(String.prototype, toUpperCase, StringToUpperCase) \ | 6583 V(String.prototype, toUpperCase, StringToUpperCase) \ |
6584 V(String, fromCharCode, StringFromCharCode) \ | 6584 V(String, fromCharCode, StringFromCharCode) \ |
6585 V(Math, random, MathRandom) \ | 6585 V(Math, random, MathRandom) \ |
6586 V(Math, floor, MathFloor) \ | 6586 V(Math, floor, MathFloor) \ |
6587 V(Math, round, MathRound) \ | 6587 V(Math, round, MathRound) \ |
6588 V(Math, ceil, MathCeil) \ | 6588 V(Math, ceil, MathCeil) \ |
6589 V(Math, abs, MathAbs) \ | 6589 V(Math, abs, MathAbs) \ |
6590 V(Math, log, MathLog) \ | 6590 V(Math, log, MathLog) \ |
6591 V(Math, log1p, MathLog1p) \ | 6591 V(Math, log1p, MathLog1p) \ |
| 6592 V(Math, log2, MathLog2) \ |
| 6593 V(Math, log10, MathLog10) \ |
6592 V(Math, exp, MathExp) \ | 6594 V(Math, exp, MathExp) \ |
6593 V(Math, sqrt, MathSqrt) \ | 6595 V(Math, sqrt, MathSqrt) \ |
6594 V(Math, pow, MathPow) \ | 6596 V(Math, pow, MathPow) \ |
6595 V(Math, max, MathMax) \ | 6597 V(Math, max, MathMax) \ |
6596 V(Math, min, MathMin) \ | 6598 V(Math, min, MathMin) \ |
6597 V(Math, cos, MathCos) \ | 6599 V(Math, cos, MathCos) \ |
6598 V(Math, sin, MathSin) \ | 6600 V(Math, sin, MathSin) \ |
6599 V(Math, tan, MathTan) \ | 6601 V(Math, tan, MathTan) \ |
6600 V(Math, acos, MathAcos) \ | 6602 V(Math, acos, MathAcos) \ |
6601 V(Math, asin, MathAsin) \ | 6603 V(Math, asin, MathAsin) \ |
(...skipping 4199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10801 } | 10803 } |
10802 return value; | 10804 return value; |
10803 } | 10805 } |
10804 }; | 10806 }; |
10805 | 10807 |
10806 | 10808 |
10807 } // NOLINT, false-positive due to second-order macros. | 10809 } // NOLINT, false-positive due to second-order macros. |
10808 } // NOLINT, false-positive due to second-order macros. | 10810 } // NOLINT, false-positive due to second-order macros. |
10809 | 10811 |
10810 #endif // V8_OBJECTS_H_ | 10812 #endif // V8_OBJECTS_H_ |
OLD | NEW |