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 6954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6965 | 6965 |
6966 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 6966 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
6967 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 6967 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
6968 static const int kNodeStateMask = 0x7; | 6968 static const int kNodeStateMask = 0x7; |
6969 static const int kNodeStateIsWeakValue = 2; | 6969 static const int kNodeStateIsWeakValue = 2; |
6970 static const int kNodeStateIsPendingValue = 3; | 6970 static const int kNodeStateIsPendingValue = 3; |
6971 static const int kNodeStateIsNearDeathValue = 4; | 6971 static const int kNodeStateIsNearDeathValue = 4; |
6972 static const int kNodeIsIndependentShift = 3; | 6972 static const int kNodeIsIndependentShift = 3; |
6973 static const int kNodeIsPartiallyDependentShift = 4; | 6973 static const int kNodeIsPartiallyDependentShift = 4; |
6974 | 6974 |
6975 static const int kJSObjectType = 0xbe; | 6975 static const int kJSObjectType = 0xbf; |
6976 static const int kFirstNonstringType = 0x80; | 6976 static const int kFirstNonstringType = 0x80; |
6977 static const int kOddballType = 0x83; | 6977 static const int kOddballType = 0x83; |
6978 static const int kForeignType = 0x87; | 6978 static const int kForeignType = 0x87; |
6979 | 6979 |
6980 static const int kUndefinedOddballKind = 5; | 6980 static const int kUndefinedOddballKind = 5; |
6981 static const int kNullOddballKind = 3; | 6981 static const int kNullOddballKind = 3; |
6982 | 6982 |
6983 static const uint32_t kNumIsolateDataSlots = 4; | 6983 static const uint32_t kNumIsolateDataSlots = 4; |
6984 | 6984 |
6985 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 6985 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
(...skipping 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8338 */ | 8338 */ |
8339 | 8339 |
8340 | 8340 |
8341 } // namespace v8 | 8341 } // namespace v8 |
8342 | 8342 |
8343 | 8343 |
8344 #undef TYPE_CHECK | 8344 #undef TYPE_CHECK |
8345 | 8345 |
8346 | 8346 |
8347 #endif // V8_H_ | 8347 #endif // V8_H_ |
OLD | NEW |