Home
last modified time | relevance | path

Searched refs:ecb (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dconvert-to-bool.cpp23 if (ecb) { } in test_conv_to_bool()
26 for (; ecb; ) { } in test_conv_to_bool()
29 while (ecb) { } in test_conv_to_bool()
32 do { } while (ecb); in test_conv_to_bool()
36 if (!ecb) { } in test_conv_to_bool()
38 bool b1 = !ecb; in test_conv_to_bool()
39 if (ctb && ecb) { } in test_conv_to_bool()
40 bool b2 = ctb && ecb; in test_conv_to_bool()
41 if (ctb || ecb) { } in test_conv_to_bool()
42 bool b3 = ctb || ecb; in test_conv_to_bool()
[all …]
/llvm-project-15.0.7/llvm/lib/Support/
H A DIntEqClasses.cpp35 unsigned ecb = EC[b]; in join() local
39 while (eca != ecb) in join()
40 if (eca < ecb) { in join()
42 b = ecb; in join()
43 ecb = EC[b]; in join()
45 EC[a] = ecb; in join()
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dtemp_arg_nontype_cxx1z.cpp87 constexpr int E::*ecb = cb; // expected-note +{{here}} variable
109 using Aecb = A<int E::*, ecb>; // expected-error {{not supported}}