Home | History | Annotate | Download | only in utils

Lines Matching full:template

175 template <typename T> T doParse(const char *, bool *success ) {
183 template<> bool doParse<bool>(const char *s, bool *success) {
199 template<> const char * doParse<const char *>(const char * s, bool *success) {
206 template<> int doParse<int>(const char * s, bool *success) {
213 template<> unsigned int doParse<unsigned int>(const char * s, bool *success) {
220 template<> float doParse<float>(const char * s, bool *success) {
227 template<> double doParse<double>(const char * s, bool *success) {
242 template<typename T> bool SkRTConfRegistry::parse(const char *name, T* value) {
286 template bool SkRTConfRegistry::parse(const char *name, bool *value);
287 template bool SkRTConfRegistry::parse(const char *name, int *value);
288 template bool SkRTConfRegistry::parse(const char *name, unsigned int *value);
289 template bool SkRTConfRegistry::parse(const char *name, float *value);
290 template bool SkRTConfRegistry::parse(const char *name, double *value);
291 template bool SkRTConfRegistry::parse(const char *name, const char **value);
293 template <typename T> void SkRTConfRegistry::set(const char *name,
315 template void SkRTConfRegistry::set(const char *name, bool value, bool);
316 template void SkRTConfRegistry::set(const char *name, int value, bool);
317 template void SkRTConfRegistry::set(const char *name, unsigned int value, bool);
318 template void SkRTConfRegistry::set(const char *name, float value, bool);
319 template void SkRTConfRegistry::set(const char *name, double value, bool);
320 template void SkRTConfRegistry::set(const char *name, char * value, bool);