Searched defs:errors (Results 1 - 25 of 315) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DErrorManager.java50 /** Defines all the errors ANTLR can generator for both the tool and for
62 * find any errors/mismatches rather than leaving a mistyped string in
79 * During initialization of this class, all errors go straight to System.err.
81 * can I do errors properly? For example, if the string template group file
89 * TODO: get antlr.g etc.. parsing errors to come here.
93 // file errors
112 // code gen errors
204 // Dependency sorting errors
261 public int errors; field in class:ErrorManager.ErrorState
273 /** Track the number of errors regardles
[all...]
H A DGrammarReport.java67 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/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DErrorQueue.java39 List errors = new LinkedList(); field in class:ErrorQueue
47 errors.add(msg);
55 errors.add(msg);
59 return infos.size() + errors.size() + warnings.size();
64 "errors: "+errors+
H A DTestDFAConversion.java122 // no warnings/errors
376 // No errors with k=1; don't try k=* first
409 // No errors with k=2; don't try k=* first
557 assertEquals(1, equeue.errors.size());
558 Message msg = (Message)equeue.errors.get(0);
586 assertEquals(1, equeue.errors.size());
587 Message msg = (Message)equeue.errors.get(0);
617 assertEquals(1, equeue.errors.size());
618 Message msg = (Message)equeue.errors.get(0);
1207 /* There are 2 nondet errors, bu
1720 getNonRegularDecisionMessage(List errors) argument
[all...]
/external/bison/src/
H A Dconflicts.c257 | errors. |
261 resolve_sr_conflict (state *s, int ruleno, symbol **errors, int *nerrs)
314 errors[(*nerrs)++] = symbols[i];
329 set_conflicts (state *s, symbol **errors)
350 resolve_sr_conflict (s, i, errors, &nerrs);
354 /* Some tokens have been explicitly made errors. Allocate a
356 state_errs_set (s, nerrs, errors);
390 symbol **errors = xnmalloc (ntokens + 1, sizeof *errors);
400 set_conflicts (states[i], errors);
260 resolve_sr_conflict(state *s, int ruleno, symbol **errors, int *nerrs) argument
328 set_conflicts(state *s, symbol **errors) argument
389 symbol **errors = xnmalloc (ntokens + 1, sizeof *errors); local
[all...]
/external/bluetooth/bluedroid/stack/rfcomm/
H A Dport_api.c1018 ** errors - receive error codes
1021 int PORT_SendError (UINT16 handle, UINT8 errors) argument
1025 RFCOMM_TRACE_API ("PORT_SendError() handle:%d errors:0x%x", handle, errors);
1044 RFCOMM_LineStatusReq (p_port->rfc.p_mcb, p_port->dlci, errors);
/external/chromium-libpac/test/
H A Dproxy_resolver_v8_unittest.cc64 errors.push_back(mstd);
77 std::vector<std::string> errors; member in class:net::__anon1778::MockJSBindings
162 EXPECT_EQ(0U, resolver.mock_js_bindings()->errors.size());
177 EXPECT_EQ(0U, resolver.mock_js_bindings()->errors.size());
210 EXPECT_EQ(0U, resolver.mock_js_bindings()->errors.size());
244 ASSERT_EQ(1U, bindings->errors.size());
246 bindings->errors[0]);
275 ASSERT_EQ(1U, bindings->errors.size());
278 bindings->errors[0]);
323 ASSERT_EQ(1U, bindings->errors
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dcheckerbase.py29 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...]
H A Decmalintrules.py29 from closure_linter import errors namespace
61 Can be used to find common style errors in JavaScript, ActionScript and other
102 """Handle errors associated with a parameter missing a @param tag."""
161 self._HandleError(errors.LINE_TOO_LONG,
165 """Checks the given type for style errors.
176 self._HandleError(errors.JSDOC_PREFER_QUESTION_TO_PIPE_NULL,
183 self._HandleError(errors.JSDOC_ILLEGAL_QUESTION_WITH_PIPE,
189 self._HandleError(errors.MISSING_BRACES_AROUND_TYPE,
207 errors.MISSING_SPACE,
239 """Checks a token, given the current parser_state, for warnings and errors
[all...]
H A Derror_fixer.py24 from closure_linter import errors namespace
53 """Object that fixes simple style errors."""
60 instead of overwriting the files the errors are found in.
69 """Notifies this ErrorPrinter that subsequent errors are in filename.
102 if code == errors.JSDOC_PREFER_QUESTION_TO_PIPE_NULL:
121 elif code == errors.JSDOC_MISSING_OPTIONAL_TYPE:
134 elif code in (errors.MISSING_SEMICOLON_AFTER_FUNCTION,
135 errors.MISSING_SEMICOLON):
143 elif code in (errors.ILLEGAL_SEMICOLON_AFTER_FUNCTION,
144 errors
[all...]
H A Derrorrecord.py23 from closure_linter import errors namespace
35 new_error: Whether this is a "new error" (see errors.NEW_ERRORS).
58 new_error = error.code in errors.NEW_ERRORS
H A Derrorrules.py22 from closure_linter import errors namespace
27 'Whether to report errors for missing JsDoc.')
34 True for all errors except missing documentation errors. For these,
38 errors.MISSING_PARAMETER_DOCUMENTATION,
39 errors.MISSING_RETURN_DOCUMENTATION,
40 errors.MISSING_MEMBER_DOCUMENTATION,
41 errors.MISSING_PRIVATE,
42 errors.MISSING_JSDOC_TAG_THIS)
H A Dfull_test.py35 from closure_linter import errors namespace
110 checker.GJsLintRunner(), errors.ByName))
H A Dindentation.py22 from closure_linter import errors namespace
109 Can be used to find common indentation errors in JavaScript, ActionScript and
128 """Checks a token for indentation errors.
165 errors.MALFORMED_END_OF_SCOPE_COMMENT,
173 errors.MISSING_END_OF_SCOPE_COMMENT,
223 errors.WRONG_INDENTATION,
H A Djavascriptlintrules.py31 from closure_linter import errors namespace
47 """JavaScript lint rules that catch JavaScript specific style errors."""
58 """Handle errors associated with a parameter missing a param tag."""
59 self._HandleError(errors.MISSING_PARAMETER_DOCUMENTATION,
79 """Checks a token, given the current parser_state, for warnings and errors.
140 self._HandleError(errors.JSDOC_MISSING_OPTIONAL_PREFIX,
146 self._HandleError(errors.JSDOC_MISSING_OPTIONAL_TYPE,
157 self._HandleError(errors.MISSING_JSDOC_TAG_TYPE,
163 errors.OUT_OF_ORDER_JSDOC_TAG_TYPE,
176 errors
[all...]
H A Dnot_strict_test.py19 Tests errors that can be thrown by gjslint when not in strict mode.
32 from closure_linter import errors namespace
70 errors.ByName))
/external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
H A Djs_checker.py119 from closure_linter import checker, errors namespace
127 """Filters out errors that don't apply to Chromium JavaScript code."""
148 """Check whether an error is valid. Most errors are valid, with a few
156 errors.COMMA_AT_END_OF_LITERAL,
157 errors.JSDOC_ILLEGAL_QUESTION_WITH_PIPE,
158 errors.JSDOC_TAG_DESCRIPTION_ENDS_WITH_INVALID_CHARACTER,
159 errors.LINE_TOO_LONG,
160 errors.MISSING_JSDOC_TAG_THIS,
188 # Use closure_linter to check for several different errors
/external/chromium_org/base/memory/
H A Dshared_memory_unittest.cc640 int errors = 0; local
649 errors++;
653 errors++;
662 errors++;
667 return errors;
/external/chromium_org/build/android/
H A Dprovision_devices.py31 import errors namespace
145 except (errors.DeviceUnresponsiveError, device_errors.CommandFailedError):
201 except (errors.WaitForResponseTimedOutError,
/external/chromium_org/build/android/pylib/
H A Dandroid_commands.py39 import errors namespace
411 errors.WaitForResponseTimedOutError after max retries reached.
419 except errors.WaitForResponseTimedOutError as e:
539 except errors.WaitForResponseTimedOutError:
555 raise errors.MsgException('Remount failed: %s' % out)
573 raise errors.MsgException('KillAdbServer: %d' % ret)
577 raise errors.MsgException('StartAdbServer: %d' % ret)
641 raise errors.WaitForResponseTimedOutError(
659 raise errors.WaitForResponseTimedOutError(
722 raise errors
[all...]
/external/chromium_org/build/android/pylib/utils/
H A Demulator.py25 import errors namespace
407 except errors.WaitForResponseTimedOutError:
/external/chromium_org/chrome/browser/apps/
H A Dephemeral_app_launcher_browsertest.cc74 std::vector<std::string> errors; local
75 errors.push_back(requirements_error_);
76 OnRequirementsCheckDone(sequence_number, errors);
/external/chromium_org/chrome/browser/chromeos/mobile/
H A Dmobile_activator.cc51 const char kErrorsField[] = "errors";
145 base::DictionaryValue* errors = NULL; local
146 if (!root_dict->GetDictionary(kErrorsField, &errors))
148 for (base::DictionaryValue::Iterator it(*errors);
1125 // This is the magic for detection of errors in during activation process.

Completed in 3028 milliseconds

1234567891011>>