Home
last modified time | relevance | path

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

12345678910>>...246

/external/llvm-project/lldb/test/API/lang/cpp/operators/
Dmain.cpp6 struct C { struct
7 …void *operator new(std::size_t size) { void *p = ::operator new(size); side_effect = 3; return p; } in operator new()
8 …id *operator new[](std::size_t size) { void *p = ::operator new(size); side_effect = 4; return p; } in operator new[]()
9 void operator delete(void *p) { std::free(p); side_effect = 1; } in operator delete()
10 void operator delete[](void *p) { std::free(p); side_effect = 2; } in operator delete[]()
12 B b;
13 B* operator->() { return &b; } in operator ->()
14 int operator->*(int) { return 2; } in operator ->*()
15 int operator+(int) { return 44; } in operator +()
16 int operator+=(int) { return 42; } in operator +=()
[all …]
/external/llvm-project/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/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/llvm/include/llvm/ExecutionEngine/Orc/
DRPCChannel.h56 inline Error startSendMessage(RPCChannel &C) { in startSendMessage()
63 inline Error endSendMessage(RPCChannel &C) { in endSendMessage()
70 inline Error startReceiveMessage(RPCChannel &C) { in startReceiveMessage()
77 inline Error endReceiveMessage(RPCChannel &C) { in endReceiveMessage()
84 Error serializeSeq(RPCChannel &C, const T &Arg, const Ts &... Args) { in serializeSeq()
91 inline Error serializeSeq(RPCChannel &C) { return Error::success(); } in serializeSeq()
95 Error deserializeSeq(RPCChannel &C, T &Arg, Ts &... Args) { in deserializeSeq()
102 inline Error deserializeSeq(RPCChannel &C) { return Error::success(); } in deserializeSeq()
112 serialize(RPCChannel &C, T V) { in serialize()
125 deserialize(RPCChannel &C, T &V) { in deserialize()
[all …]
/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() function
15 C(A x) : a(x) {} in C() function
16 C(void (C::*x)(), int y) : b(), c(y), e(x) {} in C() argument
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-project/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() function
15 C(A x) : a(x) {} in C() function
16 C(void (C::*x)(), int y) : b(), c(y), e(x) {} in C() argument
Dcopy-assign-synthesis-3.cpp12 struct C { struct
17 _Complex float e; argument
22 void a(C& x, C& y) { in a() argument
/external/python/cpython3/Lib/test/
Dtest_dataclasses.py26 class C: class
34 class C: class
42 class C: class
52 class C: class
69 class C: class
77 class C: class
89 class C: class
102 class C(B): class
116 class C(B): class
123 class C: class
[all …]
/external/llvm-project/clang/test/SemaCUDA/
Dinherited-ctor.cu13 struct C { struct
14 struct B b;
15 C() : b(0) {} in C() function
39 struct C { struct
40 struct B b;
41C() : b(0) {} // expected-error{{constructor inherited by 'B' from base class 'A' is implicitly de… in C() function
57 struct C { struct
58 struct B b;
59 C() {} in C() function
83 struct C { struct
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DSwapByteOrder.h72 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes()
73 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes()
74 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes()
76 inline unsigned short getSwappedBytes(unsigned short C) { return SwapByteOrder_16(C); } in getSwappedBytes()
77 inline signed short getSwappedBytes( signed short C) { return SwapByteOrder_16(C); } in getSwappedBytes()
79 inline unsigned int getSwappedBytes(unsigned int C) { return SwapByteOrder_32(C); } in getSwappedBytes()
80 inline signed int getSwappedBytes( signed int C) { return SwapByteOrder_32(C); } in getSwappedBytes()
83 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_32(C); } in getSwappedBytes()
84 inline signed long getSwappedBytes( signed long C) { return SwapByteOrder_32(C); } in getSwappedBytes()
86 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_64(C); } in getSwappedBytes()
[all …]
/external/llvm/include/llvm/Support/
DSwapByteOrder.h69 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes()
70 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes()
71 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes()
73 inline unsigned short getSwappedBytes(unsigned short C) { return SwapByteOrder_16(C); } in getSwappedBytes()
74 inline signed short getSwappedBytes( signed short C) { return SwapByteOrder_16(C); } in getSwappedBytes()
76 inline unsigned int getSwappedBytes(unsigned int C) { return SwapByteOrder_32(C); } in getSwappedBytes()
77 inline signed int getSwappedBytes( signed int C) { return SwapByteOrder_32(C); } in getSwappedBytes()
80 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_32(C); } in getSwappedBytes()
81 inline signed long getSwappedBytes( signed long C) { return SwapByteOrder_32(C); } in getSwappedBytes()
83 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_64(C); } in getSwappedBytes()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DSwapByteOrder.h98 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes()
99 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes()
100 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes()
102 inline unsigned short getSwappedBytes(unsigned short C) { return SwapByteOrder_16(C); } in getSwappedBytes()
103 inline signed short getSwappedBytes( signed short C) { return SwapByteOrder_16(C); } in getSwappedBytes()
105 inline unsigned int getSwappedBytes(unsigned int C) { return SwapByteOrder_32(C); } in getSwappedBytes()
106 inline signed int getSwappedBytes( signed int C) { return SwapByteOrder_32(C); } in getSwappedBytes()
109 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_32(C); } in getSwappedBytes()
110 inline signed long getSwappedBytes( signed long C) { return SwapByteOrder_32(C); } in getSwappedBytes()
112 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_64(C); } in getSwappedBytes()
[all …]
/external/perfetto/src/trace_processor/tables/
Dprofiler_tables.h50 #define PERFETTO_TP_PROFILER_SMAPS_DEF(NAME, PARENT, C) \ argument
80 #define PERFETTO_TP_PACKAGES_LIST_DEF(NAME, PARENT, C) \ argument
98 #define PERFETTO_TP_STACK_PROFILE_MAPPING_DEF(NAME, PARENT, C) \ argument
120 #define PERFETTO_TP_STACK_PROFILE_FRAME_DEF(NAME, PARENT, C) \ argument
137 #define PERFETTO_TP_STACK_PROFILE_CALLSITE_DEF(NAME, PARENT, C) \ argument
153 #define PERFETTO_TP_STACK_SAMPLE_DEF(NAME, PARENT, C) \ argument
166 #define PERFETTO_TP_CPU_PROFILE_STACK_SAMPLE_DEF(NAME, PARENT, C) \ argument
192 #define PERFETTO_TP_PERF_SAMPLE_DEF(NAME, PARENT, C) \ argument
225 #define PERFETTO_TP_SYMBOL_DEF(NAME, PARENT, C) \ argument
250 #define PERFETTO_TP_HEAP_PROFILE_ALLOCATION_DEF(NAME, PARENT, C) \ argument
[all …]
Dtrack_tables.h28 #define PERFETTO_TP_TRACK_TABLE_DEF(NAME, PARENT, C) \ argument
37 #define PERFETTO_TP_PROCESS_TRACK_TABLE_DEF(NAME, PARENT, C) \ argument
45 #define PERFETTO_TP_THREAD_TRACK_TABLE_DEF(NAME, PARENT, C) \ argument
53 #define PERFETTO_TP_GPU_TRACK_DEF(NAME, PARENT, C) \ argument
63 #define PERFETTO_TP_COUNTER_TRACK_DEF(NAME, PARENT, C) \ argument
72 #define PERFETTO_TP_THREAD_COUNTER_TRACK_DEF(NAME, PARENT, C) \ argument
80 #define PERFETTO_TP_PROCESS_COUNTER_TRACK_DEF(NAME, PARENT, C) \ argument
88 #define PERFETTO_TP_CPU_COUNTER_TRACK_DEF(NAME, PARENT, C) \ argument
96 #define PERFETTO_TP_IRQ_COUNTER_TRACK_DEF(NAME, PARENT, C) \ argument
104 #define PERFETTO_TP_SOFTIRQ_COUNTER_TRACK_DEF(NAME, PARENT, C) \ argument
[all …]
/external/llvm-project/llvm/include/llvm/Support/
DSwapByteOrder.h103 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes()
104 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes()
105 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes()
107 inline unsigned short getSwappedBytes(unsigned short C) { return ByteSwap_16(C); } in getSwappedBytes()
108 inline signed short getSwappedBytes( signed short C) { return ByteSwap_16(C); } in getSwappedBytes()
110 inline unsigned int getSwappedBytes(unsigned int C) { return ByteSwap_32(C); } in getSwappedBytes()
111 inline signed int getSwappedBytes( signed int C) { return ByteSwap_32(C); } in getSwappedBytes()
113 inline unsigned long getSwappedBytes(unsigned long C) { in getSwappedBytes()
118 inline signed long getSwappedBytes(signed long C) { in getSwappedBytes()
124 inline unsigned long long getSwappedBytes(unsigned long long C) { in getSwappedBytes()
[all …]
DDataExtractor.h37 inline uint24_t getSwappedBytes(uint24_t C) { in getSwappedBytes()
133 const char *getCStr(Cursor &C) const { return getCStrRef(C).data(); } in getCStr()
166 StringRef getCStrRef(Cursor &C) const { in getCStrRef()
236 StringRef getBytes(Cursor &C, uint64_t Length) { in getBytes()
276 uint64_t getUnsigned(Cursor &C, uint32_t Size) const { in getUnsigned()
329 uint64_t getAddress(Cursor &C) const { return getUnsigned(C, AddressSize); } in getAddress()
356 uint8_t getU8(Cursor &C) const { return getU8(&C.Offset, &C.Err); } in getU8()
394 void getU8(Cursor &C, SmallVectorImpl<uint8_t> &Dst, uint32_t Count) const { in getU8()
430 uint16_t getU16(Cursor &C) const { return getU16(&C.Offset, &C.Err); } in getU16()
483 uint32_t getU24(Cursor &C) const { return getU24(&C.Offset, &C.Err); } in getU24()
[all …]
/external/llvm-project/clang/lib/AST/
DStmtOpenMP.cpp195 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, in Create()
205 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
214 OMPSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
240 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
250 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, in Create()
285 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
295 OMPForSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
329 OMPForSimdDirective *OMPForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
339 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, in Create()
350 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
[all …]
/external/llvm-project/libcxx/test/std/localization/locale.stdcvt/
Dcodecvt_utf16_length.pass.cpp30 typedef std::codecvt_utf16<wchar_t> C; in main() typedef
53 typedef std::codecvt_utf16<wchar_t, 0x1000> C; in main() typedef
76 typedef std::codecvt_utf16<wchar_t, 0x10ffff, std::consume_header> C; in main() typedef
99 typedef std::codecvt_utf16<wchar_t, 0x10ffff, std::little_endian> C; in main() typedef
122 typedef std::codecvt_utf16<wchar_t, 0x1000, std::little_endian> C; in main() typedef
147 std::little_endian)> C; in main() typedef
170 typedef std::codecvt_utf16<char32_t> C; in main() typedef
193 typedef std::codecvt_utf16<char32_t, 0x1000> C; in main() typedef
216 typedef std::codecvt_utf16<char32_t, 0x10ffff, std::consume_header> C; in main() typedef
239 typedef std::codecvt_utf16<char32_t, 0x10ffff, std::little_endian> C; in main() typedef
[all …]
/external/libcxx/test/std/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/llvm-project/llvm/lib/CodeGen/MIRParser/
DMILexer.cpp87 static Cursor skipWhitespace(Cursor C) { in skipWhitespace()
93 static bool isNewlineChar(char C) { return C == '\n' || C == '\r'; } in isNewlineChar()
96 static Cursor skipComment(Cursor C) { in skipComment()
106 static Cursor skipMachineOperandComment(Cursor C) { in skipMachineOperandComment()
120 static bool isIdentifierChar(char C) { in isIdentifierChar()
130 Cursor C = Cursor(Value.substr(1, Value.size() - 2)); in unescapeQuotedString() local
156 static Cursor lexStringConstant(Cursor C, ErrorCallbackType ErrorCallback) { in lexStringConstant()
170 static Cursor lexName(Cursor C, MIToken &Token, MIToken::TokenKind Type, in lexName()
276 static Cursor maybeLexIdentifier(Cursor C, MIToken &Token) { in maybeLexIdentifier()
288 static Cursor maybeLexMachineBasicBlock(Cursor C, MIToken &Token, in maybeLexMachineBasicBlock()
[all …]
/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/
DRPCSerialization.h263 static Error emitSeparator(ChannelT &C) { return Error::success(); } in emitSeparator()
264 static Error consumeSeparator(ChannelT &C) { return Error::success(); } in consumeSeparator()
282 static Error serialize(ChannelT &C) { return Error::success(); } in serialize()
283 static Error deserialize(ChannelT &C) { return Error::success(); } in deserialize()
291 static Error serialize(ChannelT &C, CArgT &&CArg) { in serialize()
297 static Error deserialize(ChannelT &C, CArgT &CArg) { in deserialize()
307 static Error serialize(ChannelT &C, CArgT &&CArg, in serialize()
320 static Error deserialize(ChannelT &C, CArgT &CArg, in deserialize()
332 Error serializeSeq(ChannelT &C, ArgTs &&... Args) { in serializeSeq()
338 Error deserializeSeq(ChannelT &C, ArgTs &... Args) { in deserializeSeq()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/RPC/
DRPCSerialization.h248 static Error emitSeparator(ChannelT &C) { return Error::success(); } in emitSeparator()
249 static Error consumeSeparator(ChannelT &C) { return Error::success(); } in consumeSeparator()
267 static Error serialize(ChannelT &C) { return Error::success(); } in serialize()
268 static Error deserialize(ChannelT &C) { return Error::success(); } in deserialize()
276 static Error serialize(ChannelT &C, CArgT &&CArg) { in serialize()
283 static Error deserialize(ChannelT &C, CArgT &CArg) { in deserialize()
293 static Error serialize(ChannelT &C, CArgT &&CArg, in serialize()
306 static Error deserialize(ChannelT &C, CArgT &CArg, in deserialize()
318 Error serializeSeq(ChannelT &C, ArgTs &&... Args) { in serializeSeq()
324 Error deserializeSeq(ChannelT &C, ArgTs &... Args) { in deserializeSeq()
[all …]

12345678910>>...246