Searched defs:handlers (Results 51 - 75 of 94) sorted by last modified time

1234

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
H A Dreflectionhandler.py42 import wsgiref.handlers namespace
138 expires_formatted = wsgiref.handlers.format_date_time(
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLDocumentParser.cpp713 PassRefPtr<XMLParserContext> XMLParserContext::createStringParser(xmlSAXHandlerPtr handlers, void* userData) argument
716 xmlParserCtxtPtr parser = xmlCreatePushParserCtxt(handlers, 0, 0, 0, 0);
723 PassRefPtr<XMLParserContext> XMLParserContext::createMemoryParser(xmlSAXHandlerPtr handlers, void* userData, const CString& chunk) argument
734 memcpy(parser->sax, handlers, sizeof(xmlSAXHandler));
1010 // Event handlers may synchronously trigger removal of the
1507 // FIXME: Hook up error handlers so that a failure to parse the main
/external/chromium_org/ui/events/
H A Devent_dispatcher_unittest.cc282 // |h1| marks the event as handled. So only the pre-target handlers should
338 int handlers[] = { 11, 11 }; local
340 std::vector<int>(handlers, handlers + sizeof(handlers) / sizeof(int)),
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dimage_editor.js654 var handlers = {
663 for (var eventName in handlers) {
665 eventName, handlers[eventName].bind(this), false);
/external/chromium_org/ui/web_dialogs/
H A Dweb_dialog_ui.cc87 std::vector<WebUIMessageHandler*> handlers; local
91 delegate->GetWebUIMessageHandlers(&handlers);
96 for (std::vector<WebUIMessageHandler*>::iterator it = handlers.begin();
97 it != handlers.end(); ++it) {
/external/chromium_org/third_party/libxml/src/
H A Dencoding.c1277 * Char encoding handlers *
1284 static xmlCharEncodingHandlerPtr *handlers = NULL; variable
1387 if (handlers != NULL) return;
1389 handlers = (xmlCharEncodingHandlerPtr *)
1399 if (handlers == NULL) {
1438 * unregisters all the encoding handlers and the aliases.
1444 if (handlers == NULL) return;
1448 if (handlers[nbCharEncodingHandler] != NULL) {
1449 if (handlers[nbCharEncodingHandler]->name != NULL)
1450 xmlFree(handlers[nbCharEncodingHandle
[all...]
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dupdate_nacl_manifest.py19 import logging.handlers namespace
324 class GsutilLoggingHandler(logging.handlers.BufferingHandler):
326 logging.handlers.BufferingHandler.__init__(self, capacity=0)
346 logging.handlers.BufferingHandler.flush(self)
/external/chromium_org/net/http/
H A Dhttp_auth_handler_mock.cc178 std::vector<HttpAuthHandler*>& handlers = handlers_[target].get(); local
179 handlers.erase(handlers.begin());
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3ext.c236 /* Table of handlers for received TLS hello extensions, one per extension.
1811 const ssl3HelloExtensionHandler * handlers; local
1814 handlers = clientHelloHandlers;
1816 handlers = serverHelloHandlersTLS;
1818 handlers = serverHelloHandlersSSL3;
1849 for (handler = handlers; handler->ex_type >= 0; handler++) {
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/extensions/common/
H A Dextension_l10n_util_unittest.cc439 base::ListValue* handlers = new base::ListValue(); local
440 manifest.Set(keys::kFileBrowserHandlers, handlers);
442 handlers->Append(handler);
H A Dmanifest_handler.cc154 std::set<ManifestHandler*> handlers; local
160 handlers.insert(handler);
163 for (std::set<ManifestHandler*>::iterator iter = handlers.begin();
164 iter != handlers.end(); ++iter) {
244 // If there are any leftover unsorted handlers, they must have had
247 << "Extension manifest handlers have circular dependencies!";
/external/chromium_org/extensions/common/manifest_handlers/
H A Dfile_handler_manifest_unittest.cc41 const FileHandlersInfo* handlers = local
43 ASSERT_TRUE(handlers != NULL);
44 ASSERT_EQ(2U, handlers->size());
46 FileHandlerInfo handler = handlers->at(0);
54 handler = handlers->at(1);
62 // This should load successfully but have the file handlers ignored.
67 const FileHandlersInfo* handlers = local
69 ASSERT_TRUE(handlers == NULL);
/external/chromium_org/media/tools/constrained_network_server/
H A Dcns.py16 from logging import handlers namespace
413 file_handler = handlers.RotatingFileHandler('cns.log', 'a', 10000000, 10)
/external/chromium_org/content/browser/devtools/
H A Ddevtools_browser_target.cc160 std::vector<DevToolsProtocol::Handler*> handlers) {
162 STLDeleteElements(&handlers);
159 DeleteHandlersOnUIThread( std::vector<DevToolsProtocol::Handler*> handlers) argument
/external/chromium_org/content/browser/fileapi/
H A Dfile_system_dir_url_request_job_unittest.cc147 std::vector<storage::URLRequestAutoMountHandler> handlers; local
148 handlers.push_back(base::Bind(&TestAutoMountForURLRequest));
151 NULL, additional_providers.Pass(), handlers, temp_dir_.path());
H A Dfile_system_url_request_job_unittest.cc154 std::vector<storage::URLRequestAutoMountHandler> handlers; local
155 handlers.push_back(base::Bind(&TestAutoMountForURLRequest));
158 NULL, additional_providers.Pass(), handlers, temp_dir_.path());
/external/chromium_org/content/public/browser/
H A Dcontent_browser_client.h196 // protocol handlers.
521 // optionally add their own handlers.
567 // Returns auto mount handlers for URL requests for FileSystem APIs.
569 std::vector<storage::URLRequestAutoMountHandler>* handlers) {}
568 GetURLRequestAutoMountHandlers( std::vector<storage::URLRequestAutoMountHandler>* handlers) argument
/external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
H A Dfile_browser_handler_manifest_unittest.cc73 FileBrowserHandler::List* handlers = local
75 ASSERT_TRUE(handlers != NULL);
76 ASSERT_EQ(1U, handlers->size());
77 const FileBrowserHandler* action = handlers->at(0).get();
109 FileBrowserHandler::List* handlers = local
111 ASSERT_TRUE(handlers != NULL);
112 ASSERT_EQ(1U, handlers->size());
113 const FileBrowserHandler* action = handlers->at(0).get();
140 FileBrowserHandler::List* handlers = local
142 ASSERT_TRUE(handlers !
[all...]
/external/chromium_org/chrome/common/extensions/api/url_handlers/
H A Durl_handlers_parser.cc54 return info ? &info->handlers : NULL;
68 const std::vector<UrlHandlerInfo>* handlers = GetUrlHandlers(extension); local
69 if (!handlers)
77 handlers->begin(); it != handlers->end(); it++) {
155 if (!ParseUrlHandler(iter.key(), *handler, &info->handlers, error)) {
H A Durl_handlers_parser.h35 // Returns an array of URL handlers |extension| has defined in its manifest.
51 std::vector<UrlHandlerInfo> handlers; member in struct:extensions::UrlHandlers
/external/chromium_org/chrome/common/
H A Dworker_thread_ticker.cc28 // You cannot change the list of handlers when the timer is running.
39 // You cannot change the list of handlers when the timer is running.
88 const TickHandlerListType& handlers = tick_handler_list_; local
89 for (TickHandlerListType::const_iterator i = handlers.begin();
90 i != handlers.end(); ++i) {
/external/chromium_org/chrome/browser/media/
H A Dwebrtc_rtp_dump_handler_unittest.cc199 scoped_ptr<WebRtcRtpDumpHandler> handlers[6]; local
201 for (size_t i = 0; i < arraysize(handlers); ++i) {
202 handlers[i].reset(new WebRtcRtpDumpHandler(base::FilePath()));
204 if (i < arraysize(handlers) - 1) {
205 EXPECT_TRUE(handlers[i]->StartDump(RTP_DUMP_INCOMING, &error));
207 EXPECT_FALSE(handlers[i]->StartDump(RTP_DUMP_INCOMING, &error));
/external/chromium_org/chrome/browser/printing/
H A Dprint_dialog_cloud_unittest.cc107 void(std::vector<WebUIMessageHandler*>* handlers));
267 std::vector<WebUIMessageHandler*> handlers; local
268 delegate_->GetWebUIMessageHandlers(&handlers);
/external/chromium_org/chrome/browser/renderer_context_menu/
H A Drender_view_context_menu.cc939 const ProtocolHandlerRegistry::ProtocolHandlerList handlers = local
941 if (handlers.empty())
945 for (size_t i = 0; i < handlers.size() && i <= max; i++) {
948 base::UTF8ToUTF16(handlers[i].url().host()));
1286 ProtocolHandlerRegistry::ProtocolHandlerList handlers = local
1288 if (handlers.empty())
1296 OpenURL(handlers[handlerIndex].TranslateUrl(params_.link_url),
1690 ProtocolHandlerRegistry::ProtocolHandlerList handlers = local
1692 std::sort(handlers.begin(), handlers
[all...]

Completed in 512 milliseconds

1234