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 6569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6580 V(String.prototype, concat, StringConcat) \ | 6580 V(String.prototype, concat, StringConcat) \ |
6581 V(String.prototype, toLowerCase, StringToLowerCase) \ | 6581 V(String.prototype, toLowerCase, StringToLowerCase) \ |
6582 V(String.prototype, toUpperCase, StringToUpperCase) \ | 6582 V(String.prototype, toUpperCase, StringToUpperCase) \ |
6583 V(String, fromCharCode, StringFromCharCode) \ | 6583 V(String, fromCharCode, StringFromCharCode) \ |
6584 V(Math, random, MathRandom) \ | 6584 V(Math, random, MathRandom) \ |
6585 V(Math, floor, MathFloor) \ | 6585 V(Math, floor, MathFloor) \ |
6586 V(Math, round, MathRound) \ | 6586 V(Math, round, MathRound) \ |
6587 V(Math, ceil, MathCeil) \ | 6587 V(Math, ceil, MathCeil) \ |
6588 V(Math, abs, MathAbs) \ | 6588 V(Math, abs, MathAbs) \ |
6589 V(Math, log, MathLog) \ | 6589 V(Math, log, MathLog) \ |
| 6590 V(Math, log1p, MathLog1p) \ |
6590 V(Math, exp, MathExp) \ | 6591 V(Math, exp, MathExp) \ |
6591 V(Math, sqrt, MathSqrt) \ | 6592 V(Math, sqrt, MathSqrt) \ |
6592 V(Math, pow, MathPow) \ | 6593 V(Math, pow, MathPow) \ |
6593 V(Math, max, MathMax) \ | 6594 V(Math, max, MathMax) \ |
6594 V(Math, min, MathMin) \ | 6595 V(Math, min, MathMin) \ |
6595 V(Math, cos, MathCos) \ | 6596 V(Math, cos, MathCos) \ |
6596 V(Math, sin, MathSin) \ | 6597 V(Math, sin, MathSin) \ |
6597 V(Math, tan, MathTan) \ | 6598 V(Math, tan, MathTan) \ |
6598 V(Math, acos, MathAcos) \ | 6599 V(Math, acos, MathAcos) \ |
6599 V(Math, asin, MathAsin) \ | 6600 V(Math, asin, MathAsin) \ |
(...skipping 4197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10797 } | 10798 } |
10798 return value; | 10799 return value; |
10799 } | 10800 } |
10800 }; | 10801 }; |
10801 | 10802 |
10802 | 10803 |
10803 } // NOLINT, false-positive due to second-order macros. | 10804 } // NOLINT, false-positive due to second-order macros. |
10804 } // NOLINT, false-positive due to second-order macros. | 10805 } // NOLINT, false-positive due to second-order macros. |
10805 | 10806 |
10806 #endif // V8_OBJECTS_H_ | 10807 #endif // V8_OBJECTS_H_ |
OLD | NEW |