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 8280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8291 | 8291 |
8292 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 8292 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
8293 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 8293 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
8294 static const int kNodeStateMask = 0x7; | 8294 static const int kNodeStateMask = 0x7; |
8295 static const int kNodeStateIsWeakValue = 2; | 8295 static const int kNodeStateIsWeakValue = 2; |
8296 static const int kNodeStateIsPendingValue = 3; | 8296 static const int kNodeStateIsPendingValue = 3; |
8297 static const int kNodeStateIsNearDeathValue = 4; | 8297 static const int kNodeStateIsNearDeathValue = 4; |
8298 static const int kNodeIsIndependentShift = 3; | 8298 static const int kNodeIsIndependentShift = 3; |
8299 static const int kNodeIsActiveShift = 4; | 8299 static const int kNodeIsActiveShift = 4; |
8300 | 8300 |
8301 static const int kJSObjectType = 0xbc; | 8301 static const int kJSObjectType = 0xbd; |
8302 static const int kJSApiObjectType = 0xbb; | 8302 static const int kJSApiObjectType = 0xbc; |
8303 static const int kFirstNonstringType = 0x80; | 8303 static const int kFirstNonstringType = 0x80; |
8304 static const int kOddballType = 0x83; | 8304 static const int kOddballType = 0x83; |
8305 static const int kForeignType = 0x87; | 8305 static const int kForeignType = 0x87; |
8306 | 8306 |
8307 static const int kUndefinedOddballKind = 5; | 8307 static const int kUndefinedOddballKind = 5; |
8308 static const int kNullOddballKind = 3; | 8308 static const int kNullOddballKind = 3; |
8309 | 8309 |
8310 static const uint32_t kNumIsolateDataSlots = 4; | 8310 static const uint32_t kNumIsolateDataSlots = 4; |
8311 | 8311 |
8312 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 8312 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
(...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9647 */ | 9647 */ |
9648 | 9648 |
9649 | 9649 |
9650 } // namespace v8 | 9650 } // namespace v8 |
9651 | 9651 |
9652 | 9652 |
9653 #undef TYPE_CHECK | 9653 #undef TYPE_CHECK |
9654 | 9654 |
9655 | 9655 |
9656 #endif // INCLUDE_V8_H_ | 9656 #endif // INCLUDE_V8_H_ |
OLD | NEW |