HomeSort by relevance Sort by last modified time
    Searched full:error_handler (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /external/chromium/chrome/browser/sync/
profile_sync_factory_impl.h 32 browser_sync::UnrecoverableErrorHandler* error_handler);
38 browser_sync::UnrecoverableErrorHandler* error_handler);
44 browser_sync::UnrecoverableErrorHandler* error_handler);
48 browser_sync::UnrecoverableErrorHandler* error_handler);
52 browser_sync::UnrecoverableErrorHandler* error_handler);
57 browser_sync::UnrecoverableErrorHandler* error_handler);
61 browser_sync::UnrecoverableErrorHandler* error_handler);
65 browser_sync::UnrecoverableErrorHandler* error_handler);
70 browser_sync::UnrecoverableErrorHandler* error_handler);
74 browser_sync::UnrecoverableErrorHandler* error_handler);
    [all...]
profile_sync_factory_mock.h 35 browser_sync::UnrecoverableErrorHandler* error_handler));
41 browser_sync::UnrecoverableErrorHandler* error_handler));
47 browser_sync::UnrecoverableErrorHandler* error_handler));
50 browser_sync::UnrecoverableErrorHandler* error_handler));
53 browser_sync::UnrecoverableErrorHandler* error_handler));
58 browser_sync::UnrecoverableErrorHandler* error_handler));
61 browser_sync::UnrecoverableErrorHandler* error_handler));
64 browser_sync::UnrecoverableErrorHandler* error_handler));
67 browser_sync::UnrecoverableErrorHandler* error_handler));
72 browser_sync::UnrecoverableErrorHandler* error_handler));
    [all...]
