Lines Matching refs:V8_INLINE

88   V8_INLINE Isolate* GetIsolate() const {
96 V8_INLINE HandleScope() = default;
157 V8_INLINE Local() : val_(nullptr) {}
159 V8_INLINE Local(Local<S> that) : val_(reinterpret_cast<T*>(*that)) {
171 V8_INLINE bool IsEmpty() const { return val_ == nullptr; }
176 V8_INLINE void Clear() { val_ = nullptr; }
178 V8_INLINE T* operator->() const { return val_; }
180 V8_INLINE T* operator*() const { return val_; }
193 V8_INLINE bool operator==(const Local<S>& that) const {
202 V8_INLINE bool operator==(const PersistentBase<S>& that) const {
221 V8_INLINE bool operator!=(const Local<S>& that) const {
226 V8_INLINE bool operator!=(const Persistent<S>& that) const {
236 V8_INLINE static Local<T> Cast(Local<S> that) {
251 V8_INLINE Local<S> As() const {
260 V8_INLINE static Local<T> New(Isolate* isolate, Local<T> that) {
264 V8_INLINE static Local<T> New(Isolate* isolate,
269 V8_INLINE static Local<T> New(Isolate* isolate,
317 explicit V8_INLINE Local(T* that) : val_(that) {}
318 V8_INLINE static Local<T> New(Isolate* isolate, T* that) {
347 V8_INLINE MaybeLocal() : val_(nullptr) {}
349 V8_INLINE MaybeLocal(Local<S> that) : val_(reinterpret_cast<T*>(*that)) {
353 V8_INLINE bool IsEmpty() const { return val_ == nullptr; }
360 V8_WARN_UNUSED_RESULT V8_INLINE bool ToLocal(Local<S>* out) const {
369 V8_INLINE Local<T> ToLocalChecked() {
379 V8_INLINE Local<S> FromMaybe(Local<S> default_value) const {
394 V8_INLINE ~EscapableHandleScope() = default;
401 V8_INLINE Local<T> Escape(Local<T> value) {
408 V8_INLINE MaybeLocal<T> EscapeMaybe(MaybeLocal<T> value) {