Lines Matching defs:const
50 V8_INLINE bool is_identical_to(const HandleBase that) const;
51 V8_INLINE bool is_null() const { return location_ == nullptr; }
55 V8_INLINE Address address() const { return bit_cast<Address>(location_); }
58 // TODO(leszeks): This should probably be a const Address*, to encourage using
60 V8_INLINE Address* location() const {
67 bool V8_EXPORT_PRIVATE IsDereferenceAllowed() const;
70 bool V8_EXPORT_PRIVATE IsDereferenceAllowed() const { return true; }
135 V8_INLINE ObjectRef operator->() const { return ObjectRef{**this}; }
137 V8_INLINE T operator*() const {
145 inline static const Handle<T> cast(Handle<S> that);
149 static const Handle<T> null() { return Handle<T>(); }
152 bool equals(Handle<T> other) const { return address() == other.address(); }
163 V8_INLINE bool operator()(Handle<T> lhs, Handle<T> rhs) const {
170 V8_INLINE size_t operator()(Handle<T> const& handle) const {
204 HandleScope(const HandleScope&) = delete;
205 HandleScope& operator=(const HandleScope&) = delete;
248 static const int kCheckHandleThreshold = 30 * 1024;
303 Zone* zone_; // *Not* const, may be mutated by subclasses.
308 Isolate* const isolate_;
332 CompilationInfoT* const info_;