Home
last modified time | relevance | path

Searched refs:Arity (Results 1 – 2 of 2) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Script/
DOperator.h28 enum Arity { NULLARY, UNARY, BINARY, TERNARY }; enum
90 Operator(Arity pArity, Type pType);
98 Arity arity() const { return m_Arity; } in arity()
117 Arity m_Arity;
/frameworks/compile/mclinker/lib/Script/
DOperator.cpp43 Operator::Operator(Arity pArity, Type pType) in Operator()