HomeSort by relevance Sort by last modified time
    Searched defs:Volatile (Results 1 - 3 of 3) 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/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /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...]

Completed in 74 milliseconds