Searched refs:cvi (Results 1 - 9 of 9) sorted by relevance

/external/clang/test/SemaCXX/
H A Dcxx0x-class.cpp16 static const volatile int cvi = 0; // expected-error {{static const volatile data member must be initialized out of line}} member in class:C
H A Dreferences.cpp56 const volatile int cvi = 1; local
57 const int& r = cvi; // expected-error{{binding of reference to type 'const int' to a value of type 'const volatile int' drops qualifiers}}
H A Dconditional-expr.cpp48 const volatile int cvi; member in struct:MixedFields
193 i1 ? &MixedFields::ci : &MixedFields::cvi;
370 const volatile int cvi = 0; member in namespace:DR587
374 const volatile int &cvir1 = b ? ci : cvi;
375 const volatile int &cvir2 = b ? cvi : vi;
H A Dclass.cpp44 static const volatile int cvi = 0; // ok, illegal in C++11 member in class:C
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp5.cpp88 extern const volatile int cvi;
93 S0<cvi> s0cv; // expected-error{{reference binding of non-type template parameter of type 'int &' to template argument of type 'const volatile int' ignores qualifiers}}
98 S1<cvi> s1cv; // expected-error{{reference binding of non-type template parameter of type 'const int &' to template argument of type 'const volatile int' ignores qualifiers}}
103 S2<cvi> s2cv; // expected-error{{reference binding of non-type template parameter of type 'volatile int &' to template argument of type 'const volatile int' ignores qualifiers}}
108 S3<cvi> s3cv;
/external/valgrind/main/helgrind/
H A Dhg_main.c2181 CVInfo* cvi = HG_(zalloc)("hg.mctCloa.1", sizeof(CVInfo)); local
2182 cvi->so = so;
2183 cvi->mx_ga = 0;
2184 VG_(addToFM)( map_cond_to_CVInfo, (UWord)cond, (UWord)cvi );
2185 return cvi;
2210 CVInfo* cvi = (CVInfo*)valW; local
2212 tl_assert(cvi);
2213 tl_assert(cvi->so);
2214 if (cvi->nWaiters > 0) {
2224 libhb_so_dealloc(cvi
2248 CVInfo* cvi; local
2326 CVInfo* cvi; local
2395 CVInfo* cvi; local
2440 CVInfo* cvi; local
[all...]
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-0x.cpp125 const volatile int cvi = 1; member in namespace:std_example_2
126 const int& r2 = cvi; // expected-error{{binding of reference to type 'const int' to a value of type 'const volatile int' drops qualifiers}}
/external/llvm/unittests/ADT/
H A DHashingTest.cpp65 const volatile int cvi = 71; local
75 EXPECT_EQ(hash_value(71), hash_value(cvi));
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2698 for (SmallVector<ConstantInt*, 1>::iterator cvi = CaseVals.begin(),
2699 cve = CaseVals.end(); cvi != cve; ++cvi)
2700 SI->addCase(*cvi, DestBB);

Completed in 1780 milliseconds