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 6935 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6946 | 6946 |
6947 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 6947 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
6948 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 6948 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
6949 static const int kNodeStateMask = 0x7; | 6949 static const int kNodeStateMask = 0x7; |
6950 static const int kNodeStateIsWeakValue = 2; | 6950 static const int kNodeStateIsWeakValue = 2; |
6951 static const int kNodeStateIsPendingValue = 3; | 6951 static const int kNodeStateIsPendingValue = 3; |
6952 static const int kNodeStateIsNearDeathValue = 4; | 6952 static const int kNodeStateIsNearDeathValue = 4; |
6953 static const int kNodeIsIndependentShift = 3; | 6953 static const int kNodeIsIndependentShift = 3; |
6954 static const int kNodeIsPartiallyDependentShift = 4; | 6954 static const int kNodeIsPartiallyDependentShift = 4; |
6955 | 6955 |
6956 static const int kJSObjectType = 0xbc; | 6956 static const int kJSObjectType = 0xb6; |
6957 static const int kFirstNonstringType = 0x80; | 6957 static const int kFirstNonstringType = 0x80; |
6958 static const int kOddballType = 0x83; | 6958 static const int kOddballType = 0x83; |
6959 static const int kForeignType = 0x8d; | 6959 static const int kForeignType = 0x87; |
6960 | 6960 |
6961 static const int kUndefinedOddballKind = 5; | 6961 static const int kUndefinedOddballKind = 5; |
6962 static const int kNullOddballKind = 3; | 6962 static const int kNullOddballKind = 3; |
6963 | 6963 |
6964 static const uint32_t kNumIsolateDataSlots = 4; | 6964 static const uint32_t kNumIsolateDataSlots = 4; |
6965 | 6965 |
6966 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 6966 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
6967 V8_INLINE static void CheckInitialized(v8::Isolate* isolate) { | 6967 V8_INLINE static void CheckInitialized(v8::Isolate* isolate) { |
6968 #ifdef V8_ENABLE_CHECKS | 6968 #ifdef V8_ENABLE_CHECKS |
6969 CheckInitializedImpl(isolate); | 6969 CheckInitializedImpl(isolate); |
(...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8319 */ | 8319 */ |
8320 | 8320 |
8321 | 8321 |
8322 } // namespace v8 | 8322 } // namespace v8 |
8323 | 8323 |
8324 | 8324 |
8325 #undef TYPE_CHECK | 8325 #undef TYPE_CHECK |
8326 | 8326 |
8327 | 8327 |
8328 #endif // V8_H_ | 8328 #endif // V8_H_ |
OLD | NEW |