| 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 7086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7097 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 7097 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
| 7098 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 7098 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
| 7099 static const int kNodeStateMask = 0x7; | 7099 static const int kNodeStateMask = 0x7; |
| 7100 static const int kNodeStateIsWeakValue = 2; | 7100 static const int kNodeStateIsWeakValue = 2; |
| 7101 static const int kNodeStateIsPendingValue = 3; | 7101 static const int kNodeStateIsPendingValue = 3; |
| 7102 static const int kNodeStateIsNearDeathValue = 4; | 7102 static const int kNodeStateIsNearDeathValue = 4; |
| 7103 static const int kNodeIsIndependentShift = 3; | 7103 static const int kNodeIsIndependentShift = 3; |
| 7104 static const int kNodeIsPartiallyDependentShift = 4; | 7104 static const int kNodeIsPartiallyDependentShift = 4; |
| 7105 static const int kNodeIsActiveShift = 4; | 7105 static const int kNodeIsActiveShift = 4; |
| 7106 | 7106 |
| 7107 static const int kJSObjectType = 0xb7; | 7107 static const int kJSObjectType = 0xb8; |
| 7108 static const int kFirstNonstringType = 0x80; | 7108 static const int kFirstNonstringType = 0x80; |
| 7109 static const int kOddballType = 0x83; | 7109 static const int kOddballType = 0x83; |
| 7110 static const int kForeignType = 0x87; | 7110 static const int kForeignType = 0x87; |
| 7111 | 7111 |
| 7112 static const int kUndefinedOddballKind = 5; | 7112 static const int kUndefinedOddballKind = 5; |
| 7113 static const int kNullOddballKind = 3; | 7113 static const int kNullOddballKind = 3; |
| 7114 | 7114 |
| 7115 static const uint32_t kNumIsolateDataSlots = 4; | 7115 static const uint32_t kNumIsolateDataSlots = 4; |
| 7116 | 7116 |
| 7117 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 7117 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
| (...skipping 1361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8479 */ | 8479 */ |
| 8480 | 8480 |
| 8481 | 8481 |
| 8482 } // namespace v8 | 8482 } // namespace v8 |
| 8483 | 8483 |
| 8484 | 8484 |
| 8485 #undef TYPE_CHECK | 8485 #undef TYPE_CHECK |
| 8486 | 8486 |
| 8487 | 8487 |
| 8488 #endif // V8_H_ | 8488 #endif // V8_H_ |
| OLD | NEW |