Home
last modified time | relevance | path

Searched refs:Repr (Results 1 – 3 of 3) sorted by relevance

/external/llvm/utils/TableGen/
DFastISelEmitter.cpp80 char Repr; member in __anone694a1120311::OperandsSignature::OpKind
83 OpKind() : Repr(OK_Invalid) {} in OpKind()
85 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in operator <()
86 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } in operator ==()
88 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; } in getReg()
89 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; } in getFP()
93 OpKind K; K.Repr = OK_Imm+V; return K; in getImm()
96 bool isReg() const { return Repr == OK_Reg; } in isReg()
97 bool isFP() const { return Repr == OK_FP; } in isFP()
98 bool isImm() const { return Repr >= OK_Imm; } in isImm()
[all …]
/external/lldb/include/lldb/Interpreter/
DPythonDataObjects.h103 Repr ();
/external/lldb/source/Interpreter/
DPythonDataObjects.cpp70 PythonObject::Repr () in Repr() function in PythonObject