Searched defs:handler (Results 201 - 225 of 714) sorted by relevance

1234567891011>>

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/binding/editors/controls/
H A DAbstractControlActionsManager.java115 * @returns the global handler service.
123 * 1. The empty handler (except 'selectAll'), so underlying SWT event wouldn't be filtered by the
125 * 2. Highest priority {@link Expression}, so this handler has a chance to be set.
131 IHandler handler = getHandlerFor(actionName);
132 activateHandler(actionName, service, handler, new Expression() {
155 * Activates handler and stores it into a collection for further deactivation.
161 IHandler handler,
163 // activate handler and store it into a collection for further deactivation
164 m_activations.add(service.activateHandler(actionName, handler, highPriorityExpression));
159 activateHandler(String actionName, IHandlerService service, IHandler handler, Expression highPriorityExpression) argument
/external/guava/guava/src/com/google/common/eventbus/
H A DEventBus.java57 * <li>Expose a public method, known as the <i>event handler</i>, which accepts
70 * to any handler for any type to which the event is <em>assignable.</em> This
80 * Event handler methods must accept only one argument: the event.
87 * <p>The EventBus guarantees that it will not call a handler method from
90 * not present, handler methods need not worry about being reentrant, unless
98 * <p>If a handler for a supertype of all events (such as Object) is registered,
100 * Accordingly, while DeadEvent extends {@link Object}, a handler registered to
130 * Strategy for finding handler methods in registered objects. Currently,
203 * Registers all handler methods on {@code object} to receive events.
208 * @param object object whose handler method
272 enqueueEvent(Object event, EventHandler handler) argument
363 final EventHandler handler; field in class:EventBus.EventWithHandler
364 EventWithHandler(Object event, EventHandler handler) argument
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DSimpleTimeLimiter.java96 InvocationHandler handler = new InvocationHandler() {
115 return newProxy(interfaceType, handler);
190 Class<T> interfaceType, InvocationHandler handler) {
192 new Class<?>[] { interfaceType }, handler);
189 newProxy( Class<T> interfaceType, InvocationHandler handler) argument
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
H A DMp4TrackImpl.java40 private String handler; field in class:Mp4TrackImpl
47 handler = trackBox.getMediaBox().getHandlerBox().getHandlerType();
203 return handler;
217 "handler='" + handler + '\'' +
/external/v8/test/mjsunit/harmony/
H A Dproxies-function.js33 function CreateFrozen(handler, callTrap, constructTrap) {
34 if (handler.fix === undefined) handler.fix = function() { return {} }
35 var f = Proxy.createFunction(handler, callTrap, constructTrap)
43 var handler = {
59 var handler = {
64 var f = Proxy.createFunction(handler, callTrap)
242 TestCall(false, Proxy.createFunction(handler, function(x, y) {
247 TestCall(true, Proxy.createFunction(handler, function(x, y) {
253 TestCall(false, CreateFrozen(handler, functio
[all...]
/external/valgrind/main/coregrind/m_sigframe/
H A Dsigframe-amd64-darwin.c56 ucontext and retrieved from it later, so the handler can modify it
61 handler, although do point them somewhere non-faulting.
108 extra 2 args to be ignored (inside the handler). (We hope!) */
113 void *handler,
165 VG_(set_IP)(tid, (ULong)handler);
169 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal handler frame",
189 tid, (Addr)handler, (Addr)frame );
208 /* why -8 ? because the signal handler's return will have popped
109 sigframe_create( ThreadId tid, Addr sp_top_of_frame, const vki_siginfo_t *siginfo, const struct vki_ucontext *siguc, void *handler, UInt flags, const vki_sigset_t *mask, void *restorer ) argument
/external/valgrind/main/none/tests/amd64/
H A Dfaultstatus.c2 Check that a fault signal handler gets the expected info
58 static void handler(int sig, siginfo_t *si, void *uc) function
96 sa.sa_sigaction = handler;
130 fprintf(stderr, " FAIL: no fault, or handler returned\n");
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DMemoryHandlerTest.java58 MemoryHandler handler; field in class:MemoryHandlerTest
71 handler = new MemoryHandler();
102 Filter filter = handler.getFilter();
103 Formatter formatter = handler.getFormatter();
105 handler.close();
107 assertEquals(handler.getFilter(), filter);
108 assertEquals(handler.getFormatter(), formatter);
109 assertNull(handler.getEncoding());
110 assertNotNull(handler.getErrorManager());
111 assertEquals(handler
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorOutputElem.java170 * @param handler The calling StylesheetHandler/TemplatesBuilder.
186 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
192 m_outputProperties.setDOMBackPointer(handler.getOriginatingNode());
193 m_outputProperties.setLocaterInfo(handler.getLocator());
194 m_outputProperties.setUid(handler.nextUid());
195 setPropertiesFromAttributes(handler, rawName, attributes, this);
207 handler.getBaseIdentifier());
212 handler.error(te.getMessage(), te);
216 handler.getStylesheet().setOutput(m_outputProperties);
218 ElemTemplateElement parent = handler
185 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
[all...]
H A DXSLTElementProcessor.java83 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
92 StylesheetHandler handler, String publicId, String systemId)
102 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
109 public void notationDecl(StylesheetHandler handler, String name, argument
120 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
128 public void unparsedEntityDecl(StylesheetHandler handler, String name, argument
140 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
142 public void startNonText(StylesheetHandler handler) throws org.xml.sax.SAXException argument
151 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
158 StylesheetHandler handler, Strin
91 resolveEntity( StylesheetHandler handler, String publicId, String systemId) argument
157 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
176 endElement( StylesheetHandler handler, String uri, String localName, String rawName) argument
197 characters( StylesheetHandler handler, char ch[], int start, int length) argument
215 ignorableWhitespace( StylesheetHandler handler, char ch[], int start, int length) argument
232 processingInstruction( StylesheetHandler handler, String target, String data) argument
247 skippedEntity(StylesheetHandler handler, String name) argument
263 setPropertiesFromAttributes( StylesheetHandler handler, String rawName, Attributes attributes, ElemTemplateElement target) argument
285 setPropertiesFromAttributes( StylesheetHandler handler, String rawName, Attributes attributes, ElemTemplateElement target, boolean throwError) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAVT.java154 * @param handler non-null reference to StylesheetHandler that is constructing.
162 public AVT(StylesheetHandler handler, String uri, String name, argument
309 handler.createXPath(exprBuffer.toString(), owner);
369 handler.warn(XSLTErrorResources.WG_FOUND_CURLYBRACE, null); //"Found \"}\" but no attribute template open!");
402 handler.warn(XSLTErrorResources.WG_ATTR_TEMPLATE,
/external/bison/lib/
H A Dsigprocmask.c34 where any handler is uninstalled prior to being invoked. This is
51 for the signal SIGABRT. Only one signal handler is stored for both
67 signal_nothrow (int sig, handler_t handler) argument
73 result = signal (sig, handler);
95 ext_signal (int sig, handler_t handler) argument
102 SIGPIPE_handler = handler;
106 return signal (sig, handler);
190 /* Signal handler that is installed for blocked signals. */
194 /* Reinstall the handler, in case the signal occurs multiple times
196 signal in between when the kernel uninstalled the handler an
295 rpl_signal(int sig, handler_t handler) argument
341 handler_t handler = SIGPIPE_handler; local
[all...]
/external/chromium/chrome/browser/custom_handlers/
H A Dprotocol_handler_registry.cc23 ProtocolHandler* handler) {
24 if (protocolHandlers_.find(handler->protocol()) == protocolHandlers_.end()) {
27 if (!policy->IsWebSafeScheme(handler->protocol())) {
28 policy->RegisterWebSafeScheme(handler->protocol());
30 net::URLRequest::RegisterProtocolFactory(handler->protocol(),
33 protocolHandlers_[handler->protocol()] = handler;
53 ProtocolHandler* handler = ProtocolHandler::CreateProtocolHandler(value); local
54 if (handler) {
55 RegisterProtocolHandler(handler);
22 RegisterProtocolHandler( ProtocolHandler* handler) argument
92 ProtocolHandler* handler = GetHandlerFor(request->url().scheme()); local
119 OnAcceptRegisterProtocolHandler( ProtocolHandler* handler) argument
125 OnDenyRegisterProtocolHandler( ProtocolHandler* handler) argument
[all...]
/external/chromium/chrome/browser/renderer_host/
H A Doffline_resource_handler.cc25 ResourceHandler* handler,
30 : next_handler_(handler),
121 // We'll let the original event handler provide a buffer, and reuse it for
24 OfflineResourceHandler( ResourceHandler* handler, int host_id, int route_id, ResourceDispatcherHost* rdh, net::URLRequest* request) argument
/external/chromium/chrome/browser/ssl/
H A Dssl_blocking_page.cc45 SSLBlockingPage::SSLBlockingPage(SSLCertErrorHandler* handler, argument
48 : InterstitialPage(handler->GetTabContents(), true, handler->request_url()),
49 handler_(handler),
/external/chromium/chrome/browser/ui/views/
H A Dexternal_protocol_dialog.cc45 ExternalProtocolDialog* handler = local
/external/chromium/chrome/browser/ui/webui/chromeos/login/
H A Dlogin_ui.cc113 LoginUIHandler* handler = new LoginUIHandler(); local
114 AddMessageHandler(handler->Attach(this));
/external/chromium/chrome/browser/ui/webui/chromeos/
H A Dsystem_info_ui.cc63 // The handler for Javascript messages related to the "system" view.
164 // TODO(stevenjb): customize handler attach if needed...
179 SystemInfoHandler* handler = new SystemInfoHandler(); local
180 AddMessageHandler((handler)->Attach(this));
/external/chromium/chrome/browser/ui/webui/options/
H A Dfont_settings_handler.cc79 WebUIMessageHandler* handler = OptionsPageUIHandler::Attach(web_ui); local
98 return handler;
/external/chromium/net/disk_cache/
H A Dfile_win.cc59 context_.handler = g_completion_handler.Pointer();
262 MessageLoopForIO::IOHandler* handler = g_completion_handler.Pointer(); local
263 MessageLoopForIO::current()->WaitForIOCompletion(100, handler);
/external/chromium/net/http/
H A Dhttp_auth.cc31 scoped_ptr<HttpAuthHandler>* handler) {
33 DCHECK(handler->get() == NULL);
35 // Choose the challenge whose authentication handler gives the maximum score.
53 handler->swap(best);
58 HttpAuthHandler* handler,
63 DCHECK(handler);
67 HttpAuth::Scheme current_scheme = handler->auth_scheme();
80 authorization_result = handler->HandleAnotherChallenge(&props);
24 ChooseBestChallenge( HttpAuthHandlerFactory* http_auth_handler_factory, const HttpResponseHeaders* headers, Target target, const GURL& origin, const std::set<Scheme>& disabled_schemes, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
57 HandleChallengeResponse( HttpAuthHandler* handler, const HttpResponseHeaders* headers, Target target, const std::set<Scheme>& disabled_schemes, std::string* challenge_used) argument
H A Dhttp_auth_handler_digest_unittest.cc52 scoped_ptr<HttpAuthHandler> handler; local
54 // Create a handler for a particular challenge.
57 challenge, target, url_origin.GetOrigin(), BoundNetLog(), &handler);
58 if (rv_create != OK || handler.get() == NULL) {
59 ADD_FAILURE() << "Unable to create auth handler.";
72 int rv_generate = handler->GenerateAuthToken(
340 scoped_ptr<HttpAuthHandler> handler; local
345 &handler);
350 EXPECT_TRUE(handler.get() == NULL);
353 ASSERT_TRUE(handler
505 scoped_ptr<HttpAuthHandler> handler; local
531 scoped_ptr<HttpAuthHandler> handler; local
[all...]
H A Dhttp_auth_handler_factory.cc23 scoped_ptr<HttpAuthHandler>* handler) {
26 net_log, handler);
35 scoped_ptr<HttpAuthHandler>* handler) {
38 digest_nonce_count, net_log, handler);
174 scoped_ptr<HttpAuthHandler>* handler) {
177 handler->reset();
183 handler->reset();
188 digest_nonce_count, net_log, handler);
18 CreateAuthHandlerFromString( const std::string& challenge, HttpAuth::Target target, const GURL& origin, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
29 CreatePreemptiveAuthHandlerFromString( const std::string& challenge, HttpAuth::Target target, const GURL& origin, int digest_nonce_count, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
167 CreateAuthHandler( HttpAuth::ChallengeTokenizer* challenge, HttpAuth::Target target, const GURL& origin, CreateReason reason, int digest_nonce_count, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
H A Dhttp_auth_handler_mock.cc146 HttpAuthHandler* handler, HttpAuth::Target target) {
148 handlers_[target].reset(handler);
158 scoped_ptr<HttpAuthHandler>* handler) {
165 handler->swap(tmp_handler);
145 set_mock_handler( HttpAuthHandler* handler, HttpAuth::Target target) argument
151 CreateAuthHandler( HttpAuth::ChallengeTokenizer* challenge, HttpAuth::Target target, const GURL& origin, CreateReason reason, int nonce_count, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
H A Dhttp_auth_handler_negotiate_unittest.cc180 scoped_ptr<HttpAuthHandlerNegotiate>* handler) {
189 // after creating the handler, and make sure that generic_handler
201 handler->reset(negotiate_handler);
177 CreateHandler(bool disable_cname_lookup, bool use_port, bool synchronous_resolve_mode, const std::string& url_string, scoped_ptr<HttpAuthHandlerNegotiate>* handler) argument

Completed in 645 milliseconds

1234567891011>>