HomeSort by relevance Sort by last modified time
    Searched refs:Restrict (Results 1 - 11 of 11) sorted by null

  /external/clang/include/clang/AST/
Type.h 106 /// * C99: const, volatile, and restrict
113 Restrict = 0x2,
115 CVRMask = Const | Volatile | Restrict
198 bool hasRestrict() const { return Mask & Restrict; }
200 Mask = (Mask & ~Restrict) | (flag ? Restrict : 0);
202 void removeRestrict() { Mask &= ~Restrict; }
203 void addRestrict() { Mask |= Restrict; }
544 /// "restrict" qualifier set, without looking through typedefs that may have
545 /// added "restrict" at a different level
    [all...]
ASTContext.h 524 /// 'restrict' qualified type. The resulting type has a union of the
525 /// qualifiers from T and 'restrict'.
527 return T.withFastQualifiers(Qualifiers::Restrict);
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 419 if (TypeQuals & Qualifiers::Restrict)
420 Proto += " restrict";
DumpXML.cpp 896 setFlag("restrict", Qs.hasRestrict());
981 setFlag("restrict", T->getTypeQuals() & Qualifiers::Restrict);
TypePrinter.cpp 70 if (TypeQuals & Qualifiers::Restrict) {
72 S += "restrict";
    [all...]
  /external/clang/lib/Sema/
SemaType.cpp 896 // Apply const/volatile/restrict qualifiers to T.
    [all...]
SemaCodeComplete.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaOverload.cpp     [all...]
  /external/v8/src/
messages.js 267 location.restrict();
557 * Restrict source location start and end positions to make the source slice
564 SourceLocation.prototype.restrict = function (opt_limit, opt_before) {
588 // If the [start, end[ interval is too big we restrict
663 location.restrict();
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 1184 milliseconds