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

  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
p2.cpp 11 struct Volatile {
12 Volatile(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move constructor may not be volatile}}
13 Volatile& operator=(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move assignment operator may not be volatile}}
25 ConstAssignment& operator=(ConstAssignment&&) const = default; // expected-error {{an explicitly-defaulted move assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers}
    [all...]
  /external/webkit/Source/WebCore/platform/
PurgeableBuffer.h 61 enum State { NonVolatile, Volatile, Purged };
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 140 // Volatile - True if this alias set contains volatile loads or stores.
141 bool Volatile : 1;
162 // isVolatile - Return true if this alias set contains volatile loads or
164 bool isVolatile() const { return Volatile; }
226 AccessTy(NoModRef), AliasTy(MustAlias), Volatile(false) {
265 void setVolatile() { Volatile = true; }
  /external/webkit/Source/WebCore/platform/mac/
PurgeableBufferMac.cpp 102 m_state = Volatile;
  /external/clang/lib/CodeGen/
CGValue.h 88 // volatile or not. Remove default to find all places that probably get this
90 static RValue getAggregate(llvm::Value *V, bool Volatile = false) {
94 ER.V2.setInt(Volatile);
368 /// be initialied. Only 'volatile' and the Objective-C lifetime
CGExpr.cpp 439 /*Volatile=*/false, Alignment, E->getType());
442 /*Volatile=*/false);
752 // Must be const-qualified but non-volatile.
    [all...]
CGBuiltin.cpp     [all...]
CodeGenFunction.h     [all...]
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 38 Volatile |= AS.Volatile;
562 if (isVolatile()) OS << "[volatile] ";
  /external/clang/include/clang/AST/
Type.h 108 /// * C99: const, volatile, and restrict
116 Volatile = 0x4,
117 CVRMask = Const | Volatile | Restrict
193 bool hasVolatile() const { return Mask & Volatile; }
195 Mask = (Mask & ~Volatile) | (flag ? Volatile : 0);
197 void removeVolatile() { Mask &= ~Volatile; }
198 void addVolatile() { Mask |= Volatile; }
482 /// example we only need one for 'int', 'const int', 'volatile int',
483 /// 'const volatile int', etc)
    [all...]
ASTContext.h 650 /// 'volatile' qualified type. The resulting type has a union of the
651 /// qualifiers from T and 'volatile'.
653 return T.withFastQualifiers(Qualifiers::Volatile);
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
SemaType.cpp 562 /*volatile qualifier*/SourceLocation(),
    [all...]
SemaDeclCXX.cpp     [all...]
SemaCodeComplete.cpp     [all...]
SemaOverload.cpp     [all...]
  /dalvik/vm/
Jni.cpp     [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 448 if (TypeQuals & Qualifiers::Volatile)
449 Proto += " volatile";
    [all...]
DumpXML.cpp 892 setFlag("volatile", Qs.hasVolatile());
977 setFlag("volatile", T->getTypeQuals() & Qualifiers::Volatile);
TypePrinter.cpp 66 if (TypeQuals & Qualifiers::Volatile) {
68 S += "volatile";
    [all...]
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp     [all...]

Completed in 326 milliseconds