| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 /** \mainpage V8 API Reference Guide | 5 /** \mainpage V8 API Reference Guide |
| 6 * | 6 * |
| 7 * V8 is Google's open source JavaScript engine. | 7 * V8 is Google's open source JavaScript engine. |
| 8 * | 8 * |
| 9 * This set of documents provides reference material generated from the | 9 * This set of documents provides reference material generated from the |
| 10 * V8 header file, include/v8.h. | 10 * V8 header file, include/v8.h. |
| (...skipping 7882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7893 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 7893 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
| 7894 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 7894 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
| 7895 static const int kNodeStateMask = 0x7; | 7895 static const int kNodeStateMask = 0x7; |
| 7896 static const int kNodeStateIsWeakValue = 2; | 7896 static const int kNodeStateIsWeakValue = 2; |
| 7897 static const int kNodeStateIsPendingValue = 3; | 7897 static const int kNodeStateIsPendingValue = 3; |
| 7898 static const int kNodeStateIsNearDeathValue = 4; | 7898 static const int kNodeStateIsNearDeathValue = 4; |
| 7899 static const int kNodeIsIndependentShift = 3; | 7899 static const int kNodeIsIndependentShift = 3; |
| 7900 static const int kNodeIsPartiallyDependentShift = 4; | 7900 static const int kNodeIsPartiallyDependentShift = 4; |
| 7901 static const int kNodeIsActiveShift = 4; | 7901 static const int kNodeIsActiveShift = 4; |
| 7902 | 7902 |
| 7903 static const int kJSObjectType = 0xb7; | 7903 static const int kJSObjectType = 0xb8; |
| 7904 static const int kJSApiObjectType = 0xb6; | 7904 static const int kJSApiObjectType = 0xb7; |
| 7905 static const int kFirstNonstringType = 0x80; | 7905 static const int kFirstNonstringType = 0x80; |
| 7906 static const int kOddballType = 0x83; | 7906 static const int kOddballType = 0x83; |
| 7907 static const int kForeignType = 0x87; | 7907 static const int kForeignType = 0x87; |
| 7908 | 7908 |
| 7909 static const int kUndefinedOddballKind = 5; | 7909 static const int kUndefinedOddballKind = 5; |
| 7910 static const int kNullOddballKind = 3; | 7910 static const int kNullOddballKind = 3; |
| 7911 | 7911 |
| 7912 static const uint32_t kNumIsolateDataSlots = 4; | 7912 static const uint32_t kNumIsolateDataSlots = 4; |
| 7913 | 7913 |
| 7914 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 7914 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
| (...skipping 1348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9263 */ | 9263 */ |
| 9264 | 9264 |
| 9265 | 9265 |
| 9266 } // namespace v8 | 9266 } // namespace v8 |
| 9267 | 9267 |
| 9268 | 9268 |
| 9269 #undef TYPE_CHECK | 9269 #undef TYPE_CHECK |
| 9270 | 9270 |
| 9271 | 9271 |
| 9272 #endif // INCLUDE_V8_H_ | 9272 #endif // INCLUDE_V8_H_ |
| OLD | NEW |