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 7335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7346 static const int kNodeClassIdOffset = 1 * kApiPointerSize; | 7346 static const int kNodeClassIdOffset = 1 * kApiPointerSize; |
7347 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; | 7347 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; |
7348 static const int kNodeStateMask = 0x7; | 7348 static const int kNodeStateMask = 0x7; |
7349 static const int kNodeStateIsWeakValue = 2; | 7349 static const int kNodeStateIsWeakValue = 2; |
7350 static const int kNodeStateIsPendingValue = 3; | 7350 static const int kNodeStateIsPendingValue = 3; |
7351 static const int kNodeStateIsNearDeathValue = 4; | 7351 static const int kNodeStateIsNearDeathValue = 4; |
7352 static const int kNodeIsIndependentShift = 3; | 7352 static const int kNodeIsIndependentShift = 3; |
7353 static const int kNodeIsPartiallyDependentShift = 4; | 7353 static const int kNodeIsPartiallyDependentShift = 4; |
7354 static const int kNodeIsActiveShift = 4; | 7354 static const int kNodeIsActiveShift = 4; |
7355 | 7355 |
7356 static const int kJSObjectType = 0xb8; | 7356 static const int kJSObjectType = 0xb6; |
7357 static const int kFirstNonstringType = 0x80; | 7357 static const int kFirstNonstringType = 0x80; |
7358 static const int kOddballType = 0x83; | 7358 static const int kOddballType = 0x83; |
7359 static const int kForeignType = 0x87; | 7359 static const int kForeignType = 0x87; |
7360 | 7360 |
7361 static const int kUndefinedOddballKind = 5; | 7361 static const int kUndefinedOddballKind = 5; |
7362 static const int kNullOddballKind = 3; | 7362 static const int kNullOddballKind = 3; |
7363 | 7363 |
7364 static const uint32_t kNumIsolateDataSlots = 4; | 7364 static const uint32_t kNumIsolateDataSlots = 4; |
7365 | 7365 |
7366 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); | 7366 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); |
(...skipping 1382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8749 */ | 8749 */ |
8750 | 8750 |
8751 | 8751 |
8752 } // namespace v8 | 8752 } // namespace v8 |
8753 | 8753 |
8754 | 8754 |
8755 #undef TYPE_CHECK | 8755 #undef TYPE_CHECK |
8756 | 8756 |
8757 | 8757 |
8758 #endif // INCLUDE_V8_H_ | 8758 #endif // INCLUDE_V8_H_ |
OLD | NEW |