HomeSort by: relevance | last modified time | path
    Searched defs:Restrict (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
PrettyPrinter.h 70 Nullptr(LO.CPlusPlus11), Restrict(LO.C99), Alignof(LO.CPlusPlus11),
198 /// Whether we can use 'restrict' rather than '__restrict'.
199 unsigned Restrict : 1;
Type.h 141 /// * C99: const, volatile, and restrict
149 Restrict = 0x2,
151 CVRMask = Const | Volatile | Restrict
272 bool hasRestrict() const { return Mask & Restrict; }
273 bool hasOnlyRestrict() const { return Mask == Restrict; }
274 void removeRestrict() { Mask &= ~Restrict; }
275 void addRestrict() { Mask |= Restrict; }
748 /// "restrict" qualifier set, without looking through typedefs that may have
749 /// added "restrict" at a different level.
751 return (getLocalFastQualifiers() & Qualifiers::Restrict);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 363 Restrict = 0x00001000,

Completed in 31 milliseconds