Lines Matching refs:MatchesMask
70 bool MatchesMask(UINT32 mask) const { return ((Attrib & mask) != 0); }
109 bool IsArchived() const { return MatchesMask(FILE_ATTRIBUTE_ARCHIVE); }
110 bool IsCompressed() const { return MatchesMask(FILE_ATTRIBUTE_COMPRESSED); }
111 bool IsDir() const { return MatchesMask(FILE_ATTRIBUTE_DIRECTORY); }
112 bool IsEncrypted() const { return MatchesMask(FILE_ATTRIBUTE_ENCRYPTED); }
113 bool IsHidden() const { return MatchesMask(FILE_ATTRIBUTE_HIDDEN); }
114 bool IsNormal() const { return MatchesMask(FILE_ATTRIBUTE_NORMAL); }
115 bool IsOffline() const { return MatchesMask(FILE_ATTRIBUTE_OFFLINE); }
116 bool IsReadOnly() const { return MatchesMask(FILE_ATTRIBUTE_READONLY); }
117 bool HasReparsePoint() const { return MatchesMask(FILE_ATTRIBUTE_REPARSE_POINT); }
118 bool IsSparse() const { return MatchesMask(FILE_ATTRIBUTE_SPARSE_FILE); }
119 bool IsSystem() const { return MatchesMask(FILE_ATTRIBUTE_SYSTEM); }
120 bool IsTemporary() const { return MatchesMask(FILE_ATTRIBUTE_TEMPORARY); }