Searched defs:warnings (Results 51 - 75 of 86) sorted by relevance

1234

/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream_unittest.cc1033 // of data from it. Then it returns the logged errors and warnings in the given
1054 vector<string> warnings; local
1055 SetupTotalBytesLimitWarningTest(10240, 1024, &errors, &warnings);
1059 ASSERT_EQ(2, warnings.size());
1063 warnings[0]);
1066 warnings[1]);
1071 vector<string> warnings; local
1074 SetupTotalBytesLimitWarningTest(10240, -1, &errors, &warnings);
1076 EXPECT_EQ(0, warnings.size());
1079 SetupTotalBytesLimitWarningTest(10240, -2, &errors, &warnings);
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestDFAConversion.java122 // no warnings/errors
761 Message msg = (Message)equeue.warnings.get(0);
900 // turns off 1 of warnings. A can never exit loop now
1663 Message msg = (Message)equeue.warnings.get(0);
1667 getNonDeterminismMessage(equeue.warnings);
1678 getNonDeterminismMessage(equeue.warnings);
1685 recMsg = getRecursionOverflowMessage(equeue.warnings);
1703 getNonDeterminismMessage(equeue.warnings);
1710 protected GrammarNonDeterminismMessage getNonDeterminismMessage(List warnings) { argument
1711 for (int i = 0; i < warnings
1730 getRecursionOverflowMessage(List warnings) argument
1740 getLeftRecursionCyclesMessage(List warnings) argument
1750 getDanglingStateMessage(List warnings) argument
[all...]
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_g_l_y_f.py17 import warnings namespace
54 warnings.warn("too much 'glyf' table data")
56 warnings.warn('%s glyphs have no name' % i)
456 warnings.warn("too much glyph data: %d excess bytes" % (len(data) - (xDataLen + yDataLen)))
589 warnings.warn("Outline has curve with implicit extrema.")
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_g_l_y_f.py17 import warnings namespace
54 warnings.warn("too much 'glyf' table data")
56 warnings.warn('%s glyphs have no name' % i)
456 warnings.warn("too much glyph data: %d excess bytes" % (len(data) - (xDataLen + yDataLen)))
589 warnings.warn("Outline has curve with implicit extrema.")
/external/lldb/test/unittest2/
H A Dcase.py8 import warnings namespace
320 warnings.warn("Use of a TestResult without an addSkip method is deprecated",
365 warnings.warn("Use of a TestResult without an addExpectedFailure method is deprecated",
373 warnings.warn("Use of a TestResult without an addUnexpectedSuccess method is deprecated",
633 warnings.warn(
/external/chromium_org/chrome/browser/extensions/api/management/
H A Dmanagement_api.cc86 PermissionMessages warnings = local
88 for (PermissionMessages::const_iterator iter = warnings.begin();
89 iter != warnings.end(); ++iter) {
350 std::vector<std::string> warnings = CreateWarningsList(extension); local
351 results_ = management::GetPermissionWarningsById::Results::Create(warnings);
472 std::vector<std::string> warnings = CreateWarningsList(extension.get()); local
474 management::GetPermissionWarningsByManifest::Results::Create(warnings);
/external/chromium_org/chrome/browser/ui/webui/extensions/
H A Dextension_settings_handler.cc392 // Add warnings.
394 std::vector<std::string> warnings = local
397 if (!warnings.empty()) {
399 for (std::vector<std::string>::const_iterator iter = warnings.begin();
400 iter != warnings.end(); ++iter) {
403 extension_data->Set("warnings", warnings_list);
408 // detailed errors from the ErrorConsole. Otherwise, use the install warnings
846 WarningService* warnings = ExtensionSystem::Get(profile)->warning_service(); local
856 warnings));
866 warnings));
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineModelImpl.js515 warnings: function()
H A DTimelineModel.js459 warnings: function() { }
H A DTracingTimelineModel.js909 warnings: function()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DErrorManager.java262 public int warnings; field in class:ErrorManager.ErrorState
610 getErrorState().warnings++;
618 getErrorState().warnings++;
640 getErrorState().warnings++;
659 getErrorState().warnings++;
692 getErrorState().warnings++;
739 getErrorState().warnings++;
/external/chromium_org/chrome/browser/extensions/api/downloads/
H A Ddownloads_api_browsertest.cc4099 WarningSet warnings; local
4102 warnings.clear();
4113 &warnings); local
4117 EXPECT_TRUE(warnings.empty());
4120 warnings.clear();
4131 &warnings); local
4135 EXPECT_FALSE(warnings.empty());
4137 warnings.begin()->warning_type());
4138 EXPECT_EQ("suggester", warnings.begin()->extension_id());
4141 warnings
[all...]
H A Ddownloads_api.cc741 WarningSet warnings; local
753 &warnings);
754 if (!warnings.empty())
755 WarningService::NotifyWarningsOnUI(profile, warnings);
1669 WarningSet* warnings) {
1683 warnings->insert(Warning::CreateDownloadFilenameConflictWarning(
1692 warnings->insert(Warning::CreateDownloadFilenameConflictWarning(
1659 DetermineFilenameInternal( const base::FilePath& filename, downloads::FilenameConflictAction conflict_action, const std::string& suggesting_extension_id, const base::Time& suggesting_install_time, const std::string& incumbent_extension_id, const base::Time& incumbent_install_time, std::string* winner_extension_id, base::FilePath* determined_filename, downloads::FilenameConflictAction* determined_conflict_action, WarningSet* warnings) argument
/external/chromium_org/chrome/browser/extensions/api/web_request/
H A Dweb_request_api_unittest.cc107 // Returns whether |warnings| contains an extension for |extension_id|.
108 bool HasWarning(const WarningSet& warnings, argument
110 for (WarningSet::const_iterator i = warnings.begin();
111 i != warnings.end(); ++i) {
1445 // the other redirect but not cause any conflict warnings.
1514 // the other redirect but not cause any conflict warnings.
/external/chromium_org/extensions/browser/api/web_request/
H A Dweb_request_api.cc1870 WarningSet warnings; local
1883 &warnings,
1890 &warnings,
1899 &warnings,
1907 &warnings,
1915 if (!warnings.empty()) {
1920 browser_context, warnings));
2445 WarningSet warnings; local
2446 warnings.insert(
2451 base::Bind(&WarningService::NotifyWarningsOnUI, profile_id(), warnings));
[all...]
/external/chromium_org/third_party/cython/src/Cython/Debugger/
H A Dlibpython.py56 import warnings namespace
1757 warnings.warn("Use a Python debug build, Python breakpoints "
2469 warnings.filterwarnings('ignore', r'.*', RuntimeWarning,
2475 # warnings.resetwarnings()
2541 warnings.warn("Use gdb 7.2 or higher to use the py-exec command.")
/external/chromium_org/third_party/cython/src/
H A Druntests.py16 import warnings namespace
181 warnings.warn("Unable to find the %s compiler: %s: %s" %
1698 Errors.LEVEL = 0 # show all warnings
/external/chromium_org/tools/telemetry/third_party/png/
H A Dpng.py181 # http://www.python.org/doc/2.4.4/lib/module-warnings.html
182 import warnings namespace
528 warnings.warn('please use bitdepth instead of bytes_per_sample',
1392 checksum failures will raise warnings rather than exceptions.
1427 warnings.warn(message, RuntimeWarning)
1708 checksum failures will raise warnings rather than exceptions.
1748 checksum failures will raise warnings rather than exceptions.
1813 warnings.warn("Multiple PLTE chunks present.")
1826 warnings.warn(
1839 warnings
[all...]
/external/libpng/contrib/tools/
H A Dpngfix.c688 unsigned int warnings :1; /* print libpng warnings to stderr */ member in struct:global
739 global->warnings = 0;
3173 if (file->global->warnings)
3723 " --warnings (-w):",
3724 " Output warnings from libpng.",
3872 global.errors = global.warnings = 1;
3929 else if (strcmp(*argv, "--warnings") == 0 || strcmp(*argv, "-w") == 0)
3930 global.warnings = 1;
/external/chromium_org/third_party/libxslt/libxslt/
H A DxsltInternals.h1314 int warnings; /* TODO: number of warnings found at member in struct:_xsltCompilerCtxt
1575 int warnings; /* number of warnings found at compilation */ member in struct:_xsltStylesheet
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jar ... -survey-comment.png html/images/properties-warnings.png html/images/verification-comment.png html ...
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...

Completed in 1680 milliseconds

1234