Searched full:is_virtual (Results 1 – 5 of 5) sorted by relevance
19 % is_virtual = inst.opcode.include? 'virt'21 …BuildLaunch<Opcode::<%= is_virtual ? 'CallLaunchVirtual' : 'CallLaunchStatic' %>, <%= is_range ? '…
31 template <bool IS_VIRTUAL>37 constexpr int ARG_OFFSET = IS_VIRTUAL ? 1 : 0;
215 % is_virtual = inst.opcode.include? 'virt'218 …BuildCallHelper<Opcode::<%= is_virtual ? 'CallVirtual' : 'CallStatic' %>, <%= is_range ? 'true' : …
261 template <bool IS_VIRTUAL>
219 template <bool IS_VIRTUAL, typename NapiType, typename EtsValueType, typename Args>224 if constexpr (IS_VIRTUAL) { in GeneralMethodCall()