OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StructorType
(Results
1 - 3
of
3
) sorted by null
/external/clang/lib/CodeGen/
CodeGenTypes.h
59
enum class
StructorType
{
65
inline CXXCtorType toCXXCtorType(
StructorType
T) {
67
case
StructorType
::Complete:
69
case
StructorType
::Base:
71
case
StructorType
::Deleting:
74
llvm_unreachable("not a
StructorType
");
77
inline
StructorType
getFromCtorType(CXXCtorType T) {
80
return
StructorType
::Complete;
82
return
StructorType
::Base;
92
inline CXXDtorType toCXXDtorType(
StructorType
T)
[
all
...]
/external/clang/lib/AST/
ItaniumMangle.cpp
220
unsigned
StructorType
;
271
: Context(C), Out(Out_), Structor(getStructor(D)),
StructorType
(0),
279
: Context(C), Out(Out_), Structor(getStructor(D)),
StructorType
(Type),
283
: Context(C), Out(Out_), Structor(getStructor(D)),
StructorType
(Type),
[
all
...]
MicrosoftMangle.cpp
219
unsigned
StructorType
;
237
: Context(C), Out(Out_), Structor(nullptr),
StructorType
(-1),
243
: Context(C), Out(Out_), Structor(getStructor(D)),
StructorType
(Type),
249
: Context(C), Out(Out_), Structor(getStructor(D)),
StructorType
(Type),
[
all
...]
Completed in 224 milliseconds