Lines Matching refs:V8_INLINE

103   V8_INLINE Isolate* GetIsolate() const {
114 V8_INLINE HandleScope() = default;
157 V8_INLINE LocalBase() = default;
159 V8_INLINE explicit LocalBase(internal::Address ptr) : DirectHandleBase(ptr) {}
162 V8_INLINE LocalBase(const LocalBase<S>& other) : DirectHandleBase(other) {}
164 V8_INLINE static LocalBase<T> New(Isolate* isolate, internal::Address value) {
168 V8_INLINE static LocalBase<T> New(Isolate* isolate, T* that) {
173 V8_INLINE static LocalBase<T> FromSlot(internal::Address* slot) {
186 V8_INLINE LocalBase() = default;
188 V8_INLINE explicit LocalBase(internal::Address* location)
192 V8_INLINE LocalBase(const LocalBase<S>& other) : IndirectHandleBase(other) {}
194 V8_INLINE static LocalBase<T> New(Isolate* isolate, internal::Address value) {
199 V8_INLINE static LocalBase<T> New(Isolate* isolate, T* that) {
205 V8_INLINE static LocalBase<T> FromSlot(internal::Address* slot) {
244 V8_INLINE Local() = default;
247 V8_INLINE Local(Local<S> that) : LocalBase<T>(that) {
256 V8_INLINE T* operator->() const { return this->template value<T>(); }
258 V8_INLINE T* operator*() const { return this->operator->(); }
272 V8_INLINE bool operator==(const Local<S>& that) const {
277 V8_INLINE bool operator==(const PersistentBase<S>& that) const {
282 V8_INLINE bool operator!=(const Local<S>& that) const {
287 V8_INLINE bool operator!=(const Persistent<S>& that) const {
297 V8_INLINE static Local<T> Cast(Local<S> that) {
313 V8_INLINE Local<S> As() const {
322 V8_INLINE static Local<T> New(Isolate* isolate, Local<T> that) {
326 V8_INLINE static Local<T> New(Isolate* isolate,
331 V8_INLINE static Local<T> New(Isolate* isolate,
378 V8_INLINE explicit Local<T>(const LocalBase<T>& other)
381 V8_INLINE static Local<T> FromSlot(internal::Address* slot) {
385 V8_INLINE static Local<T> New(Isolate* isolate, internal::Address value) {
389 V8_INLINE static Local<T> New(Isolate* isolate, T* that) {
395 V8_INLINE Local<S> UnsafeAs() const {
419 V8_INLINE MaybeLocal() : local_() {}
421 V8_INLINE MaybeLocal(Local<S> that) : local_(that) {}
423 V8_INLINE bool IsEmpty() const { return local_.IsEmpty(); }
430 V8_WARN_UNUSED_RESULT V8_INLINE bool ToLocal(Local<S>* out) const {
439 V8_INLINE Local<T> ToLocalChecked() {
449 V8_INLINE Local<S> FromMaybe(Local<S> default_value) const {
464 V8_INLINE ~EscapableHandleScope() = default;
471 V8_INLINE Local<T> Escape(Local<T> value) {
480 V8_INLINE MaybeLocal<T> EscapeMaybe(MaybeLocal<T> value) {