OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DebugSubsectionKind
(Results
1 - 25
of
37
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugSubsection.h
21
explicit DebugSubsectionRef(
DebugSubsectionKind
Kind) : Kind(Kind) {}
26
DebugSubsectionKind
kind() const { return Kind; }
29
DebugSubsectionKind
Kind;
34
explicit DebugSubsection(
DebugSubsectionKind
Kind) : Kind(Kind) {}
39
DebugSubsectionKind
kind() const { return Kind; }
45
DebugSubsectionKind
Kind;
DebugSymbolsSubsection.h
21
: DebugSubsectionRef(
DebugSubsectionKind
::Symbols) {}
24
return S->kind() ==
DebugSubsectionKind
::Symbols;
38
DebugSymbolsSubsection() : DebugSubsection(
DebugSubsectionKind
::Symbols) {}
40
return S->kind() ==
DebugSubsectionKind
::Symbols;
DebugCrossExSubsection.h
30
: DebugSubsectionRef(
DebugSubsectionKind
::CrossScopeExports) {}
33
return S->kind() ==
DebugSubsectionKind
::CrossScopeExports;
49
: DebugSubsection(
DebugSubsectionKind
::CrossScopeExports) {}
52
return S->kind() ==
DebugSubsectionKind
::CrossScopeExports;
DebugCrossImpSubsection.h
53
: DebugSubsectionRef(
DebugSubsectionKind
::CrossScopeImports) {}
56
return S->kind() ==
DebugSubsectionKind
::CrossScopeImports;
73
: DebugSubsection(
DebugSubsectionKind
::CrossScopeImports),
77
return S->kind() ==
DebugSubsectionKind
::CrossScopeImports;
DebugFrameDataSubsection.h
23
: DebugSubsectionRef(
DebugSubsectionKind
::FrameData) {}
25
return S->kind() ==
DebugSubsectionKind
::FrameData;
44
: DebugSubsection(
DebugSubsectionKind
::FrameData),
47
return S->kind() ==
DebugSubsectionKind
::FrameData;
DebugSubsectionRecord.h
31
support::ulittle32_t Kind; // codeview::
DebugSubsectionKind
enum
38
DebugSubsectionRecord(
DebugSubsectionKind
Kind, BinaryStreamRef Data);
43
DebugSubsectionKind
kind() const;
47
DebugSubsectionKind
Kind =
DebugSubsectionKind
::None;
DebugUnknownSubsection.h
20
DebugUnknownSubsectionRef(
DebugSubsectionKind
Kind, BinaryStreamRef Data)
DebugChecksumsSubsection.h
55
: DebugSubsectionRef(
DebugSubsectionKind
::FileChecksums) {}
58
return S->kind() ==
DebugSubsectionKind
::FileChecksums;
80
return S->kind() ==
DebugSubsectionKind
::FileChecksums;
DebugStringTableSubsection.h
36
return S->kind() ==
DebugSubsectionKind
::StringTable;
61
return S->kind() ==
DebugSubsectionKind
::StringTable;
DebugSymbolRVASubsection.h
33
return S->kind() ==
DebugSubsectionKind
::CoffSymbolRVA;
50
return S->kind() ==
DebugSubsectionKind
::CoffSymbolRVA;
StringsAndChecksums.h
44
if (R.kind() ==
DebugSubsectionKind
::FileChecksums) {
48
if (R.kind() ==
DebugSubsectionKind
::StringTable && !Strings) {
DebugInlineeLinesSubsection.h
69
return S->kind() ==
DebugSubsectionKind
::InlineeLines;
99
return S->kind() ==
DebugSubsectionKind
::InlineeLines;
DebugLinesSubsection.h
88
return S->kind() ==
DebugSubsectionKind
::Lines;
120
return S->kind() ==
DebugSubsectionKind
::Lines;
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
DebugSubsectionVisitor.cpp
33
case
DebugSubsectionKind
::Lines: {
40
case
DebugSubsectionKind
::FileChecksums: {
47
case
DebugSubsectionKind
::InlineeLines: {
53
case
DebugSubsectionKind
::CrossScopeExports: {
59
case
DebugSubsectionKind
::CrossScopeImports: {
65
case
DebugSubsectionKind
::Symbols: {
71
case
DebugSubsectionKind
::StringTable: {
77
case
DebugSubsectionKind
::FrameData: {
83
case
DebugSubsectionKind
::CoffSymbolRVA: {
DebugSymbolRVASubsection.cpp
20
: DebugSubsectionRef(
DebugSubsectionKind
::CoffSymbolRVA) {}
27
: DebugSubsection(
DebugSubsectionKind
::CoffSymbolRVA) {}
DebugSubsectionRecord.cpp
25
DebugSubsectionRecord::DebugSubsectionRecord(
DebugSubsectionKind
Kind,
36
DebugSubsectionKind
Kind =
37
static_cast<
DebugSubsectionKind
>(uint32_t(Header->Kind));
48
DebugSubsectionKind
DebugSubsectionRecord::kind() const { return Kind; }
StringsAndChecksums.cpp
34
assert(SR.kind() ==
DebugSubsectionKind
::StringTable);
73
assert(FCR.kind() ==
DebugSubsectionKind
::FileChecksums);
EnumTables.cpp
232
CV_ENUM_CLASS_ENT(
DebugSubsectionKind
, None),
233
CV_ENUM_CLASS_ENT(
DebugSubsectionKind
, Symbols),
234
CV_ENUM_CLASS_ENT(
DebugSubsectionKind
, Lines),
235
CV_ENUM_CLASS_ENT(
DebugSubsectionKind
, StringTable),
236
CV_ENUM_CLASS_ENT(
DebugSubsectionKind
, FileChecksums),
237
CV_ENUM_CLASS_ENT(
DebugSubsectionKind
, FrameData),
238
CV_ENUM_CLASS_ENT(
DebugSubsectionKind
, InlineeLines),
239
CV_ENUM_CLASS_ENT(
DebugSubsectionKind
, CrossScopeImports),
240
CV_ENUM_CLASS_ENT(
DebugSubsectionKind
, CrossScopeExports),
241
CV_ENUM_CLASS_ENT(
DebugSubsectionKind
, ILLines)
[
all
...]
DebugInlineeLinesSubsection.cpp
43
: DebugSubsectionRef(
DebugSubsectionKind
::InlineeLines) {}
63
: DebugSubsection(
DebugSubsectionKind
::InlineeLines), Checksums(Checksums),
DebugStringTableSubsection.cpp
23
: DebugSubsectionRef(
DebugSubsectionKind
::StringTable) {}
45
: DebugSubsection(
DebugSubsectionKind
::StringTable) {}
DebugLinesSubsection.cpp
54
: DebugSubsectionRef(
DebugSubsectionKind
::Lines) {}
73
: DebugSubsection(
DebugSubsectionKind
::Lines), Checksums(Checksums) {}
DebugChecksumsSubsection.cpp
65
: DebugSubsection(
DebugSubsectionKind
::FileChecksums), Strings(Strings) {}
/src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
FormatUtil.cpp
101
std::string llvm::pdb::formatChunkKind(
DebugSubsectionKind
Kind,
105
RETURN_CASE(
DebugSubsectionKind
, None, "none");
106
RETURN_CASE(
DebugSubsectionKind
, Symbols, "symbols");
107
RETURN_CASE(
DebugSubsectionKind
, Lines, "lines");
108
RETURN_CASE(
DebugSubsectionKind
, StringTable, "strings");
109
RETURN_CASE(
DebugSubsectionKind
, FileChecksums, "checksums");
110
RETURN_CASE(
DebugSubsectionKind
, FrameData, "frames");
111
RETURN_CASE(
DebugSubsectionKind
, InlineeLines, "inlinee lines");
112
RETURN_CASE(
DebugSubsectionKind
, CrossScopeImports, "xmi");
113
RETURN_CASE(
DebugSubsectionKind
, CrossScopeExports, "xme")
[
all
...]
YAMLOutputStyle.cpp
171
static opts::ModuleSubsection convertSubsectionKind(
DebugSubsectionKind
K) {
173
case
DebugSubsectionKind
::CrossScopeExports:
175
case
DebugSubsectionKind
::CrossScopeImports:
177
case
DebugSubsectionKind
::FileChecksums:
179
case
DebugSubsectionKind
::InlineeLines:
181
case
DebugSubsectionKind
::Lines:
183
case
DebugSubsectionKind
::Symbols:
185
case
DebugSubsectionKind
::StringTable:
187
case
DebugSubsectionKind
::FrameData:
/src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLDebugSections.cpp
69
LLVM_YAML_DECLARE_ENUM_TRAITS(
DebugSubsectionKind
)
88
explicit YAMLSubsectionBase(
DebugSubsectionKind
Kind) : Kind(Kind) {}
96
DebugSubsectionKind
Kind;
107
: YAMLSubsectionBase(
DebugSubsectionKind
::FileChecksums) {}
121
YAMLLinesSubsection() : YAMLSubsectionBase(
DebugSubsectionKind
::Lines) {}
137
: YAMLSubsectionBase(
DebugSubsectionKind
::InlineeLines) {}
153
: YAMLSubsectionBase(
DebugSubsectionKind
::CrossScopeExports) {}
167
: YAMLSubsectionBase(
DebugSubsectionKind
::CrossScopeImports) {}
181
YAMLSymbolsSubsection() : YAMLSubsectionBase(
DebugSubsectionKind
::Symbols) {}
195
: YAMLSubsectionBase(
DebugSubsectionKind
::StringTable) {
[
all
...]
Completed in 96 milliseconds
1
2
Indexes created Tue Sep 22 00:26:15 UTC 2026