Lines Matching defs:str
59 static int string_to_depth(const char *str);
60 static int string_to_visual(const char *str);
346 string_to_depth(const char *str)
350 if ((sscanf(str, "%d", &depth) != 1) || (depth < 1))
358 string_to_visual(const char *str)
362 if (!strcmp(str, "StaticGray"))
364 else if (!strcmp(str, "GrayScale"))
366 else if (!strcmp(str, "StaticColor"))
368 else if (!strcmp(str, "PseudoColor"))
370 else if (!strcmp(str, "TrueColor"))
372 else if (!strcmp(str, "DirectColor"))