Home
last modified time | relevance | path

Searched refs:_storage (Results 1 – 3 of 3) sorted by relevance

/reactos/modules/rosapps/applications/explorer-old/utility/
H A Ddragdropimpl.cpp33 for(StorageArray::iterator it=_storage.begin(); it!=_storage.end(); ++it) in ~IDataObjectImpl()
46 for(StorageArray::iterator it=_storage.begin(); it!=_storage.end(); ++it) in GetData()
79 for(StorageArray::iterator it=_storage.begin(); it!=_storage.end(); ++it) in QueryGetData()
135 _storage.push_back(storage); in SetData()
186 *ppenumFormatEtc = new EnumFormatEtcImpl(_storage); in EnumFormatEtc()
H A Ddragdropimpl.h88 StorageArray _storage; variable
/reactos/sdk/lib/ucrt/inc/
H A Dcorecrt_internal_stdio_input.h291 return _storage.data() != nullptr; in is_usable()
296 _storage.data()[c / CHAR_BIT] |= 1 << (c % CHAR_BIT); in set()
301 return (_storage.data()[c / CHAR_BIT] & 1 << (c % CHAR_BIT)) != 0; in test()
306 unsigned char* const first{_storage.data()}; in reset()
310 ::memset(first, 0, _storage.size()); in reset()
315 unsigned char* const first{_storage.data() }; in invert()
316 unsigned char* const last {first + _storage.size()}; in invert()
326 scanset_storage<sizeof(UnsignedCharacter)> _storage;