HomeSort by relevance Sort by last modified time
    Searched defs:Volatile (Results 1 - 5 of 5) 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/chromium_org/tools/usb_gadget/
hid_descriptors.py 117 Volatile = (7, True)
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/clang/include/clang/AST/
Type.h 109 /// * C99: const, volatile, and restrict
117 Volatile = 0x4,
118 CVRMask = Const | Volatile | Restrict
232 bool hasVolatile() const { return Mask & Volatile; }
234 Mask = (Mask & ~Volatile) | (flag ? Volatile : 0);
236 void removeVolatile() { Mask &= ~Volatile; }
237 void addVolatile() { Mask |= Volatile; }
523 /// example we only need one for 'int', 'const int', 'volatile int',
524 /// 'const volatile int', etc)
    [all...]
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 

Completed in 116 milliseconds