/external/antlr/antlr-3.4/runtime/Perl5/t/ |
H A D | classes.t | 4 use warnings;
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
H A D | ErrorQueue.java | 40 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 D | TestRewriteTemplates.java | 254 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 D | TestSemanticPredicates.java | 837 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 D | parse-build.sh | 52 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 D | JUnitFailureHacker.java | 14 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 D | Android.mk | 19 LOCAL_LDFLAGS += -Wl,--no-fatal-warnings
|
/external/protobuf/python/google/protobuf/internal/ |
H A D | api_implementation.py | 35 import warnings namespace 83 warnings.warn('PyPy does not work yet with cpp protocol buffers. '
|
/external/pdfium/ |
H A D | PRESUBMIT.py | 141 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 D | pdfiumfxedit.mk | 14 # Mask some warnings. These are benign, but we probably want to fix them
|
H A D | pdfiumjavascript.mk | 14 # Mask some warnings. These are benign, but we probably want to fix them
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/ |
H A D | android_device_unittest.py | 58 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 D | AutoRegen.sh | 43 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 D | link_tool_exe_linux.in | 58 use warnings;
|
H A D | link_tool_exe_solaris.in | 19 use warnings;
|
/external/valgrind/gdbserver_tests/ |
H A D | filter_helgrind_monitor_solaris | 12 use warnings;
|
/external/valgrind/tests/ |
H A D | filter_xml_frames | 12 use warnings;
|
/external/clang/test/Misc/ |
H A D | warning-flags.c | 1 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 D | filter_helgrind | 3 use warnings;
|
/external/valgrind/memcheck/tests/ |
H A D | filter_memcheck | 3 use warnings;
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
H A D | _l_o_c_a.py | 6 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.py | 6 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 D | VerboseMockitoJUnitRunner.java | 56 String warnings = warningsCollector.getWarnings(); 57 new JUnitFailureHacker().appendWarnings(failure, warnings);
|
/external/pdfium/third_party/ |
H A D | pdfiumagg23.mk | 13 # Mask some warnings. These are benign, but we probably want to fix them
|
/external/zlib/src/ |
H A D | zlib2ansi | 16 use warnings; 105 no warnings;
|