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 6618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6629 | 6629 |
6630 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 6630 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
6631 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 6631 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
6632 static const int kNodeStateMask = 0x7; | 6632 static const int kNodeStateMask = 0x7; |
6633 static const int kNodeStateIsWeakValue = 2; | 6633 static const int kNodeStateIsWeakValue = 2; |
6634 static const int kNodeStateIsPendingValue = 3; | 6634 static const int kNodeStateIsPendingValue = 3; |
6635 static const int kNodeStateIsNearDeathValue = 4; | 6635 static const int kNodeStateIsNearDeathValue = 4; |
6636 static const int kNodeIsIndependentShift = 3; | 6636 static const int kNodeIsIndependentShift = 3; |
6637 static const int kNodeIsPartiallyDependentShift = 4; | 6637 static const int kNodeIsPartiallyDependentShift = 4; |
6638 | 6638 |
6639 static const int kJSObjectType = 0xbd; | 6639 static const int kJSObjectType = 0xbe; |
6640 static const int kFirstNonstringType = 0x80; | 6640 static const int kFirstNonstringType = 0x80; |
6641 static const int kOddballType = 0x83; | 6641 static const int kOddballType = 0x83; |
6642 static const int kForeignType = 0x87; | 6642 static const int kForeignType = 0x87; |
6643 | 6643 |
6644 static const int kUndefinedOddballKind = 5; | 6644 static const int kUndefinedOddballKind = 5; |
6645 static const int kNullOddballKind = 3; | 6645 static const int kNullOddballKind = 3; |
6646 | 6646 |
6647 static const uint32_t kNumIsolateDataSlots = 4; | 6647 static const uint32_t kNumIsolateDataSlots = 4; |
6648 | 6648 |
6649 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 6649 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
(...skipping 1306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7956 */ | 7956 */ |
7957 | 7957 |
7958 | 7958 |
7959 } // namespace v8 | 7959 } // namespace v8 |
7960 | 7960 |
7961 | 7961 |
7962 #undef TYPE_CHECK | 7962 #undef TYPE_CHECK |
7963 | 7963 |
7964 | 7964 |
7965 #endif // V8_H_ | 7965 #endif // V8_H_ |
OLD | NEW |