Home | History | Annotate | Download | only in randomshaders

Lines Matching refs:m_type

32 	: m_type(IDENTIFIER)
41 if (m_type == IDENTIFIER)
47 if (m_type == IDENTIFIER)
53 m_type = other.m_type;
55 if (m_type == IDENTIFIER)
61 else if (m_type == FLOAT_LITERAL)
63 else if (m_type == INT_LITERAL)
65 else if (m_type == BOOL_LITERAL)
72 : m_type(TYPE_LAST)
79 if (m_type != other.m_type)
82 if (m_type == IDENTIFIER && !deStringEqual(m_arg.identifier, other.m_arg.identifier))
84 else if (m_type == FLOAT_LITERAL && m_arg.floatValue != other.m_arg.floatValue)
86 else if (m_type == INT_LITERAL && m_arg.intValue != other.m_arg.intValue)
88 else if (m_type == BOOL_LITERAL && m_arg.boolValue != other.m_arg.boolValue)