profile_sync_factory_impl.cc 168 UnrecoverableErrorHandler* error_handler) {
179 new ExtensionChangeProcessor(traits, error_handler);
188 browser_sync::UnrecoverableErrorHandler* error_handler) {
198 error_handler);
207 browser_sync::UnrecoverableErrorHandler* error_handler) {
217 error_handler);
224 UnrecoverableErrorHandler* error_handler) {
231 error_handler);
234 error_handler);
241 UnrecoverableErrorHandler* error_handler) {
    [all...]
profile_sync_factory.h 68 browser_sync::UnrecoverableErrorHandler* error_handler) = 0;
77 browser_sync::UnrecoverableErrorHandler* error_handler) = 0;
86 browser_sync::UnrecoverableErrorHandler* error_handler) = 0;
93 browser_sync::UnrecoverableErrorHandler* error_handler) = 0;
100 browser_sync::UnrecoverableErrorHandler* error_handler) = 0;
108 browser_sync::UnrecoverableErrorHandler* error_handler) = 0;
115 browser_sync::UnrecoverableErrorHandler* error_handler) = 0;
122 browser_sync::UnrecoverableErrorHandler* error_handler) = 0;
130 browser_sync::UnrecoverableErrorHandler* error_handler) = 0;
137 browser_sync::UnrecoverableErrorHandler* error_handler) = 0
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
change_processor.cc 10 ChangeProcessor::ChangeProcessor(DataTypeErrorHandler* error_handler)
11 : error_handler_(error_handler),
27 DataTypeErrorHandler* ChangeProcessor::error_handler() const { function in class:browser_sync::ChangeProcessor
password_change_processor.cc 34 DataTypeErrorHandler* error_handler)
35 : ChangeProcessor(error_handler),
41 DCHECK(error_handler);
69 error_handler()->OnSingleDatatypeUnrecoverableError(FROM_HERE,
103 error_handler()->OnSingleDatatypeUnrecoverableError(FROM_HERE,
110 error_handler()->OnSingleDatatypeUnrecoverableError(FROM_HERE,
123 error_handler()->OnSingleDatatypeUnrecoverableError(FROM_HERE,
130 error_handler()->OnSingleDatatypeUnrecoverableError(FROM_HERE,
152 error_handler()->OnSingleDatatypeUnrecoverableError(FROM_HERE,
177 error_handler()->OnSingleDatatypeUnrecoverableError(FROM_HERE
    [all...]
generic_change_processor.cc 64 DataTypeErrorHandler* error_handler,
68 : ChangeProcessor(error_handler),
101 error_handler()->OnSingleDatatypeUnrecoverableError(
126 error_handler()->OnSingleDatatypeUnrecoverableError(error.location(),
134 error_handler()->OnSingleDatatypeUnrecoverableError(
204 DataTypeErrorHandler* error_handler) {
212 error_handler->OnSingleDatatypeUnrecoverableError(FROM_HERE,
220 error_handler->OnSingleDatatypeUnrecoverableError(FROM_HERE,
228 error_handler->OnSingleDatatypeUnrecoverableError(FROM_HERE,
238 error_handler->OnSingleDatatypeUnrecoverableError(FROM_HERE
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_components_factory_mock.h 43 browser_sync::DataTypeErrorHandler* error_handler,
52 browser_sync::DataTypeErrorHandler* error_handler));
57 browser_sync::DataTypeErrorHandler* error_handler));
60 browser_sync::DataTypeErrorHandler* error_handler));
64 browser_sync::DataTypeErrorHandler* error_handler));
70 browser_sync::DataTypeErrorHandler* error_handler));
profile_sync_components_factory_impl.h 43 browser_sync::DataTypeErrorHandler* error_handler,
56 browser_sync::DataTypeErrorHandler* error_handler) OVERRIDE;
60 browser_sync::DataTypeErrorHandler* error_handler) OVERRIDE;
64 browser_sync::DataTypeErrorHandler* error_handler) OVERRIDE;
67 browser_sync::DataTypeErrorHandler* error_handler) OVERRIDE;
profile_sync_components_factory.h 88 browser_sync::DataTypeErrorHandler* error_handler,
104 browser_sync::DataTypeErrorHandler* error_handler) = 0;
108 browser_sync::DataTypeErrorHandler* error_handler) = 0;
112 browser_sync::DataTypeErrorHandler* error_handler) = 0;
115 browser_sync::DataTypeErrorHandler* error_handler) = 0;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
jsonchecker_unittest.py 60 error_handler = MockErrorHandler(handle_style_error)
61 checker = jsonchecker.JSONChecker('foo.json', error_handler)
63 self.assertTrue(error_handler.turned_off_filtering)
72 error_handler = MockErrorHandler(handle_style_error)
73 error_handler.had_error = False
75 checker = jsonchecker.JSONChecker('foo.json', error_handler)
77 self.assertTrue(error_handler.had_error)
78 self.assertTrue(error_handler.turned_off_filtering)
90 error_handler = MockErrorHandler(self.mock_handle_style_error)
91 checker = jsonchecker.JSONChecker('foo.json', error_handler)
    [all...]
xml_unittest.py 50 error_handler = MockErrorHandler(handle_style_error)
51 checker = xml.XMLChecker('foo.xml', error_handler)
53 self.assertTrue(error_handler.turned_off_filtering)
61 error_handler = MockErrorHandler(handle_style_error)
62 error_handler.had_error = False
64 checker = xml.XMLChecker('foo.xml', error_handler)
66 self.assertTrue(error_handler.had_error)
67 self.assertTrue(error_handler.turned_off_filtering)
79 error_handler = MockErrorHandler(self.mock_handle_style_error)
80 checker = xml.XMLChecker('foo.xml', error_handler)
    [all...]
xcodeproj_unittest.py 47 def handler(error_handler, line_number, category, confidence, message):
50 error_handler = TestErrorHandler(handler)
51 checker = xcodeproj.XcodeProjectFileChecker('', error_handler)
57 def handler(error_handler, line_number, category, confidence, message):
60 error_handler = TestErrorHandler(handler)
61 checker = xcodeproj.XcodeProjectFileChecker('', error_handler)
  /external/chromium/chrome/browser/sync/glue/
