| 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 7186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7197 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 7197 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
| 7198 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 7198 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
| 7199 static const int kNodeStateMask = 0x7; | 7199 static const int kNodeStateMask = 0x7; |
| 7200 static const int kNodeStateIsWeakValue = 2; | 7200 static const int kNodeStateIsWeakValue = 2; |
| 7201 static const int kNodeStateIsPendingValue = 3; | 7201 static const int kNodeStateIsPendingValue = 3; |
| 7202 static const int kNodeStateIsNearDeathValue = 4; | 7202 static const int kNodeStateIsNearDeathValue = 4; |
| 7203 static const int kNodeIsIndependentShift = 3; | 7203 static const int kNodeIsIndependentShift = 3; |
| 7204 static const int kNodeIsPartiallyDependentShift = 4; | 7204 static const int kNodeIsPartiallyDependentShift = 4; |
| 7205 static const int kNodeIsActiveShift = 4; | 7205 static const int kNodeIsActiveShift = 4; |
| 7206 | 7206 |
| 7207 static const int kJSObjectType = 0xb5; | 7207 static const int kJSObjectType = 0xb8; |
| 7208 static const int kFirstNonstringType = 0x80; | 7208 static const int kFirstNonstringType = 0x80; |
| 7209 static const int kOddballType = 0x83; | 7209 static const int kOddballType = 0x83; |
| 7210 static const int kForeignType = 0x87; | 7210 static const int kForeignType = 0x87; |
| 7211 | 7211 |
| 7212 static const int kUndefinedOddballKind = 5; | 7212 static const int kUndefinedOddballKind = 5; |
| 7213 static const int kNullOddballKind = 3; | 7213 static const int kNullOddballKind = 3; |
| 7214 | 7214 |
| 7215 static const uint32_t kNumIsolateDataSlots = 4; | 7215 static const uint32_t kNumIsolateDataSlots = 4; |
| 7216 | 7216 |
| 7217 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 7217 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
| (...skipping 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8593 */ | 8593 */ |
| 8594 | 8594 |
| 8595 | 8595 |
| 8596 } // namespace v8 | 8596 } // namespace v8 |
| 8597 | 8597 |
| 8598 | 8598 |
| 8599 #undef TYPE_CHECK | 8599 #undef TYPE_CHECK |
| 8600 | 8600 |
| 8601 | 8601 |
| 8602 #endif // INCLUDE_V8_H_ | 8602 #endif // INCLUDE_V8_H_ |
| OLD | NEW |