OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsDarwin
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.h
22
bool
IsDarwin
;
25
const MCRegisterInfo &MRI, bool
isDarwin
)
26
: MCInstPrinter(MAI, MII, MRI),
IsDarwin
(
isDarwin
) {}
29
return
IsDarwin
;
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCExpr.h
35
bool
IsDarwin
;
39
explicit PPCMCExpr(VariantKind Kind, const MCExpr *Expr, bool
IsDarwin
)
40
: Kind(Kind), Expr(Expr),
IsDarwin
(
IsDarwin
) {}
47
bool
isDarwin
, MCContext &Ctx);
50
bool
isDarwin
, MCContext &Ctx) {
51
return create(VK_PPC_LO, Expr,
isDarwin
, Ctx);
55
bool
isDarwin
, MCContext &Ctx) {
56
return create(VK_PPC_HI, Expr,
isDarwin
, Ctx);
60
bool
isDarwin
, MCContext &Ctx)
[
all
...]
/external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h
284
bool
IsDarwin
;
/external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp
246
bool
IsDarwin
;
252
bool
isDarwin
() const { return
IsDarwin
; }
298
IsDarwin
= TheTriple.isMacOSX();
[
all
...]
/external/llvm/lib/MC/MCParser/
AsmParser.cpp
180
bool
IsDarwin
;
564
AssemblerDialect(~0U),
IsDarwin
(false), ParsingInlineAsm(false) {
579
IsDarwin
= true;
[
all
...]
Completed in 976 milliseconds