Lines Matching defs:global
35 [[maybe_unused]]Global<JSValueRef> global(vm, current);
48 Global<BooleanRef> global(vm, BooleanRef::New(vm, true));
49 [[maybe_unused]]Local<JSValueRef> local = global.ToLocal();
62 Global<BooleanRef> global(vm, BooleanRef::New(vm, true));
63 [[maybe_unused]]Local<JSValueRef> local = global.ToLocal(vm);
76 Global<BooleanRef> global(vm, BooleanRef::New(vm, true));
77 global.Empty();
90 Global<BooleanRef> global(vm, BooleanRef::New(vm, true));
91 global.FreeGlobalHandleAddr();
104 Global<BooleanRef> global(vm, BooleanRef::New(vm, true));
105 [[maybe_unused]]bool b = (*global)->BooleaValue(vm);
118 Global<BooleanRef> global(vm, BooleanRef::New(vm, true));
119 [[maybe_unused]]bool b = global->BooleaValue(vm);
132 Global<JSValueRef> global;
133 [[maybe_unused]]bool b = global.IsEmpty();
146 Global<JSValueRef> global(vm, BooleanRef::New(vm, true));
147 global.SetWeak();
148 bool res = global.IsWeak();
166 Global<JSValueRef> global(vm, BooleanRef::New(vm, true));
167 global.ClearWeak();
180 Global<JSValueRef> global(vm, BooleanRef::New(vm, true));
181 global.SetWeak();
182 [[maybe_unused]]bool b = global.IsWeak();