HomeSort by relevance Sort by last modified time
    Searched refs:total_warnings (Results 1 - 5 of 5) sorted by null

  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
message.h 66 // takes precedence over warnings_as_errors. Increments total_warnings and
74 size_t* total_warnings, size_t* total_errors);
78 void OutputMessages(std::ostream* error_stream, size_t total_warnings,
compiler.h 153 // total_warnings and total_errors are incremented once for every
170 std::ostream* error_stream, size_t* total_warnings, size_t* total_errors,
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/src/
message.cc 167 size_t* total_warnings, size_t* total_errors) {
213 *total_warnings += type == MessageType::Warning;
222 *total_warnings += type == MessageType::GlobalWarning;
241 void OutputMessages(std::ostream* error_stream, size_t total_warnings,
243 if (total_warnings > 0 || total_errors > 0) {
244 if (total_warnings > 0 && total_errors > 0) {
245 *error_stream << total_warnings << " warning"
246 << (total_warnings > 1 ? "s" : "") << " and "
249 } else if (total_warnings > 0) {
250 *error_stream << total_warnings << " warning
    [all...]
compiler.cc 77 std::ostream* error_stream, size_t* total_warnings, size_t* total_errors,
112 glslang_errors.c_str(), total_warnings,
168 total_warnings, total_errors);
176 total_warnings, total_errors);
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc/src/
shaderc.cc 357 size_t total_warnings = 0; local
377 &total_warnings, &total_errors, compiler->initializer);
386 &total_warnings, &total_errors, compiler->initializer);
392 result->num_warnings = total_warnings;

Completed in 139 milliseconds