Home | History | Annotate | Download | only in randomshaders

Lines Matching refs:CONST

108 		CONST,
129 Token (const char* identifier);
133 Token (const Token& other);
137 inline bool operator== (Type type) const { return m_type == type; }
138 inline bool operator!= (Type type) const { return m_type != type; }
140 bool operator== (const Token& other) const;
141 bool operator!= (const Token& other) const;
143 Token& operator= (const Token& other);
145 inline Type getType (void) const { return m_type; }
147 const char* getIdentifier (void) const;
148 float getFloat (void) const;
149 int getInt (void) const;
150 bool getBool (void) const;
194 inline bool Token::operator== (const Token& other) const
199 inline const char* Token::getIdentifier (void) const
205 inline float Token::getFloat (void) const
211 inline int Token::getInt (void) const
217 inline bool Token::getBool (void) const
229 int getSize (void) const { return (int)m_numTokens; }
230 const Token& operator[] (int ndx) const { return m_tokens[ndx]; }
232 TokenStream& operator<< (const Token& token);
244 inline TokenStream& TokenStream::operator<< (const Token& token)