OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SimpleTypeKind
(Results
1 - 7
of
7
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeIndex.cpp
20
SimpleTypeKind
Kind;
27
{"void*",
SimpleTypeKind
::Void},
28
{"<not translated>*",
SimpleTypeKind
::NotTranslated},
29
{"HRESULT*",
SimpleTypeKind
::HResult},
30
{"signed char*",
SimpleTypeKind
::SignedCharacter},
31
{"unsigned char*",
SimpleTypeKind
::UnsignedCharacter},
32
{"char*",
SimpleTypeKind
::NarrowCharacter},
33
{"wchar_t*",
SimpleTypeKind
::WideCharacter},
34
{"char16_t*",
SimpleTypeKind
::Character16},
35
{"char32_t*",
SimpleTypeKind
::Character32}
[
all
...]
TypeStreamMerger.cpp
204
const TypeIndex TypeStreamMerger::Untranslated(
SimpleTypeKind
::NotTranslated);
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeTypeEnum.cpp
193
case
SimpleTypeKind
::Boolean128:
194
case
SimpleTypeKind
::Boolean64:
195
case
SimpleTypeKind
::Boolean32:
196
case
SimpleTypeKind
::Boolean16:
197
case
SimpleTypeKind
::Boolean8:
199
case
SimpleTypeKind
::NarrowCharacter:
200
case
SimpleTypeKind
::UnsignedCharacter:
201
case
SimpleTypeKind
::SignedCharacter:
203
case
SimpleTypeKind
::WideCharacter:
205
case
SimpleTypeKind
::Character16
[
all
...]
SymbolCache.cpp
41
// Maps codeview::
SimpleTypeKind
of a built-in type to the parameters necessary
44
codeview::
SimpleTypeKind
Kind;
48
{codeview::
SimpleTypeKind
::None, PDB_BuiltinType::None, 0},
49
{codeview::
SimpleTypeKind
::Void, PDB_BuiltinType::Void, 0},
50
{codeview::
SimpleTypeKind
::HResult, PDB_BuiltinType::HResult, 4},
51
{codeview::
SimpleTypeKind
::Int16Short, PDB_BuiltinType::Int, 2},
52
{codeview::
SimpleTypeKind
::UInt16Short, PDB_BuiltinType::UInt, 2},
53
{codeview::
SimpleTypeKind
::Int32, PDB_BuiltinType::Int, 4},
54
{codeview::
SimpleTypeKind
::UInt32, PDB_BuiltinType::UInt, 4},
55
{codeview::
SimpleTypeKind
::Int32Long, PDB_BuiltinType::Int, 4}
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeIndex.h
26
enum class
SimpleTypeKind
: uint32_t {
94
/// composed of a SimpleTypeMode byte followed by a
SimpleTypeKind
byte.
103
TypeIndex() : Index(static_cast<uint32_t>(
SimpleTypeKind
::None)) {}
105
explicit TypeIndex(
SimpleTypeKind
Kind)
107
TypeIndex(
SimpleTypeKind
Kind, SimpleTypeMode Mode)
135
SimpleTypeKind
getSimpleKind() const {
137
return static_cast<
SimpleTypeKind
>(Index & SimpleKindMask);
147
static TypeIndex None() { return TypeIndex(
SimpleTypeKind
::None); }
148
static TypeIndex Void() { return TypeIndex(
SimpleTypeKind
::Void); }
150
return TypeIndex(
SimpleTypeKind
::Void, SimpleTypeMode::NearPointer32)
[
all
...]
GlobalTypeTableBuilder.h
88
Result.first->getSecond() = TypeIndex(
SimpleTypeKind
::NotTranslated);
89
return TypeIndex(
SimpleTypeKind
::NotTranslated);
93
(uint32_t)
SimpleTypeKind
::NotTranslated);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp
1592
if (UnderlyingTypeIndex == TypeIndex(
SimpleTypeKind
::Int32Long) &&
1594
return TypeIndex(
SimpleTypeKind
::HResult);
1595
if (UnderlyingTypeIndex == TypeIndex(
SimpleTypeKind
::UInt16Short) &&
1597
return TypeIndex(
SimpleTypeKind
::WideCharacter);
1607
? TypeIndex(
SimpleTypeKind
::UInt64Quad)
1608
: TypeIndex(
SimpleTypeKind
::UInt32Long);
1661
SimpleTypeKind
STK =
SimpleTypeKind
::None;
1668
case 1: STK =
SimpleTypeKind
::Boolean8; break;
1669
case 2: STK =
SimpleTypeKind
::Boolean16; break
[
all
...]
Completed in 16 milliseconds
Indexes created Sun Sep 27 00:26:35 UTC 2026