HomeSort by relevance Sort by last modified time
    Searched refs:Volatile (Results 1 - 22 of 22) 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; }
225 AccessTy(NoModRef), AliasTy(MustAlias), Volatile(false) {
264 void setVolatile() { Volatile = true; }
  /external/chromium_org/tools/usb_gadget/
hid_descriptors.py 117 Volatile = (7, 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);
415 /// be initialied. Only 'volatile' and the Objective-C lifetime
CGExpr.cpp     [all...]
CodeGenFunction.h     [all...]
CGBuiltin.cpp     [all...]
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 37 Volatile |= AS.Volatile;
559 if (isVolatile()) OS << "[volatile] ";
  /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...]
ASTContext.h     [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
SemaOverload.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaType.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /art/compiler/dex/quick/
dex_file_method_inliner.cc 372 INTRINSIC(SunMiscUnsafe, Get ## type ## Volatile, ObjectJ_ ## code, kIntrinsicUnsafeGet, \
376 INTRINSIC(SunMiscUnsafe, Put ## type ## Volatile, ObjectJ ## code ## _V, kIntrinsicUnsafePut, \
    [all...]
  /art/compiler/dex/
local_value_numbering_test.cc 331 TEST_F(LocalValueNumberingTest, Volatile) {
337 DEF_IGET(Instruction::IGET, 0u, 10u, 1u), // Volatile.
338 DEF_IGET(Instruction::IGET, 1u, 0u, 0u), // Non-volatile.
339 DEF_IGET(Instruction::IGET, 2u, 10u, 1u), // Volatile.
340 DEF_IGET(Instruction::IGET, 3u, 2u, 1u), // Non-volatile.
347 EXPECT_NE(value_names_[0], value_names_[2]); // Volatile has always different value name.
348 EXPECT_NE(value_names_[1], value_names_[3]); // Used different base because of volatile.
  /external/clang/lib/AST/
DeclCXX.cpp 219 // 'const B&' or 'const volatile B&' [...]
308 // B&', 'const volatile B&', or 'B' [...]
316 // 'const B&' or 'const volatile B&' [...]
704 // Record if this field is the first non-literal or volatile field or base.
744 // field can be moved if it's const or volatile qualified.
745 if (T.getCVRQualifiers() & (Qualifiers::Const | Qualifiers::Volatile)) {
    [all...]
TypePrinter.cpp 119 if (TypeQuals & Qualifiers::Volatile) {
121 OS << "volatile";
    [all...]
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp     [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARF.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 

Completed in 2025 milliseconds