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