Lines Matching refs:_Ctx
1377 static _Type* _Perform(_Type(&_ObjInCtx)[N], const _ContextCallback& _Ctx)
1387 _Ctx._CallInContext([&]() -> HRESULT {
1414 static _Type* _Perform(_Type* _ObjInCtx, const _ContextCallback& _Ctx)
1424 _Ctx._CallInContext([&]() -> HRESULT {
1454 static HSTRING _Perform(HSTRING _ObjInCtx, const _ContextCallback& _Ctx)
1461 _Type* _Marshal(_Type* _ObjInCtx, const _ContextCallback& _Ctx)
1463 return _MarshalHelper<_Type>::_Perform(_ObjInCtx, _Ctx);
1469 static _Type _Get(_Type _ObjInCtx, const _ContextCallback& _Ctx)
1478 static _Type* _Get(_Type* _ObjInCtx, const _ContextCallback& _Ctx)
1481 if (!_Ctx._HasCapturedContext() || _Ctx == _CurrentContext)
1489 return _Marshal<_Type>(_ObjInCtx, _Ctx);
1496 …static _Type* _GetValue(_Type* _ObjInCtx, const _ContextCallback& _Ctx, bool /* _RuntimeAggregate …
1498 return _InContext<_Type*>::_Get(_ObjInCtx, _Ctx);
1513 …<_Type*> _GetValue(std::vector<_Type*> _ObjInCtx, const _ContextCallback& _Ctx, bool _RuntimeAggre…
1521 if (!_Ctx._HasCapturedContext() || _Ctx == _CurrentContext)
1528 *_It = _Marshal<_Type>(*_It, _Ctx);
1550 …t> _GetValue(std::pair<_Type*, size_t> _ObjInCtx, const _ContextCallback& _Ctx, bool _RuntimeAggre…
1558 if (!_Ctx._HasCapturedContext() || _Ctx == _CurrentContext)
1563 … return std::pair<_Type*, size_t>(_Marshal<_Type>(_ObjInCtx.first, _Ctx), _ObjInCtx.second);