Searched refs:warnings (Results 1 - 25 of 218) sorted by relevance

123456789

/external/antlr/antlr-3.4/runtime/Perl5/t/
H A Dclasses.t4 use warnings;
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DErrorQueue.java40 List warnings = new LinkedList(); field in class:ErrorQueue
51 warnings.add(msg);
59 return infos.size() + errors.size() + warnings.size();
65 "warnings: "+warnings;
H A DTestRewriteTemplates.java254 assertEquals("unexpected errors: "+equeue, 0, equeue.warnings.size());
276 assertEquals("unexpected errors: "+equeue, 0, equeue.warnings.size());
295 assertEquals("unexpected errors: "+equeue, 0, equeue.warnings.size());
315 assertEquals("unexpected errors: "+equeue, 0, equeue.warnings.size());
H A DTestSemanticPredicates.java837 Message msg = getNonDeterminismMessage(equeue.warnings);
842 getNonDeterminismMessage(equeue.warnings);
852 getNonDeterminismMessage(equeue.warnings);
869 getNonDeterminismMessage(equeue.warnings);
875 getGrammarInsufficientPredicatesMessage(equeue.warnings);
891 getGrammarInsufficientPredicatesMessage(equeue.warnings);
893 System.out.println(equeue.warnings);
901 protected GrammarNonDeterminismMessage getNonDeterminismMessage(List warnings) { argument
902 for (int i = 0; i < warnings.size(); i++) {
903 Message m = (Message) warnings
911 getGrammarInsufficientPredicatesMessage(List warnings) argument
[all...]
/external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
H A Dparse-build.sh52 grep warning: < $F > $T/warnings
53 grep "include/linux/*rcu*\.h:" $T/warnings > $T/hwarnings
54 grep "kernel/rcu/[^/]*:" $T/warnings > $T/cwarnings
/external/mockito/src/main/java/org/mockito/internal/junit/util/
H A DJUnitFailureHacker.java14 public void appendWarnings(Failure failure, String warnings) { argument
15 if (isEmpty(warnings)) {
21 String newMessage = "contains both: actual test failure *and* Mockito warnings.\n" +
22 warnings + "\n *** The actual failure is because of: ***\n";
29 private boolean isEmpty(String warnings) { argument
30 return warnings == null || "".equals(warnings); // isEmpty() is in JDK 6+
/external/netcat/
H A DAndroid.mk19 LOCAL_LDFLAGS += -Wl,--no-fatal-warnings
/external/protobuf/python/google/protobuf/internal/
H A Dapi_implementation.py35 import warnings namespace
83 warnings.warn('PyPy does not work yet with cpp protocol buffers. '
/external/pdfium/
H A DPRESUBMIT.py141 warnings = []
144 warnings.append(' %s:%d:%s' % (file_path, line_num, failure_type))
145 return warnings
172 warnings = []
220 warnings.extend(_CheckIncludeOrderForScope(scope, input_api, f.LocalPath(),
222 return warnings
240 warnings = []
244 warnings.extend(_CheckIncludeOrderInFile(input_api, f, changed_linenums))
247 if warnings:
249 warnings))
[all...]
H A Dpdfiumfxedit.mk14 # Mask some warnings. These are benign, but we probably want to fix them
H A Dpdfiumjavascript.mk14 # Mask some warnings. These are benign, but we probably want to fix them
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
H A Dandroid_device_unittest.py58 self.assertEquals([], self._android_device_stub.logging.warnings)
67 self.assertEquals([], self._android_device_stub.logging.warnings)
83 self._android_device_stub.logging.warnings)
97 self.assertEquals([], self._android_device_stub.logging.warnings)
108 self.assertEquals([], self._android_device_stub.logging.warnings)
120 self.assertEquals([], self._android_device_stub.logging.warnings)
132 self.assertEquals([], self._android_device_stub.logging.warnings)
147 self.assertEquals([], self._android_device_stub.logging.warnings)
/external/swiftshader/third_party/LLVM/autoconf/
H A DAutoRegen.sh43 echo "### If you get *any* warnings from autoconf below you MUST fix the"
46 echo "### commit any configure script that was generated with warnings"
54 autoconf --force --warnings=all -o ../$outfile $configfile || die "autoconf failed"
57 autoheader --warnings=all -I autoconf -I autoconf/m4 autoconf/$configfile || die "autoheader failed"
/external/valgrind/coregrind/
H A Dlink_tool_exe_linux.in58 use warnings;
H A Dlink_tool_exe_solaris.in19 use warnings;
/external/valgrind/gdbserver_tests/
H A Dfilter_helgrind_monitor_solaris12 use warnings;
/external/valgrind/tests/
H A Dfilter_xml_frames12 use warnings;
/external/clang/test/Misc/
H A Dwarning-flags.c1 RUN: diagtool list-warnings > %t 2>&1
6 (1) It documents all existing warnings that currently have no associated -W flag,
12 (2) It prevents us adding new warnings to Clang that have no -W flag. All
13 new warnings should have -W flags.
19 The list of warnings below should NEVER grow. It should gradually shrink to 0.
107 The list of warnings in -Wpedantic should NEVER grow.
/external/valgrind/helgrind/tests/
H A Dfilter_helgrind3 use warnings;
/external/valgrind/memcheck/tests/
H A Dfilter_memcheck3 use warnings;
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_l_o_c_a.py6 import warnings namespace
28 warnings.warn("corrupt 'loca' table, or wrong numGlyphs in 'maxp': %d %d" % (len(locations) - 1, ttFont['maxp'].numGlyphs))
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_l_o_c_a.py6 import warnings namespace
28 warnings.warn("corrupt 'loca' table, or wrong numGlyphs in 'maxp': %d %d" % (len(locations) - 1, ttFont['maxp'].numGlyphs))
/external/mockito/src/main/java/org/mockito/runners/
H A DVerboseMockitoJUnitRunner.java56 String warnings = warningsCollector.getWarnings();
57 new JUnitFailureHacker().appendWarnings(failure, warnings);
/external/pdfium/third_party/
H A Dpdfiumagg23.mk13 # Mask some warnings. These are benign, but we probably want to fix them
/external/zlib/src/
H A Dzlib2ansi16 use warnings;
105 no warnings;

Completed in 876 milliseconds

123456789