Home
last modified time | relevance | path

Searched refs:_Kind (Results 1 – 13 of 13) sorted by relevance

/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Driver/
DAction.h72 Action(ActionClass _Kind, types::ID _Type) in Action() argument
73 : Kind(_Kind), Type(_Type), OwnsInputs(true) {} in Action()
74 Action(ActionClass _Kind, Action *Input, types::ID _Type) in Action() argument
75 : Kind(_Kind), Type(_Type), Inputs(&Input, &Input + 1), OwnsInputs(true) {} in Action()
76 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type) in Action() argument
77 : Kind(_Kind), Type(_Type), Inputs(_Inputs), OwnsInputs(true) {} in Action()
DJob.h43 Job(JobClass _Kind) : Kind(_Kind) {} in Job() argument
/freebsd-9-stable/contrib/llvm/lib/Target/NVPTX/
DNVPTXMCExpr.h32 explicit NVPTXFloatMCExpr(VariantKind _Kind, APFloat _Flt) in NVPTXFloatMCExpr() argument
33 : Kind(_Kind), Flt(_Flt) {} in NVPTXFloatMCExpr()
/freebsd-9-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/
DARMMCExpr.h29 explicit ARMMCExpr(VariantKind _Kind, const MCExpr *_Expr) in ARMMCExpr() argument
30 : Kind(_Kind), Expr(_Expr) {} in ARMMCExpr()
/freebsd-9-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMCExpr.h37 explicit PPCMCExpr(VariantKind _Kind, const MCExpr *_Expr, in PPCMCExpr() argument
39 : Kind(_Kind), Expr(_Expr), IsDarwin(_IsDarwin) {} in PPCMCExpr()
/freebsd-9-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/
DSparcMCExpr.h65 explicit SparcMCExpr(VariantKind _Kind, const MCExpr *_Expr) in SparcMCExpr() argument
66 : Kind(_Kind), Expr(_Expr) {} in SparcMCExpr()
/freebsd-9-stable/contrib/llvm/include/llvm/MC/MCParser/
DMCAsmLexer.h64 AsmToken(TokenKind _Kind, StringRef _Str, int64_t _IntVal = 0)
65 : Kind(_Kind), Str(_Str), IntVal(_IntVal) {} in Kind() argument
/freebsd-9-stable/contrib/llvm/include/llvm/MC/
DMCExpr.h51 explicit MCExpr(ExprKind _Kind) : Kind(_Kind) {} in MCExpr() argument
261 explicit MCSymbolRefExpr(const MCSymbol *_Symbol, VariantKind _Kind) in MCSymbolRefExpr() argument
262 : MCExpr(MCExpr::SymbolRef), Symbol(_Symbol), Kind(_Kind) { in MCSymbolRefExpr()
DMCAssembler.h86 MCFragment(FragmentType _Kind, MCSectionData *_Parent = 0);
/freebsd-9-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MCExpr.h73 explicit AArch64MCExpr(VariantKind _Kind, const MCExpr *_Expr) in AArch64MCExpr() argument
74 : Kind(_Kind), Expr(_Expr) {} in AArch64MCExpr()
/freebsd-9-stable/contrib/llvm/patches/
Dpatch-r262261-llvm-r198029-sparc.diff169 + explicit SparcMCExpr(VariantKind _Kind, const MCExpr *_Expr)
170 + : Kind(_Kind), Expr(_Expr) {}
/freebsd-9-stable/contrib/llvm/lib/MC/
DMCAssembler.cpp214 MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent) in MCFragment() argument
215 : Kind(_Kind), Parent(_Parent), Atom(0), Offset(~UINT64_C(0)) in MCFragment()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/CodeGen/
DTargetInfo.cpp3167 ARMABIInfo(CodeGenTypes &CGT, ABIKind _Kind) : ABIInfo(CGT), Kind(_Kind) { in ARMABIInfo() argument