Home
last modified time | relevance | path

Searched defs:C (Results 1 – 25 of 2044) sorted by relevance

12345678910>>...82

/external/chromium_org/tools/clang/plugins/tests/
Dinline_copy_ctor.h5 struct C { struct
9 static C foo() { return C(); } in foo() argument
11 int a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p , q, r, s, t, u, v, w, x;
/external/clang/test/CodeGenCXX/
Dmangle-local-class-vtables.cpp31 struct C : I { in G() struct
32 void F() const {} in G()
37 struct C : I { in G() struct
38 void F() const { G(); } in G()
39 void G() const {} in G()
44 struct C : I { in G() struct
45 void F() const { H(); } in G()
46 void H() const {} in G()
57 struct C : I { in K() struct
58 void F() const {} in K()
Dmember-init-struct.cpp6 struct C { struct
11 _Complex float c; argument
13 void (C::*e)(); argument
14 C() : a(), c(), d(), e() {} in C() argument
15 C(A x) : a(x) {} in C() argument
16 C(void (C::*x)(), int y) : b(), c(y), e(x) {} in C() function
Dcopy-assign-synthesis-3.cpp12 struct C { struct
17 _Complex float e; argument
22 void a(C& x, C& y) { in a() argument
/external/llvm/include/llvm/Support/
DSwapByteOrder.h71 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes()
72 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes()
73 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes()
75 inline unsigned short getSwappedBytes(unsigned short C) { return SwapByteOrder_16(C); } in getSwappedBytes()
76 inline signed short getSwappedBytes( signed short C) { return SwapByteOrder_16(C); } in getSwappedBytes()
78 inline unsigned int getSwappedBytes(unsigned int C) { return SwapByteOrder_32(C); } in getSwappedBytes()
79 inline signed int getSwappedBytes( signed int C) { return SwapByteOrder_32(C); } in getSwappedBytes()
82 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_32(C); } in getSwappedBytes()
83 inline signed long getSwappedBytes( signed long C) { return SwapByteOrder_32(C); } in getSwappedBytes()
85 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_64(C); } in getSwappedBytes()
[all …]
/external/clang/test/SemaCXX/
Dconstant-expression.cpp20 template <int itval, Enum etval> struct C { struct
21 enum E {
35 b1 : 1,
36 b2 : eval,
37 b3 : cval,
38 b4 : ceval,
39 b5 : Struct::sval,
40 b6 : Struct::seval,
41 b7 : itval,
42 b8 : etval,
[all …]
/external/valgrind/main/none/tests/amd64/
Drcl-amd64.c4 #define I64(C) "rcrq %%rbx\n" "rclq $" #C ",%%rax\n" "rclq %%rbx\n" argument
5 #define I32(C) "rcrl %%ebx\n" "rcll $" #C ",%%eax\n" "rcll %%ebx\n" argument
6 #define I16(C) "rcrw %%bx\n" "rclw $" #C ",%%ax\n" "rclw %%bx\n" argument
7 #define I8(C) "rcrb %%bl\n" "rclb $" #C ",%%al\n" "rclb %%bl\n" argument
9 #define TRY64(C) \ argument
14 #define TRY32(C) \ argument
19 #define TRY16(C) \ argument
24 #define TRY8(C) \ argument
/external/libcxx/test/localization/locale.stdcvt/
Dcodecvt_utf16_length.pass.cpp29 typedef std::codecvt_utf16<wchar_t> C; in main() typedef
52 typedef std::codecvt_utf16<wchar_t, 0x1000> C; in main() typedef
75 typedef std::codecvt_utf16<wchar_t, 0x10ffff, std::consume_header> C; in main() typedef
98 typedef std::codecvt_utf16<wchar_t, 0x10ffff, std::little_endian> C; in main() typedef
121 typedef std::codecvt_utf16<wchar_t, 0x1000, std::little_endian> C; in main() typedef
146 std::little_endian)> C; in main() typedef
169 typedef std::codecvt_utf16<char32_t> C; in main() typedef
192 typedef std::codecvt_utf16<char32_t, 0x1000> C; in main() typedef
215 typedef std::codecvt_utf16<char32_t, 0x10ffff, std::consume_header> C; in main() typedef
238 typedef std::codecvt_utf16<char32_t, 0x10ffff, std::little_endian> C; in main() typedef
[all …]
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
Dpop_front.pass.cpp24 typedef std::forward_list<T> C; in main() typedef
25 typedef std::forward_list<T> C; in main() typedef
38 typedef std::forward_list<T> C; in main() typedef
52 typedef std::forward_list<T, min_allocator<T>> C; in main() typedef
53 typedef std::forward_list<T, min_allocator<T>> C; in main() typedef
66 typedef std::forward_list<T, min_allocator<T>> C; in main() typedef
/external/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/
Ddecimal_point.pass.cpp26 typedef char C; in main() typedef
31 typedef wchar_t C; in main() typedef
39 typedef char C; in main() typedef
44 typedef wchar_t C; in main() typedef
52 typedef char C; in main() typedef
57 typedef wchar_t C; in main() typedef
Dthousands_sep.pass.cpp26 typedef char C; in main() typedef
31 typedef wchar_t C; in main() typedef
39 typedef char C; in main() typedef
44 typedef wchar_t C; in main() typedef
52 typedef char C; in main() typedef
57 typedef wchar_t C; in main() typedef
Dgrouping.pass.cpp26 typedef char C; in main() typedef
31 typedef wchar_t C; in main() typedef
39 typedef char C; in main() typedef
44 typedef wchar_t C; in main() typedef
52 typedef char C; in main() typedef
57 typedef wchar_t C; in main() typedef
/external/clang/test/SemaObjC/
Dqualified-protocol-method-conflicts.m6 +(int) C; // expected-note {{previous declaration is here}} class
11 +(float) C; // expected-note 2 {{previous declaration is here}} class
19 +(int) C {return 0; } // expected-warning {{conflicting return type in declaration of 'C': 'float' … class
27 + (float) C {return 0.0; } // expected-warning {{conflicting return type in declaration of 'C': 'in… class
33 @interface C<Xint_float> interface
36 @implementation C implementation
38 + (int) C {return 0;} // expected-warning {{conflicting return type in declaration of 'C': 'float' … class
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.iter/
Dbefore_begin.pass.cpp26 typedef std::forward_list<T> C; in main() typedef
33 typedef std::forward_list<T> C; in main() typedef
40 typedef std::forward_list<T> C; in main() typedef
48 typedef std::forward_list<T> C; in main() typedef
57 typedef std::forward_list<T> C; in main() typedef
66 typedef std::forward_list<T, min_allocator<T>> C; in main() typedef
73 typedef std::forward_list<T, min_allocator<T>> C; in main() typedef
80 typedef std::forward_list<T, min_allocator<T>> C; in main() typedef
88 typedef std::forward_list<T, min_allocator<T>> C; in main() typedef
97 typedef std::forward_list<T, min_allocator<T>> C; in main() typedef
/external/libcxx/test/containers/unord/unord.map/unord.map.cnstr/
Dmove_noexcept.pass.cpp43 typedef std::unordered_map<MoveOnly, MoveOnly> C; in main() typedef
48 … std::equal_to<MoveOnly>, test_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
53 … std::equal_to<MoveOnly>, other_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
57 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; in main() typedef
62 some_comp<MoveOnly>> C; in main() typedef
Ddefault_noexcept.pass.cpp47 typedef std::unordered_map<MoveOnly, MoveOnly> C; in main() typedef
52 … std::equal_to<MoveOnly>, test_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
57 … std::equal_to<MoveOnly>, other_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
61 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; in main() typedef
66 some_comp<MoveOnly>> C; in main() typedef
Ddtor_noexcept.pass.cpp44 typedef std::unordered_map<MoveOnly, MoveOnly> C; in main() typedef
49 … std::equal_to<MoveOnly>, test_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
54 … std::equal_to<MoveOnly>, other_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
58 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; in main() typedef
63 some_comp<MoveOnly>> C; in main() typedef
/external/libcxx/test/containers/unord/unord.multiset/unord.multiset.cnstr/
Ddefault_noexcept.pass.cpp47 typedef std::unordered_multiset<MoveOnly> C; in main() typedef
52 std::equal_to<MoveOnly>, test_allocator<MoveOnly>> C; in main() typedef
57 std::equal_to<MoveOnly>, other_allocator<MoveOnly>> C; in main() typedef
61 typedef std::unordered_multiset<MoveOnly, some_hash<MoveOnly>> C; in main() typedef
66 some_comp<MoveOnly>> C; in main() typedef
Ddtor_noexcept.pass.cpp44 typedef std::unordered_multiset<MoveOnly> C; in main() typedef
49 std::equal_to<MoveOnly>, test_allocator<MoveOnly>> C; in main() typedef
54 std::equal_to<MoveOnly>, other_allocator<MoveOnly>> C; in main() typedef
58 typedef std::unordered_multiset<MoveOnly, some_hash<MoveOnly>> C; in main() typedef
63 some_comp<MoveOnly>> C; in main() typedef
/external/libcxx/test/containers/unord/unord.set/unord.set.cnstr/
Ddtor_noexcept.pass.cpp44 typedef std::unordered_set<MoveOnly> C; in main() typedef
49 std::equal_to<MoveOnly>, test_allocator<MoveOnly>> C; in main() typedef
54 std::equal_to<MoveOnly>, other_allocator<MoveOnly>> C; in main() typedef
58 typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>> C; in main() typedef
63 some_comp<MoveOnly>> C; in main() typedef
Dmove_assign_noexcept.pass.cpp46 typedef std::unordered_set<MoveOnly> C; in main() typedef
51 std::equal_to<MoveOnly>, test_allocator<MoveOnly>> C; in main() typedef
56 std::equal_to<MoveOnly>, other_allocator<MoveOnly>> C; in main() typedef
60 typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>> C; in main() typedef
65 some_comp<MoveOnly>> C; in main() typedef
Ddefault_noexcept.pass.cpp47 typedef std::unordered_set<MoveOnly> C; in main() typedef
52 std::equal_to<MoveOnly>, test_allocator<MoveOnly>> C; in main() typedef
57 std::equal_to<MoveOnly>, other_allocator<MoveOnly>> C; in main() typedef
61 typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>> C; in main() typedef
66 some_comp<MoveOnly>> C; in main() typedef
/external/libcxx/test/containers/unord/unord.multimap/unord.multimap.cnstr/
Ddefault_noexcept.pass.cpp47 typedef std::unordered_multimap<MoveOnly, MoveOnly> C; in main() typedef
52 … std::equal_to<MoveOnly>, test_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
57 … std::equal_to<MoveOnly>, other_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
61 typedef std::unordered_multimap<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; in main() typedef
66 some_comp<MoveOnly>> C; in main() typedef
Dmove_assign_noexcept.pass.cpp46 typedef std::unordered_multimap<MoveOnly, MoveOnly> C; in main() typedef
51 … std::equal_to<MoveOnly>, test_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
56 … std::equal_to<MoveOnly>, other_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
60 typedef std::unordered_multimap<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; in main() typedef
65 some_comp<MoveOnly>> C; in main() typedef
Dmove_noexcept.pass.cpp43 typedef std::unordered_multimap<MoveOnly, MoveOnly> C; in main() typedef
48 … std::equal_to<MoveOnly>, test_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
53 … std::equal_to<MoveOnly>, other_allocator<std::pair<const MoveOnly, MoveOnly>>> C; in main() typedef
57 typedef std::unordered_multimap<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; in main() typedef
62 some_comp<MoveOnly>> C; in main() typedef

12345678910>>...82