Searched defs:volatile (Results 1 - 12 of 12) sorted by last modified time

/external/valgrind/main/coregrind/m_demangle/
H A Dansidecl.h31 volatile not defined `'
170 #undef volatile macro
189 #define VOLATILE volatile
218 #undef volatile macro
222 #define volatile macro
/external/ppp/pppd/
H A Dpppd.h67 #define volatile macro
239 extern volatile int status; /* exit status for pppd */
/external/e2fsprogs/intl/
H A Dlocalcharset.c94 /* The following static variable is declared 'volatile' to avoid a
101 # define volatile /* empty */ macro
106 static const char * volatile charset_aliases;
/external/clang/test/SemaCXX/
H A Daddr-of-overloaded-function.cpp185 void V() volatile {}; argument
187 void CV() const volatile {}; argument
189 void VR() volatile __restrict {};
190 void CVR() const volatile __restrict {};
197 X = &Qualifiers::V; // expected-error{{assigning to 'void (test1::Qualifiers::*)()' from incompatible type 'void (test1::Qualifiers::*)() volatile': different qualifiers (none vs volatile)}}
199 X = &Qualifiers::CV; // expected-error{{assigning to 'void (test1::Qualifiers::*)()' from incompatible type 'void (test1::Qualifiers::*)() const volatile': different qualifiers (none vs const and volatile)}}
201 X = &Qualifiers::VR; // expected-error{{assigning to 'void (test1::Qualifiers::*)()' from incompatible type 'void (test1::Qualifiers::*)() volatile restrict': different qualifiers (none vs volatile an
[all...]
H A Ddecltype-this.cpp14 void h() volatile { static_assert(is_same<decltype(this), volatile S*>::value, ""); } argument
15 void i() const volatile { static_assert(is_same<decltype(this), const volatile S*>::value, ""); } argument
/external/clang/test/CXX/expr/expr.mptr.oper/
H A Dp5.cpp6 void f2() volatile;
7 void f3() const volatile;
12 void (X0::*pmv)() volatile,
13 void (X0::*pmcv)() const volatile,
16 volatile X0 *pv,
17 const volatile X0 *pcv,
20 volatile X0 &ov,
21 const volatile X0 &ocv) {
29 (pc->*pmv)(); // expected-error{{call to pointer to member function of type 'void () volatile' drops 'const' qualifier}}
32 (pv->*pm)(); // expected-error{{call to pointer to member function of type 'void ()' drops 'volatile' qualifie
10 test_object_cvquals(void (X0::*pm)(), void (X0::*pmc)() const, void (X0::*pmv)() volatile, void (X0::*pmcv)() const volatile, X0 *p, const X0 *pc, volatile X0 *pv, const volatile X0 *pcv, X0 &o, const X0 &oc, volatile X0 &ov, const volatile X0 &ocv) argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dmangle-ref-qualifiers.cpp22 A<int() const volatile>, A<int() const volatile &>, A<int() const volatile &&>) {}
20 g(A<int()>, A<int()&>, A<int()&&>, A<int() const>, A<int() const &>, A<int() const &&>, A<int() const volatile>, A<int() const volatile &>, A<int() const volatile &&>) argument
H A Dmangle-unnamed.cpp84 typedef volatile struct {
85 void test9() volatile {} argument
H A Dpredefined-expr.cpp53 // CHECK: private unnamed_addr constant [54 x i8] c"void NS::Base::constVolatileFunction() const volatile\00"
56 // CHECK: private unnamed_addr constant [43 x i8] c"void NS::Base::volatileFunction() volatile\00"
215 void volatileFunction() volatile { argument
221 void constVolatileFunction() const volatile { argument
/external/clang/test/FixIt/
H A Dfixit.cpp166 void foo2() volatile {} // expected-error {{non-member function cannot have 'volatile' qualifier}} argument
167 void foo3() const volatile {} // expected-error {{non-member function cannot have 'const volatile' qualifier}} argument
/external/clang/test/Index/
H A Dcomplete-memfunc-cvquals.cpp4 void babble() const volatile;
7 void bingo() volatile;
8 void theend() const volatile;
18 smart_ptr<Foo> sf, const smart_ptr<Foo> &sfc, Foo volatile *fvp) {
36 void Foo::bingo() volatile { argument
44 // CHECK-NOQUALS: CXXMethod:{ResultType void}{TypedText babble}{LeftParen (}{RightParen )}{Informative const volatile} (35)
47 // CHECK-NOQUALS: CXXMethod:{ResultType void}{TypedText bingo}{LeftParen (}{RightParen )}{Informative volatile} (35)
51 // CHECK-CONST: CXXMethod:{ResultType void}{TypedText babble}{LeftParen (}{RightParen )}{Informative const volatile} (35)
57 // CHECK-VOLATILE: CXXMethod:{ResultType void}{TypedText babble}{LeftParen (}{RightParen )}{Informative const volatile} (35)
59 // CHECK-VOLATILE: CXXMethod:{ResultType void}{TypedText bingo}{LeftParen (}{RightParen )}{Informative volatile} (3
[all...]
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp90 #define volatile macro
175 volatile

Completed in 259 milliseconds