Lines Matching refs:str
471 bool isValidIdentifier(const char* str) {
472 std::string idn(str);
1205 void PutsIfNonEmpty(const char* str)
1207 if (str && str[0]) {
1208 puts(str);
1214 void StderrIfNonEmpty(const char* str)
1216 if (str && str[0])
1217 fprintf(stderr, "%s\n", str);
1254 static void writeEscapedDepString(std::ofstream& file, const std::string& str)
1256 for (char c : str) {
1445 std::string str;
1446 if (shader->preprocess(GetResources(), defaultVersion, ENoProfile, false, false, messages, &str, includer)) {
1447 PutsIfNonEmpty(str.c_str());