HomeSort by relevance Sort by last modified time
    Searched refs:Volatile (Results 1 - 17 of 17) 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/llvm/include/llvm/Analysis/
AliasSetTracker.h 138 // Volatile - True if this alias set contains volatile loads or stores.
139 bool Volatile : 1;
160 // isVolatile - Return true if this alias set contains volatile loads or
162 bool isVolatile() const { return Volatile; }
224 AccessTy(NoModRef), AliasTy(MustAlias), Volatile(false) {
263 void setVolatile() { Volatile = true; }
  /external/clang/lib/CodeGen/
CGValue.h 89 // volatile or not. Remove default to find all places that probably get this
91 static RValue getAggregate(llvm::Value *V, bool Volatile = false) {
95 ER.V2.setInt(Volatile);
400 /// be initialied. Only 'volatile' and the Objective-C lifetime
CGExpr.cpp     [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 110 /// * C99: const, volatile, and restrict
118 Volatile = 0x4,
119 CVRMask = Const | Volatile | Restrict
233 bool hasVolatile() const { return Mask & Volatile; }
235 Mask = (Mask & ~Volatile) | (flag ? Volatile : 0);
237 void removeVolatile() { Mask &= ~Volatile; }
238 void addVolatile() { Mask |= Volatile; }
524 /// example we only need one for 'int', 'const int', 'volatile int',
525 /// 'const volatile int', etc)
    [all...]
ASTContext.h 851 /// \brief Return the uniqued reference to the type for a \c volatile
855 /// \c volatile.
857 return T.withFastQualifiers(Qualifiers::Volatile);
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaOverload.cpp     [all...]
SemaType.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /dalvik/vm/
Jni.cpp     [all...]
  /external/clang/lib/AST/
TypePrinter.cpp 118 if (TypeQuals & Qualifiers::Volatile) {
120 OS << "volatile";
    [all...]
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp     [all...]

Completed in 161 milliseconds