Lines Matching refs:m_arg
34 m_arg.identifier = deStrdup(identifier); in Token()
35 if (!m_arg.identifier) in Token()
42 deFree(m_arg.identifier); in ~Token()
49 deFree(m_arg.identifier); in operator =()
50 m_arg.identifier = DE_NULL; in operator =()
57 m_arg.identifier = deStrdup(other.m_arg.identifier); in operator =()
58 if (!m_arg.identifier) in operator =()
62 m_arg.floatValue = other.m_arg.floatValue; in operator =()
64 m_arg.intValue = other.m_arg.intValue; in operator =()
66 m_arg.boolValue = other.m_arg.boolValue; in operator =()
82 if (m_type == IDENTIFIER && !deStringEqual(m_arg.identifier, other.m_arg.identifier)) in operator !=()
84 else if (m_type == FLOAT_LITERAL && m_arg.floatValue != other.m_arg.floatValue) in operator !=()
86 else if (m_type == INT_LITERAL && m_arg.intValue != other.m_arg.intValue) in operator !=()
88 else if (m_type == BOOL_LITERAL && m_arg.boolValue != other.m_arg.boolValue) in operator !=()