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 6581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6592 static const int kNodeStateMask = 0x7; | 6592 static const int kNodeStateMask = 0x7; |
6593 static const int kNodeStateIsWeakValue = 2; | 6593 static const int kNodeStateIsWeakValue = 2; |
6594 static const int kNodeStateIsPendingValue = 3; | 6594 static const int kNodeStateIsPendingValue = 3; |
6595 static const int kNodeStateIsNearDeathValue = 4; | 6595 static const int kNodeStateIsNearDeathValue = 4; |
6596 static const int kNodeIsIndependentShift = 3; | 6596 static const int kNodeIsIndependentShift = 3; |
6597 static const int kNodeIsPartiallyDependentShift = 4; | 6597 static const int kNodeIsPartiallyDependentShift = 4; |
6598 | 6598 |
6599 static const int kJSObjectType = 0xbd; | 6599 static const int kJSObjectType = 0xbd; |
6600 static const int kFirstNonstringType = 0x80; | 6600 static const int kFirstNonstringType = 0x80; |
6601 static const int kOddballType = 0x83; | 6601 static const int kOddballType = 0x83; |
6602 static const int kForeignType = 0x88; | 6602 static const int kForeignType = 0x87; |
6603 | 6603 |
6604 static const int kUndefinedOddballKind = 5; | 6604 static const int kUndefinedOddballKind = 5; |
6605 static const int kNullOddballKind = 3; | 6605 static const int kNullOddballKind = 3; |
6606 | 6606 |
6607 static const uint32_t kNumIsolateDataSlots = 4; | 6607 static const uint32_t kNumIsolateDataSlots = 4; |
6608 | 6608 |
6609 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 6609 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
6610 V8_INLINE static void CheckInitialized(v8::Isolate* isolate) { | 6610 V8_INLINE static void CheckInitialized(v8::Isolate* isolate) { |
6611 #ifdef V8_ENABLE_CHECKS | 6611 #ifdef V8_ENABLE_CHECKS |
6612 CheckInitializedImpl(isolate); | 6612 CheckInitializedImpl(isolate); |
(...skipping 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7916 */ | 7916 */ |
7917 | 7917 |
7918 | 7918 |
7919 } // namespace v8 | 7919 } // namespace v8 |
7920 | 7920 |
7921 | 7921 |
7922 #undef TYPE_CHECK | 7922 #undef TYPE_CHECK |
7923 | 7923 |
7924 | 7924 |
7925 #endif // V8_H_ | 7925 #endif // V8_H_ |
OLD | NEW |