Lines Matching defs:token
1574 /** Replace first occurance of <token> with <text> in <string> starting at <search_posistion>
1576 * @param token Token string
1578 * @param text String that will be used as replacement for <token>
1581 void replaceToken(const GLchar* token, size_t& search_position, const GLchar* text, std::string& string)
1584 const size_t token_length = strlen(token);
1585 const size_t token_position = string.find(token, search_position);
1590 string.append("\n\nInvalid token: ");
1591 string.append(token);
1602 /** Replace all occurances of <token> with <text> in <string>
1604 * @param token Token string
1605 * @param text String that will be used as replacement for <token>
1608 void replaceAllTokens(const GLchar* token, const GLchar* text, std::string& string)
1611 const size_t token_length = strlen(token);
1617 const size_t token_position = string.find(token, search_position);
1654 * List in string is represented either by token "LIST" or "SEPARATORLIST".
4963 /** Replace "BINDING" token in qualifiers string to value specific for given stage