HomeSort by relevance Sort by last modified time
    Searched refs:errors (Results 276 - 300 of 682) sorted by null

<<11121314151617181920>>

  /external/webkit/LayoutTests/dom/xhtml/level3/core/
wellformed04.js 94 var errors = new Array();
145 errors = errorMonitor.allErrors;
146 for(var indexN100AA = 0;indexN100AA < errors.length; indexN100AA++) {
147 error = errors[indexN100AA];
wellformed02.js 95 var errors = new Array();
142 errors = errorMonitor.allErrors;
143 assertSize("noError",0,errors);
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
driver_cmd_wext.c 269 drv->errors++;
270 if (drv->errors > DRV_NUMBER_SEQUENTIAL_ERRORS) {
271 drv->errors = 0;
275 drv->errors = 0;
341 drv->errors++;
342 if (drv->errors > DRV_NUMBER_SEQUENTIAL_ERRORS) {
343 drv->errors = 0;
347 drv->errors = 0;
  /external/openssl/apps/
srp.c 287 int errors=0; local
582 errors++;
605 errors++;
632 errors++;
642 errors++;
659 errors++;
668 errors++;
688 errors++;
735 ret = (errors != 0);
737 if (errors != 0
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
EnvironmentCheck.java 143 * sometimes reports errors that will not actually affect
206 * errors - namely when a developer recompiles xalan.jar on their
257 boolean errors = false;
276 errors |= logFoundJars(v, keyStr);
287 errors = true;
301 return errors;
350 * as having errors
359 boolean errors = false;
378 errors = true;
385 errors = true
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
ListeningPortsTest.java 182 String errors = ""; local
190 errors += "\nFound port listening on addr="
196 if (!errors.equals("")) {
197 fail(errors);
  /external/antlr/antlr-3.4/runtime/Python/tests/
t058rewriteAST.py     [all...]
  /external/chromium/chrome/browser/sync/sessions/
session_state_unittest.cc 114 ErrorCounters errors; local
115 errors.num_conflicting_commits = 250;
117 errors.ToValue());
144 errors,
159 ExpectDictionaryValue(*expected_errors_value, *value, "errors");
  /external/chromium/chrome/common/extensions/
extension_unpacker.cc 29 namespace errors = extension_manifest_errors;
35 // Errors
98 SetError(errors::kInvalidManifest);
111 SetError(errors::kInvalidManifest);
296 SetError(base::StringPrintf("%s %s", errors::kLocalesMessagesFileMissing,
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-trace/trace-viewer/third_party/closure_linter/closure_linter/
checkerbase.py 29 from closure_linter import errors namespace
52 checker: Class to report errors to.
75 """Checks a token, given the current parser_state, for warnings and errors.
107 error_handler: Object that handles errors.
108 lint_rules: LintRules object defining lint errors given a token
144 """Returns true if the style checker has found any errors.
147 True if the style checker has found any errors.
152 """Checks the file, printing warnings and errors as they are found.
166 self.HandleError(errors.FILE_NOT_FOUND, 'File not found', None)
184 """Checks a file, given as an iterable of lines, for warnings and errors
    [all...]
  /external/freetype/include/freetype/internal/
ftrfork.h 113 /* offset (offsets[N]), and an error code (errors[N]). */
137 /* errors :: */
138 /* An array of FreeType error codes. `errors[N]' is the error */
139 /* code of Nth guessing rule function. If `errors[N]' is not */
148 FT_Error* errors );
  /external/icu4c/test/intltest/
jamotest.cpp 399 int32_t errors = 0; local
408 ++errors;
430 if (errors != 0) {
431 errln((UnicodeString)"Test word failures: " + errors + " out of " + total);
  /external/protobuf/src/google/protobuf/
reflection_ops.cc 220 vector<string>* errors) {
228 errors->push_back(prefix + descriptor->field(i)->name());
248 errors);
254 errors);
  /external/valgrind/main/memcheck/tests/linux/
timerfd-syscall.stderr.exp 55 For counts of detected and suppressed errors, rerun with: -v
56 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/valgrind/main/memcheck/tests/
partial_load_dflt.stderr.exp 33 For counts of detected and suppressed errors, rerun with: -v
34 ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 0 from 0)
  /external/webkit/Tools/TestResultServer/handlers/
testfilehandler.py 196 errors = []
208 errors.append(
212 if errors:
213 messages = "FAIL: " + "; ".join(errors)
  /external/wpa_supplicant_8/src/drivers/
driver_wext.h 49 int errors; member in struct:wpa_driver_wext_data
  /libcore/luni/src/test/java/libcore/xml/
NormalizeTest.java 456 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
477 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
496 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
517 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
538 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
600 private final List<DOMError> errors = new ArrayList<DOMError>(); field in class:NormalizeTest.ErrorRecorder
603 errors.add(error);
608 assertAllErrors("Expected one or more " + type + " errors", severity, type);
612 assertFalse(message, errors.isEmpty());
613 for (DOMError error : errors) {
    [all...]
  /external/chromium/base/
shared_memory_unittest.cc 339 int errors = 0; local
346 errors++;
350 errors++;
359 errors++;
364 return errors;
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_expectations.py 99 looking for errors.
191 def __init__(self, fatal, errors):
193 self.errors = errors
196 return '\n'.join(map(str, self.errors))
199 return 'ParseError(fatal=%s, errors=%s)' % (self.fatal, self.errors)
369 raise ParseError(fatal=True, errors=self._errors)
371 raise ParseError(fatal=False, errors=self._non_fatal_errors)
550 for error in match_result.errors
    [all...]
  /external/v8/tools/gcmole/
gcmole.lua 357 errors_found and "Errors found" or "No errors found")
363 local status, errors = pcall(CheckCorrectnessForArch, arch)
365 print(string.format("There was an error: %s", errors))
366 errors = true
368 return errors
371 local errors = false
378 errors = SafeCheckCorrectnessForArch(arch, report) or errors
381 os.exit(errors and 1 or 0
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 261 List<String> errors = tracker.getErrors(); local
263 if (errors.size() > 0) {
264 assertEquals(errors.get(0), db.error_string(Constants.SQLITE_LOCKED));
265 for (String s : errors) {
335 List<String> errors = tracker.getErrors(); local
336 if (errors.size() > 0) {
337 // assertEquals(errors.get(0),
339 for (String s: errors) {
366 // errors = tracker.getErrors();
367 // if (errors.size() > 0)
425 List<String> errors = tracker.getErrors(); local
    [all...]
  /external/libxslt/libxslt/
xslt.c 139 style->errors++;
743 ret->errors = 0;
863 * Returns 0 if OK, -1 on API or internal errors.
1192 if (style != NULL) style->errors++;
1232 style->errors++;
1246 style->errors++;
1261 style->errors++;
    [all...]
  /external/protobuf/python/google/protobuf/
reflection.py 792 errors = []
860 def IsInitialized(self, errors=None):
864 errors: A list which, if provided, will be populated with the field
    [all...]

Completed in 2660 milliseconds

<<11121314151617181920>>