Lines Matching refs:_ObjInCtx
1364 …static _Type _GetValue(_Type _ObjInCtx, const _ContextCallback & /* _Ctx */, bool /* _RuntimeAggre…
1366 return _ObjInCtx;
1377 static _Type* _Perform(_Type(&_ObjInCtx)[N], const _ContextCallback& _Ctx)
1380 if (_ObjInCtx == nullptr)
1391 IUnknown * _PUnk = winrt_array_type::create(_ObjInCtx, N);
1414 static _Type* _Perform(_Type* _ObjInCtx, const _ContextCallback& _Ctx)
1417 if (_ObjInCtx == nullptr)
1428 IUnknown * _PUnk = winrt_type<_Type>::create(_ObjInCtx);
1454 static HSTRING _Perform(HSTRING _ObjInCtx, const _ContextCallback& _Ctx)
1456 return _ObjInCtx;
1461 _Type* _Marshal(_Type* _ObjInCtx, const _ContextCallback& _Ctx)
1463 return _MarshalHelper<_Type>::_Perform(_ObjInCtx, _Ctx);
1469 static _Type _Get(_Type _ObjInCtx, const _ContextCallback& _Ctx)
1471 return _ObjInCtx;
1478 static _Type* _Get(_Type* _ObjInCtx, const _ContextCallback& _Ctx)
1483 return _ObjInCtx;
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 …static std::vector<_Type*> _GetValue(std::vector<_Type*> _ObjInCtx, const _ContextCallback& _Ctx, …
1517 return _ObjInCtx;
1523 return _ObjInCtx;
1526 for (auto _It = _ObjInCtx.begin(); _It != _ObjInCtx.end(); ++_It)
1531 return _ObjInCtx;
1550 …static std::pair<_Type*, size_t> _GetValue(std::pair<_Type*, size_t> _ObjInCtx, const _ContextCall…
1554 return _ObjInCtx;
1560 return _ObjInCtx;
1563 … return std::pair<_Type*, size_t>(_Marshal<_Type>(_ObjInCtx.first, _Ctx), _ObjInCtx.second);