| 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 7280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7291 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 7291 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
| 7292 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 7292 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
| 7293 static const int kNodeStateMask = 0x7; | 7293 static const int kNodeStateMask = 0x7; |
| 7294 static const int kNodeStateIsWeakValue = 2; | 7294 static const int kNodeStateIsWeakValue = 2; |
| 7295 static const int kNodeStateIsPendingValue = 3; | 7295 static const int kNodeStateIsPendingValue = 3; |
| 7296 static const int kNodeStateIsNearDeathValue = 4; | 7296 static const int kNodeStateIsNearDeathValue = 4; |
| 7297 static const int kNodeIsIndependentShift = 3; | 7297 static const int kNodeIsIndependentShift = 3; |
| 7298 static const int kNodeIsPartiallyDependentShift = 4; | 7298 static const int kNodeIsPartiallyDependentShift = 4; |
| 7299 static const int kNodeIsActiveShift = 4; | 7299 static const int kNodeIsActiveShift = 4; |
| 7300 | 7300 |
| 7301 static const int kJSObjectType = 0xb8; | 7301 static const int kJSObjectType = 0xb6; |
| 7302 static const int kFirstNonstringType = 0x80; | 7302 static const int kFirstNonstringType = 0x80; |
| 7303 static const int kOddballType = 0x83; | 7303 static const int kOddballType = 0x83; |
| 7304 static const int kForeignType = 0x87; | 7304 static const int kForeignType = 0x87; |
| 7305 | 7305 |
| 7306 static const int kUndefinedOddballKind = 5; | 7306 static const int kUndefinedOddballKind = 5; |
| 7307 static const int kNullOddballKind = 3; | 7307 static const int kNullOddballKind = 3; |
| 7308 | 7308 |
| 7309 static const uint32_t kNumIsolateDataSlots = 4; | 7309 static const uint32_t kNumIsolateDataSlots = 4; |
| 7310 | 7310 |
| 7311 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 7311 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
| (...skipping 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8687 */ | 8687 */ |
| 8688 | 8688 |
| 8689 | 8689 |
| 8690 } // namespace v8 | 8690 } // namespace v8 |
| 8691 | 8691 |
| 8692 | 8692 |
| 8693 #undef TYPE_CHECK | 8693 #undef TYPE_CHECK |
| 8694 | 8694 |
| 8695 | 8695 |
| 8696 #endif // INCLUDE_V8_H_ | 8696 #endif // INCLUDE_V8_H_ |
| OLD | NEW |