OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:EntryKind
(Results
1 - 7
of
7
) sorted by null
/external/llvm/include/llvm/CodeGen/
MachineJumpTableInfo.h
79
JTEntryKind
EntryKind
;
82
explicit MachineJumpTableInfo(JTEntryKind Kind):
EntryKind
(Kind) {}
84
JTEntryKind getEntryKind() const { return
EntryKind
; }
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineJumpTableInfo.h
74
JTEntryKind
EntryKind
;
77
explicit MachineJumpTableInfo(JTEntryKind Kind):
EntryKind
(Kind) {}
79
JTEntryKind getEntryKind() const { return
EntryKind
; }
/external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h
34
: Expression(Expr),
EntryKind
(E_Integer) {
38
: Expression(Expr),
EntryKind
(E_ConstantFP) {
42
: Expression(Expr),
EntryKind
(E_ConstantInt) {
46
: Expression(Expr),
EntryKind
(E_Location), Loc(Loc) {
55
enum EntryType
EntryKind
;
67
bool isLocation() const { return
EntryKind
== E_Location; }
68
bool isInt() const { return
EntryKind
== E_Integer; }
69
bool isConstantFP() const { return
EntryKind
== E_ConstantFP; }
70
bool isConstantInt() const { return
EntryKind
== E_ConstantInt; }
156
if (A.
EntryKind
!= B.EntryKind
[
all
...]
/external/google-breakpad/src/common/dwarf/
dwarf2reader.h
567
enum
EntryKind
{ kUnknown, kCIE, kFDE, kTerminator };
655
static const char *KindName(
EntryKind
kind);
675
EntryKind
kind;
[
all
...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfDebug.h
78
enum EntryType
EntryKind
;
91
Constant(false) { Constants.Int = 0;
EntryKind
= E_Location; }
94
Constant(true) { Constants.Int = i;
EntryKind
= E_Integer; }
97
Constant(true) { Constants.CFP = FPtr;
EntryKind
= E_ConstantFP; }
100
Constant(true) { Constants.CIP = IPtr;
EntryKind
= E_ConstantInt; }
112
bool isLocation() const { return
EntryKind
== E_Location; }
113
bool isInt() const { return
EntryKind
== E_Integer; }
114
bool isConstantFP() const { return
EntryKind
== E_ConstantFP; }
115
bool isConstantInt() const { return
EntryKind
== E_ConstantInt; }
/external/llvm/lib/Transforms/Utils/
ValueMapper.cpp
56
enum
EntryKind
{
[
all
...]
/external/clang/lib/Basic/
VirtualFileSystem.cpp
704
enum
EntryKind
{
711
EntryKind
Kind;
716
Entry(
EntryKind
K, StringRef Name) : Kind(K), Name(Name) {}
718
EntryKind
getKind() const { return Kind; }
[
all
...]
Completed in 1393 milliseconds