HomeSort by relevance Sort by last modified time
    Searched defs:errors (Results 176 - 200 of 402) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/test/java/libcore/java/io/
OldFileWriterTest.java 103 int errors = 0; local
111 assertEquals(0, errors);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
message.py 18 from email import errors namespace
719 raise errors.HeaderParseError('No Content-Type header found')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 46 errors = [] variable in class:TestCleanUp.testCleanUpWithErrors.MockResult
48 self.errors.append((test, exc_info))
67 (test1, (Type1, instance1, _)), (test2, (Type2, instance2, _)) = reversed(MockResult.errors)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
message.py 18 from email import errors namespace
719 raise errors.HeaderParseError('No Content-Type header found')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 46 errors = [] variable in class:TestCleanUp.testCleanUpWithErrors.MockResult
48 self.errors.append((test, exc_info))
67 (test1, (Type1, instance1, _)), (test2, (Type2, instance2, _)) = reversed(MockResult.errors)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
IdeScanningContext.java 51 * that at the end of a scan we can mark and clear errors, etc.
119 * Process any errors found to add error markers in the affected files (and
120 * also clear up any aapt errors in files that are no longer applicable)
152 // Add new errors
154 List<String> errors = new ArrayList<String>(); local
156 errors.add(pair.getSecond());
158 AaptParser.parseOutput(errors, mProject);
164 // returns true if it was explicitly requested or if a file that has errors was modified.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptParserTest.java 35 // Test the "at 'property' with value 'value' range matching included with most aapt errors
166 List<String> errors = Collections.singletonList(originalError); local
177 AaptParser.parseOutput(errors, project);
AaptQuickFixTest.java 93 List<String> errors = new ArrayList<String>(); local
98 // the real aapt errors are there. But when the test is run directly, aapt has
101 // etc) so instead this test just hardcodes the aapt errors that should be
103 assertEquals("Unit test is hardcoded to errors for quickfix1.xml", "quickfix1.xml", name);
104 errors.add(filePath + ":7: error: Error: No resource found that matches the given name"
106 errors.add(filePath + ":7: error: Error: No resource found that matches the given name"
108 errors.add(filePath + ":13: error: Error: No resource found that matches the given name"
110 AaptParser.parseOutput(errors, project);
215 List<String> errors = new ArrayList<String>(); local
218 assertEquals("Unit test is hardcoded to errors for quickfix2.xml", "quickfix2.xml", name)
    [all...]
  /external/chromium/chrome/browser/sync/sessions/
session_state.h 85 // Counters for various errors that can occur repeatedly during a sync session.
94 // Number of commits hitting transient errors since the last successful
99 // transient errors. When any of these succeed, this counter is reset.
114 const ErrorCounters& errors,
132 const ErrorCounters errors; member in struct:browser_sync::sessions::SyncSessionSnapshot
  /external/chromium/chrome/common/extensions/
extension_unittest.cc 38 namespace errors = extension_manifest_errors;
159 EXPECT_EQ(errors::kInvalidVersion, error);
164 EXPECT_EQ(errors::kInvalidVersion, error);
171 EXPECT_EQ(errors::kInvalidName, error);
176 EXPECT_EQ(errors::kInvalidName, error);
183 EXPECT_EQ(errors::kInvalidDescription, error);
190 EXPECT_EQ(errors::kInvalidIcons, error);
200 EXPECT_TRUE(MatchPattern(error, errors::kInvalidIconPath));
207 EXPECT_EQ(errors::kInvalidContentScriptsList, error);
217 EXPECT_TRUE(MatchPattern(error, errors::kInvalidContentScript))
1070 std::string errors; local
1158 std::string errors; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
tracer.c 115 unsigned int errors; member in struct:__anon12911::__anon12912
134 self->stats.errors = 0;
149 STATS( self->stats.errors++; )
239 STATS( self->stats.errors++; )
245 STATS( self->stats.errors++; )
314 STATS( self->stats.errors++; )
339 STATS( self->stats.errors++; )
343 STATS( self->stats.errors++; )
357 STATS( self->stats.errors++; )
363 STATS( self->stats.errors++;
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
uts46test.cpp 117 errln("T.nameToASCII(www.example.com) info.errors=%04lx result matches=%d %s",
144 errln("N.labelToASCII(label-with-dot) failed with errors %04lx - %s",
217 errln("notSTD3.nameToUnicode(non-LDH ASCII) unexpected errors %04lx string %s",
231 errln("notSTD3.nameToUnicode(equiv to non-LDH ASCII) unexpected errors %04lx string %s",
241 uint32_t errors; member in struct:TestCase
467 // hyphen errors and empty-label errors
576 // ToUnicode does not set length errors.
577 uint32_t uniErrors=testCase.errors&~
584 errln("N.nameToUnicode([%d] %s) unexpected errors %04lx"
    [all...]
  /external/doclava/src/com/google/doclava/
PackageInfo.java 137 ClassInfo.makeLinkListHDF(data, base + ".errors", errors());
172 public ClassInfo[] errors() { method in class:PackageInfo
174 mErrors = ClassInfo.sortByName(filterHidden(Converter.convertClasses(mPackage.errors())));
292 Errors.error(Errors.REMOVED_CLASS, cInfo.position(), "Removed public class "
299 Errors.error(Errors.ADDED_CLASS, cInfo.position(), "Added class " + cInfo.name()
  /external/doclava/test/doclava/
ApiCheckTest.java 19 import com.google.doclava.Errors;
20 import com.google.doclava.Errors.Error;
21 import com.google.doclava.Errors.ErrorMessage;
31 * Clear all errors and make sure all future errors will be recorded.
34 Errors.clearErrors();
35 for (Errors.Error error : Errors.ERRORS) {
36 Errors.setErrorLevel(error.code, Errors.ERROR)
61 Iterator<ErrorMessage> errors = report.errors().iterator(); local
74 Iterator<ErrorMessage> errors = report.errors().iterator(); local
    [all...]
  /external/icu4c/test/intltest/
uts46test.cpp 118 errln("T.nameToASCII(www.example.com) info.errors=%04lx result matches=%d %s",
145 errln("N.labelToASCII(label-with-dot) failed with errors %04lx - %s",
218 errln("notSTD3.nameToUnicode(non-LDH ASCII) unexpected errors %04lx string %s",
232 errln("notSTD3.nameToUnicode(equiv to non-LDH ASCII) unexpected errors %04lx string %s",
242 uint32_t errors; member in struct:TestCase
468 // hyphen errors and empty-label errors
600 // ToUnicode does not set length errors.
601 uint32_t uniErrors=testCase.errors&~
608 errln("N.nameToUnicode([%d] %s) unexpected errors %04lx"
    [all...]
  /external/opencv/cvaux/src/
cvcorrimages.cpp 67 /* Test for errors */
191 float* errors = 0; local
203 /* Test input data for errors */
292 CV_CALL( errors = (float*)cvAlloc( 2 * sizeof(float)*numVisPoints) );
300 /* !!! Need test creation errors */
336 status, errors,
352 if( status[currVis] && errors[currVis] < 1000 )
427 cvFree(&errors);
449 /* Test for errors */
967 /* Test for errors */
    [all...]
  /external/valgrind/main/memcheck/tests/
str_tester.c 45 size_t errors = 0; variable
54 ++errors;
    [all...]
vcpu_fbench.c 45 exquisitely sensitive to errors. The performance of this
63 Special note regarding errors in accuracy: this program has
87 encounter errors, please remember that they are just as likely
708 int i, j, k, errors; local
841 errors = 0;
852 printf("(Errors) ");
857 errors++;
865 if (errors > 0) {
867 errors, errors > 1 ? "s" : "")
    [all...]
  /external/valgrind/main/perf/
fbench.c 41 exquisitely sensitive to errors. The performance of this
59 Special note regarding errors in accuracy: this program has
83 encounter errors, please remember that they are just as likely
704 int i, j, k, errors; local
837 errors = 0;
848 printf("(Errors) ");
853 errors++;
861 if (errors > 0) {
863 errors, errors > 1 ? "s" : "")
    [all...]
  /external/wpa_supplicant_8/src/ap/
hostapd.c 211 int errors = 0, idx; local
221 errors++;
224 return errors;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_file.c 125 int errors = 0; local
131 errors++;
146 return errors;
153 int errors = 0, end = 0; local
176 errors++;
185 errors++;
191 errors++;
197 errors++;
200 errors += wpa_config_validate_network(ssid, *line);
202 if (errors) {
214 int errors = 0, end = 0; local
353 int errors = 0, line = 0; local
    [all...]
config_winreg.c 53 int errors = 0; local
98 errors++;
105 errors++;
116 return errors ? -1 : 0;
204 int errors = 0; local
227 errors++;
236 errors++;
249 errors++;
255 errors++;
279 return errors ? -1 : 0
290 int errors = 0; local
376 int errors = 0; local
441 int errors = 0; local
633 int i, errors = 0; local
830 int i, errors = 0; local
980 int errors = 0; local
    [all...]
ctrl_iface_named_pipe.c 68 int errors; member in struct:wpa_ctrl_dst
511 dst->errors++;
512 if (dst->errors > 10)
515 dst->errors = 0;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarReport.java 67 int errors; field in class:GrammarReport.ReportData
245 data.errors = ErrorManager.getErrorState().errors;
464 buf.append("Number of errors: ");
465 buf.append(data.errors);
  /external/chromium_org/chrome/browser/chromeos/mobile/
mobile_activator.cc 42 const char kErrorsField[] = "errors";
129 DictionaryValue* errors = NULL; local
130 if (!root_dict->GetDictionary(kErrorsField, &errors))
132 for (DictionaryValue::Iterator it(*errors); !it.IsAtEnd(); it.Advance()) {
929 // This is the magic for detection of errors in during activation process.
    [all...]

Completed in 693 milliseconds

1 2 3 4 5 6 78 91011>>