OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:total_errors
(Results
1 - 8
of
8
) sorted by null
/external/autotest/frontend/afe/
test.py
57
total_errors
= 0
65
total_errors
+= failures
70
total_errors
+= failures
75
if
total_errors
== 0:
78
print 'FAIL: %d errors' %
total_errors
79
return
total_errors
/prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
message.h
67
//
total_errors
based on the message types.
74
size_t* total_warnings, size_t*
total_errors
);
79
size_t
total_errors
);
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
) {
187
size_t existing_total_errors = *
total_errors
;
212
*
total_errors
+= type == MessageType::Error;
221
*
total_errors
+= type == MessageType::GlobalError;
237
return (existing_total_errors == *
total_errors
);
242
size_t
total_errors
) {
243
if (total_warnings > 0 ||
total_errors
> 0) {
244
if (total_warnings > 0 &&
total_errors
> 0) {
247
<<
total_errors
<< " error" << (
total_errors
> 1 ? "s" : ""
[
all
...]
compiler.cc
77
std::ostream* error_stream, size_t* total_warnings, size_t*
total_errors
,
113
total_errors
);
168
total_warnings,
total_errors
);
176
total_warnings,
total_errors
);
/external/zopfli/src/zopflipng/
zopflipng_bin.cc
265
size_t
total_errors
= 0;
local
305
total_errors
++;
397
if (
total_errors
) printf("Errors: %d\n", (int)
total_errors
);
406
return
total_errors
;
/prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc/src/
shaderc.cc
358
size_t
total_errors
= 0;
local
377
&total_warnings, &
total_errors
, compiler->initializer);
386
&total_warnings, &
total_errors
, compiler->initializer);
393
result->num_errors =
total_errors
;
/external/v8/tools/
presubmit.py
248
total_errors
= sum(results)
249
print "Total errors found: %d" %
total_errors
251
return
total_errors
== 0
Completed in 465 milliseconds