| 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 8166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8177 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 8177 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
| 8178 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 8178 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
| 8179 static const int kNodeStateMask = 0x7; | 8179 static const int kNodeStateMask = 0x7; |
| 8180 static const int kNodeStateIsWeakValue = 2; | 8180 static const int kNodeStateIsWeakValue = 2; |
| 8181 static const int kNodeStateIsPendingValue = 3; | 8181 static const int kNodeStateIsPendingValue = 3; |
| 8182 static const int kNodeStateIsNearDeathValue = 4; | 8182 static const int kNodeStateIsNearDeathValue = 4; |
| 8183 static const int kNodeIsIndependentShift = 3; | 8183 static const int kNodeIsIndependentShift = 3; |
| 8184 static const int kNodeIsPartiallyDependentShift = 4; | 8184 static const int kNodeIsPartiallyDependentShift = 4; |
| 8185 static const int kNodeIsActiveShift = 4; | 8185 static const int kNodeIsActiveShift = 4; |
| 8186 | 8186 |
| 8187 static const int kJSObjectType = 0xb8; | 8187 static const int kJSObjectType = 0xb9; |
| 8188 static const int kJSApiObjectType = 0xb7; | 8188 static const int kJSApiObjectType = 0xb8; |
| 8189 static const int kFirstNonstringType = 0x80; | 8189 static const int kFirstNonstringType = 0x80; |
| 8190 static const int kOddballType = 0x83; | 8190 static const int kOddballType = 0x83; |
| 8191 static const int kForeignType = 0x87; | 8191 static const int kForeignType = 0x87; |
| 8192 | 8192 |
| 8193 static const int kUndefinedOddballKind = 5; | 8193 static const int kUndefinedOddballKind = 5; |
| 8194 static const int kNullOddballKind = 3; | 8194 static const int kNullOddballKind = 3; |
| 8195 | 8195 |
| 8196 static const uint32_t kNumIsolateDataSlots = 4; | 8196 static const uint32_t kNumIsolateDataSlots = 4; |
| 8197 | 8197 |
| 8198 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 8198 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
| (...skipping 1348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9547 */ | 9547 */ |
| 9548 | 9548 |
| 9549 | 9549 |
| 9550 } // namespace v8 | 9550 } // namespace v8 |
| 9551 | 9551 |
| 9552 | 9552 |
| 9553 #undef TYPE_CHECK | 9553 #undef TYPE_CHECK |
| 9554 | 9554 |
| 9555 | 9555 |
| 9556 #endif // INCLUDE_V8_H_ | 9556 #endif // INCLUDE_V8_H_ |
| OLD | NEW |