Searched defs:Restrict (Results 1 - 1 of 1) sorted by relevance

/external/clang/include/clang/AST/
H A DType.h114 Restrict = 0x2, enumerator in enum:clang::Qualifiers::TQ
116 CVRMask = Const | Volatile | Restrict
199 bool hasRestrict() const { return Mask & Restrict; }
201 Mask = (Mask & ~Restrict) | (flag ? Restrict : 0);
203 void removeRestrict() { Mask &= ~Restrict; }
204 void addRestrict() { Mask |= Restrict; }
551 return (getLocalFastQualifiers() & Qualifiers::Restrict);
959 // a) Update is{Volatile,Restrict}Qualified(), defined inline.
960 // b) Update remove{Volatile,Restrict}, define
[all...]

Completed in 72 milliseconds