/external/chromium/chrome/browser/ui/cocoa/extensions/ |
D | extension_install_dialog_controller_unittest.mm | 109 std::vector<string16> warnings; 110 warnings.push_back(UTF8ToUTF16("warning 1")); 119 warnings:warnings 143 base::SysUTF16ToNSString(warnings[0])); 166 std::vector<string16> warnings; 167 warnings.push_back(UTF8ToUTF16("warning 1")); 176 warnings:warnings 186 // Test that controls get repositioned when there are two warnings vs one 208 warnings:one_warning 220 warnings:two_warnings [all …]
|
D | extension_install_dialog_controller.mm | 65 warnings:(const std::vector<string16>&)warnings 69 // We use a different XIB in the case of no warnings, that is a little bit 71 if (warnings.empty()) { 96 // We display the warnings as a simple text string, separated by newlines. 97 if (!warnings.empty()) { 99 for (size_t i = 0; i < warnings.size(); ++i) { 103 joined_warnings += warnings[i]; 143 // If there are any warnings, then we have to do some special layout. 200 const std::vector<string16>& warnings, 223 warnings:warnings
|
D | extension_install_dialog_controller.h | 57 warnings:(const std::vector<string16>&)warnings
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | ErrorQueue.java | 40 List warnings = new LinkedList(); field in ErrorQueue 51 warnings.add(msg); in warning() 59 return infos.size() + errors.size() + warnings.size(); in size() 65 "warnings: "+warnings; in toString()
|
D | TestSemanticPredicates.java | 837 Message msg = getNonDeterminismMessage(equeue.warnings); in checkDecision() 842 getNonDeterminismMessage(equeue.warnings); in checkDecision() 852 getNonDeterminismMessage(equeue.warnings); in checkDecision() 869 getNonDeterminismMessage(equeue.warnings); in checkDecision() 875 getGrammarInsufficientPredicatesMessage(equeue.warnings); in checkDecision() 891 getGrammarInsufficientPredicatesMessage(equeue.warnings); in checkDecision() 893 System.out.println(equeue.warnings); in checkDecision() 901 protected GrammarNonDeterminismMessage getNonDeterminismMessage(List warnings) { in getNonDeterminismMessage() argument 902 for (int i = 0; i < warnings.size(); i++) { in getNonDeterminismMessage() 903 Message m = (Message) warnings.get(i); in getNonDeterminismMessage() [all …]
|
D | TestRewriteTemplates.java | 254 assertEquals("unexpected errors: "+equeue, 0, equeue.warnings.size()); in testRewriteRuleAndRewriteModeOnSimpleElements() 276 assertEquals("unexpected errors: "+equeue, 0, equeue.warnings.size()); in testRewriteRuleAndRewriteModeIgnoreActionsPredicates() 295 assertEquals("unexpected errors: "+equeue, 0, equeue.warnings.size()); in testRewriteRuleAndRewriteModeNotSimple() 315 assertEquals("unexpected errors: "+equeue, 0, equeue.warnings.size()); in testRewriteRuleAndRewriteModeRefRule()
|
D | TestDFAConversion.java | 761 Message msg = (Message)equeue.warnings.get(0); in testNoStartRule() 1663 Message msg = (Message)equeue.warnings.get(0); in checkDecision() 1667 getNonDeterminismMessage(equeue.warnings); in checkDecision() 1678 getNonDeterminismMessage(equeue.warnings); in checkDecision() 1685 recMsg = getRecursionOverflowMessage(equeue.warnings); in checkDecision() 1703 getNonDeterminismMessage(equeue.warnings); in checkDecision() 1710 protected GrammarNonDeterminismMessage getNonDeterminismMessage(List warnings) { in getNonDeterminismMessage() argument 1711 for (int i = 0; i < warnings.size(); i++) { in getNonDeterminismMessage() 1712 Message m = (Message) warnings.get(i); in getNonDeterminismMessage() 1730 protected RecursionOverflowMessage getRecursionOverflowMessage(List warnings) { in getRecursionOverflowMessage() argument [all …]
|
/external/clang/include/clang/Basic/ |
D | DiagnosticGroups.td | 155 def PoundWarning : DiagGroup<"#warnings">, 183 // Preprocessor warnings. 186 // Just silence warnings about -Wstrict-aliasing for now. 192 // Just silence warnings about -Wstrict-overflow for now. 274 // -Widiomatic-parentheses contains warnings about 'idiomatic' 277 // do not want these warnings. 285 // -Wconversion has its own warnings, but we split a few out for 287 // - some people want just 64-to-32 warnings 288 // - conversion warnings with constant sources are on by default 289 // - conversion warnings for literals are on by default [all …]
|
/external/clang/utils/ |
D | SummarizeErrors | 46 warnings = multidict() 53 d = warnings 55 warnings = warnings.items() 82 (warnings, 'Warnings'),
|
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/ |
D | __init__.py | 273 import warnings 274 warnings.warn("simplejson.loads(s) should be used instead of read(s)", 282 import warnings 283 warnings.warn("simplejson.dumps(s) should be used instead of write(s)",
|
/external/antlr/antlr-3.4/runtime/Perl5/t/ |
D | lexer.t | 2 use warnings; 32 use warnings; 57 use warnings; 111 use warnings;
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
D | run_webkit_tests.py | 70 warnings = _set_up_derived_options(port, options) 74 for w in warnings: 129 warnings = [] 136 warnings.append("--worker-model=inline overrides --child-processes") 163 … warnings.append("--additional-platform-directory=%s is ignored since it is not absolute" % path) 168 return warnings
|
/external/bison/ |
D | configure.ac | 40 AC_ARG_ENABLE(gcc-warnings, 41 [ --enable-gcc-warnings turn on lots of GCC warnings (not recommended)], 44 *) AC_MSG_ERROR([bad value ${enableval} for gcc-warnings option]) ;; 58 # The following warnings are not suitable for C++.
|
/external/llvm/autoconf/ |
D | AutoRegen.sh | 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"
|
D | README.TXT | 14 might also need to resolve some compiler warnings (typically about 31 12. If there are any warnings from AutoRegen.sh, go to step 9. 48 8. If there are any warnings from AutoRegen.sh, fix them and go to step 7.
|
/external/llvm/lib/Target/PTX/ |
D | PTXRegisterInfo.td | 22 // The generated register info code throws warnings for empty register classes 24 // these warnings.
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | inspector.js | 241 get warnings() getter 246 set warnings(x) setter 262 if (!this.errors && !this.warnings) { 278 if (this.warnings) { 281 warningsElement.textContent = this.warnings; 286 if (this.warnings) { 288 if (this.warnings == 1) 289 …orWarningElement.title = WebInspector.UIString("%d error, %d warning", this.errors, this.warnings); 291 …rWarningElement.title = WebInspector.UIString("%d error, %d warnings", this.errors, this.warnings); 292 } else if (this.warnings == 1) [all …]
|
/external/antlr/antlr-3.4/runtime/Perl5/t/examples/ |
D | simplecalc.t | 2 use warnings; 44 use warnings;
|
D | expr.t | 2 use warnings; 60 use warnings;
|
/external/clang/test/Misc/ |
D | warning-flags.c | 1 RUN: diagtool list-warnings 2>&1 | FileCheck %s 5 (1) It documents all existing warnings that currently have no associated -W flag, 11 (2) It prevents us adding new warnings to Clang that have no -W flag. All 12 new warnings should have -W flags. 18 The list of warnings below should NEVER grow. It should gradually shrink to 0.
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | ErrorManager.java | 262 public int warnings; field in ErrorManager.ErrorState 610 getErrorState().warnings++; in warning() 618 getErrorState().warnings++; in nondeterminism() 640 getErrorState().warnings++; in analysisAborted() 659 getErrorState().warnings++; in insufficientPredicates() 739 getErrorState().warnings++; in grammarWarning()
|
/external/chromium/third_party/libevent/ |
D | configure.in | 27 AC_ARG_ENABLE(gcc-warnings, 28 AS_HELP_STRING(--enable-gcc-warnings, enable verbose warnings with GCC)) 362 # Add some more warnings which we use in development but not in the 380 # These warnings break gcc 3.3.5 and work on gcc 4.0.2 386 # These warnings break gcc 4.0.2 and work on gcc 4.2
|
/external/antlr/antlr-3.4/runtime/Perl5/t/author/ |
D | pod.t | 2 use warnings;
|
D | pod-coverage.t | 2 use warnings;
|
/external/valgrind/main/coregrind/ |
D | link_tool_exe_linux.in | 50 use warnings;
|