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 8628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8639 | 8639 |
8640 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 8640 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
8641 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 8641 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
8642 static const int kNodeStateMask = 0x7; | 8642 static const int kNodeStateMask = 0x7; |
8643 static const int kNodeStateIsWeakValue = 2; | 8643 static const int kNodeStateIsWeakValue = 2; |
8644 static const int kNodeStateIsPendingValue = 3; | 8644 static const int kNodeStateIsPendingValue = 3; |
8645 static const int kNodeStateIsNearDeathValue = 4; | 8645 static const int kNodeStateIsNearDeathValue = 4; |
8646 static const int kNodeIsIndependentShift = 3; | 8646 static const int kNodeIsIndependentShift = 3; |
8647 static const int kNodeIsActiveShift = 4; | 8647 static const int kNodeIsActiveShift = 4; |
8648 | 8648 |
8649 static const int kJSApiObjectType = 0xba; | 8649 static const int kJSApiObjectType = 0xbb; |
8650 static const int kJSObjectType = 0xbb; | 8650 static const int kJSObjectType = 0xbc; |
8651 static const int kFirstNonstringType = 0x80; | 8651 static const int kFirstNonstringType = 0x80; |
8652 static const int kOddballType = 0x82; | 8652 static const int kOddballType = 0x82; |
8653 static const int kForeignType = 0x86; | 8653 static const int kForeignType = 0x86; |
8654 | 8654 |
8655 static const int kUndefinedOddballKind = 5; | 8655 static const int kUndefinedOddballKind = 5; |
8656 static const int kNullOddballKind = 3; | 8656 static const int kNullOddballKind = 3; |
8657 | 8657 |
8658 static const uint32_t kNumIsolateDataSlots = 4; | 8658 static const uint32_t kNumIsolateDataSlots = 4; |
8659 | 8659 |
8660 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 8660 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
(...skipping 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9991 */ | 9991 */ |
9992 | 9992 |
9993 | 9993 |
9994 } // namespace v8 | 9994 } // namespace v8 |
9995 | 9995 |
9996 | 9996 |
9997 #undef TYPE_CHECK | 9997 #undef TYPE_CHECK |
9998 | 9998 |
9999 | 9999 |
10000 #endif // INCLUDE_V8_H_ | 10000 #endif // INCLUDE_V8_H_ |
OLD | NEW |