password_change_processor.cc 27 UnrecoverableErrorHandler* error_handler)
28 : ChangeProcessor(error_handler),
34 DCHECK(error_handler);
61 error_handler()->OnUnrecoverableError(FROM_HERE,
77 error_handler()->OnUnrecoverableError(FROM_HERE,
90 error_handler()->OnUnrecoverableError(FROM_HERE,
95 error_handler()->OnUnrecoverableError(FROM_HERE,
108 error_handler()->OnUnrecoverableError(FROM_HERE,
113 error_handler()->OnUnrecoverableError(FROM_HERE,
136 error_handler()->OnUnrecoverableError(FROM_HERE
    [all...]
theme_change_processor.cc 21 UnrecoverableErrorHandler* error_handler)
22 : ChangeProcessor(error_handler),
24 DCHECK(error_handler);
41 error_handler()->OnUnrecoverableError(FROM_HERE,
74 error_handler()->OnUnrecoverableError(FROM_HERE, err);
86 error_handler()->OnUnrecoverableError(FROM_HERE, err);
95 error_handler()->OnUnrecoverableError(FROM_HERE,
autofill_profile_data_type_controller.h 31 browser_sync::UnrecoverableErrorHandler* error_handler);
session_change_processor.cc 27 UnrecoverableErrorHandler* error_handler,
29 : ChangeProcessor(error_handler),
34 DCHECK(error_handler);
39 UnrecoverableErrorHandler* error_handler,
42 : ChangeProcessor(error_handler),
47 DCHECK(error_handler);
165 error_handler()->OnUnrecoverableError(FROM_HERE,
178 error_handler()->OnUnrecoverableError(FROM_HERE,
192 error_handler()->OnUnrecoverableError(FROM_HERE,
typed_url_change_processor.cc 23 UnrecoverableErrorHandler* error_handler)
24 : ChangeProcessor(error_handler),
31 DCHECK(error_handler);
74 error_handler()->OnUnrecoverableError(FROM_HERE,
85 error_handler()->OnUnrecoverableError(FROM_HERE,
102 error_handler()->OnUnrecoverableError(FROM_HERE,
114 error_handler()->OnUnrecoverableError(FROM_HERE,
133 error_handler()->OnUnrecoverableError(FROM_HERE, std::string());
144 error_handler()->OnUnrecoverableError(FROM_HERE,
164 error_handler()->OnUnrecoverableError(FROM_HERE
    [all...]
extension_change_processor.h 30 // Does not take ownership of |error_handler|.
33 UnrecoverableErrorHandler* error_handler);
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
checker.py 47 def __init__(self, error_handler):
51 error_handler: Error handler to pass all errors to.
62 error_handler=error_handler,
119 def Run(self, filenames, error_handler):
124 error_handler: An ErrorHandler object.
126 checker = JavaScriptStyleChecker(error_handler)
  /external/chromium_org/third_party/closure_linter/closure_linter/
checker.py 47 def __init__(self, error_handler):
51 error_handler: Error handler to pass all errors to.
62 error_handler=error_handler,
119 def Run(self, filenames, error_handler):
124 error_handler: An ErrorHandler object.
126 checker = JavaScriptStyleChecker(error_handler)
  /external/android-clat/
netlink_callbacks.c 36 /* function: error_handler
42 static int error_handler(struct sockaddr_nl *nla, struct nlmsgerr *err, void *arg) { function
64 nl_cb_err(callbacks, NL_CB_CUSTOM, error_handler, retval);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
error_handlers_unittest.py 131 error_handler = self._error_handler(configuration)
132 self._call_error_handler(error_handler, confidence)
142 error_handler = self._error_handler(configuration)
147 self._call_error_handler(error_handler, confidence)
154 self._call_error_handler(error_handler, confidence)
166 self._call_error_handler(error_handler, confidence)
174 error_handler = self._error_handler(configuration,
179 self._call_error_handler(error_handler, confidence, line_number=60)
184 self._call_error_handler(error_handler, confidence, line_number=50)
190 error_handler.turn_off_line_filtering(
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
lintrunner.py 30 def Run(self, filenames, error_handler):
35 error_handler: An ErrorHandler object
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
lintrunner.py 30 def Run(self, filenames, error_handler):
35 error_handler: An ErrorHandler object

Completed in 282 milliseconds

1 2 3 4 5