| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
| Match.java | 49 * @param handler the handler which performed the match 55 public Match(GuidelineHandler handler, Segment edge, Segment with, 57 mHandler = handler;
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/ |
| PreCompilerDeltaVisitor.java | 109 SourceChangeHandler handler = processor.getChangeHandler(); local 110 mSourceChangeHandlers.add(handler); 289 for (SourceChangeHandler handler : mSourceChangeHandlers) { 290 if (handler.handleGeneratedFile(file, kind)) { 311 for (SourceChangeHandler handler : mSourceChangeHandlers) { 312 handler.handleSourceFile(file, kind); 357 for (SourceChangeHandler handler : mSourceChangeHandlers) { 358 handler.handleResourceFile((IFile)resource, kind);
|
| /external/expat/lib/ |
| expat.h | 158 /* The Attlist declaration handler is called for *each* attribute. So 160 generate multiple calls to this handler. The "default" parameter 178 /* The XML declaration handler is called for *both* XML declarations 279 there is no applicable handler. This includes both characters that 282 construct which could be reported but for which no handler has been 286 character is not passed to the default handler. There are no 288 default handler: for example, a comment might be split between 342 XML_EntityDeclHandler handler); 345 This handler has been superceded by the EntityDeclHandler above. 389 have standalone="yes". If this handler returns XML_STATUS_ERROR [all...] |
| /external/v8/src/ |
| proxy.js | 34 $Proxy.create = function(handler, proto) { 35 if (!IS_SPEC_OBJECT(handler)) 41 return %CreateJSProxy(handler, proto) 44 $Proxy.createFunction = function(handler, callTrap, constructTrap) { 45 if (!IS_SPEC_OBJECT(handler)) 62 handler, callTrap, constructTrap, $Function.prototype) 183 var handler = %GetHandler(proxy) 184 if (IS_UNDEFINED(handler.enumerate)) { 185 return %Apply(DerivedEnumerateTrap, handler, [], 0, 0) 187 return ToStringArray(handler.enumerate(), "enumerate" [all...] |
| /external/webkit/Source/WebCore/bindings/v8/ |
| V8NPUtils.cpp | 132 ExceptionHandler handler; member in struct:WebCore::ExceptionHandlerInfo 138 void pushExceptionHandler(ExceptionHandler handler, void* data) 142 info->handler = handler; 167 topHandler->handler(topHandler->data, *v8::String::Utf8Value(m_tryCatch.Exception()));
|
| /external/webkit/Tools/Scripts/ |
| test-webkitpy | 60 level for the handler on the root logger is set to 71 handler = logging.StreamHandler(sys.stderr) 72 # We constrain the level on the handler rather than on the root 73 # logger itself. This is probably better because the handler is 76 # Modifying the handler, then, is less intrusive and less likely to 79 handler.setLevel(logging_level) 81 handler.setFormatter(formatter) 84 logger.addHandler(handler) 110 handler.addFilter(testing_filter)
|
| /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
| WiFiServiceDiscoveryActivity.java | 22 import android.os.Handler; 48 DeviceClickListener, Handler.Callback, MessageTarget, 69 private Handler handler = new Handler(this); field in class:WiFiServiceDiscoveryActivity 75 public Handler getHandler() { 76 return handler; 79 public void setHandler(Handler handler) { 80 this.handler = handler 311 Thread handler = null; local [all...] |
| /external/chromium/base/ |
| message_pump_win.cc | 434 IOHandler* handler) { 435 ULONG_PTR key = reinterpret_cast<ULONG_PTR>(handler); 506 if (item.context->handler) { 507 if (filter && item.handler != filter) { 511 DCHECK_EQ(item.context->handler, item.handler); 513 item.handler->OnIOCompleted(item.context, item.bytes_transfered, 518 // The handler must be gone by now, just cleanup the mess. 537 item->handler = reinterpret_cast<IOHandler*>(key); 544 this == reinterpret_cast<MessagePumpForIO*>(item.handler)) { [all...] |
| message_pump_win.h | 214 // context_->handler = this; 219 // // By setting the handler to NULL, we're asking for this context 221 // context_->handler = NULL; 262 // context->handler = this; 304 // overlapped IO operation. |handler| must be set to the registered IOHandler 306 // before the operation completes to indicate that the handler should not be 314 IOHandler* handler; member in struct:base::MessagePumpForIO::IOContext 324 // Register the handler to be used when asynchronous IO for the given file 326 // |handler| must be valid as long as there is pending IO for the given file. 327 void RegisterIOHandler(HANDLE file_handle, IOHandler* handler); 345 IOHandler* handler; member in struct:base::MessagePumpForIO::IOItem [all...] |
| /external/icu4c/io/ |
| uprntf_p.c | 75 * A u_printf handler function. 76 * A u_printf handler is responsible for handling a single u_printf 85 u_printf_handler(const u_printf_stream_handler *handler, 94 u_printf_handler *handler; member in struct:u_printf_info 179 u_printf_simple_percent_handler(const u_printf_stream_handler *handler, 188 return handler->write(context, PERCENT, 1); 193 u_printf_string_handler(const u_printf_stream_handler *handler, 232 written = handler->pad_and_justify(context, info, s, len); 243 u_printf_char_handler(const u_printf_stream_handler *handler, 265 written = handler->pad_and_justify(context, info, s, len) 1218 u_printf_handler *handler; local [all...] |
| /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
| ParserAdapterTest.java | 61 private MockHandler handler = new MockHandler(logger); field in class:ParserAdapterTest 77 adapter.setContentHandler(handler); 78 adapter.setDTDHandler(handler); 79 adapter.setErrorHandler(handler); 171 adapter.setDTDHandler(handler); 172 assertEquals(handler, adapter.getDTDHandler()); 179 adapter.setContentHandler(handler); 180 assertEquals(handler, adapter.getContentHandler()); 187 adapter.setErrorHandler(handler); 188 assertEquals(handler, adapter.getErrorHandler()) [all...] |
| XMLFilterImplTest.java | 51 private MockHandler handler = new MockHandler(logger); field in class:XMLFilterImplTest 68 parent.setContentHandler(handler); 69 parent.setDTDHandler(handler); 70 parent.setErrorHandler(handler); 72 child.setContentHandler(handler); 73 child.setDTDHandler(handler); 74 child.setErrorHandler(handler); 162 parent.setDTDHandler(handler); 163 assertEquals(handler, parent.getDTDHandler()); 170 parent.setContentHandler(handler); [all...] |
| /external/dexmaker/src/test/java/com/google/dexmaker/stock/ |
| ProxyBuilderTest.java | 229 .handler(new InvokeSuperHandler()) 287 InvocationHandler handler = new InvocationHandler() { local 292 assertEquals("asdf1", proxyFor(SingleInt.class).handler(handler).build().getString(1)); 376 .handler(delegatesOddValues) 385 InvocationHandler handler = new InvocationHandler() { local 392 .handler(handler) 553 .handler(fakeHandler) 559 .handler(fakeHandler 702 InvocationHandler handler = new InvocationHandler() { local [all...] |
| /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/ |
| Avrcp.java | 28 import android.os.Handler; 142 private WeakReference<Handler> mLocalHandler; 143 IRemoteControlDisplayWeak(Handler handler) { 144 mLocalHandler = new WeakReference<Handler>(handler); 150 Handler handler = mLocalHandler.get(); local 151 if (handler != null) { 152 handler.obtainMessage(MSG_UPDATE_STATE, generationId, state 159 Handler handler = mLocalHandler.get(); local 167 Handler handler = mLocalHandler.get(); local 180 Handler handler = mLocalHandler.get(); local 190 Handler handler = mLocalHandler.get(); local [all...] |
| /external/guava/guava/src/com/google/common/eventbus/ |
| EventBus.java | 57 * <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 79 * <h2>Handler Methods</h2> 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 363 final EventHandler handler; field in class:EventBus.EventWithHandler [all...] |
| /packages/apps/Calendar/src/com/android/calendar/ |
| AsyncQueryService.java | 28 import android.os.Handler; 46 public class AsyncQueryService extends Handler { 54 private Handler mHandler = this; // can be overridden for testing 175 info.handler = mHandler; 206 info.handler = mHandler; 242 info.handler = mHandler; 279 info.handler = mHandler; 310 info.handler = mHandler; 434 protected void setTestHandler(Handler handler) { [all...] |
| /external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
| TreeWalker2Result.java | 40 /** The result tree handler */ 50 * @param handler The Result tree handler to use 53 SerializationHandler handler) 56 super(handler, null); 59 m_handler = handler;
|
| TrAXFilter.java | 217 * Set the content event handler. 219 * @param handler The new content handler. 220 * @throws java.lang.NullPointerException If the handler 224 public void setContentHandler (ContentHandler handler) 226 m_transformer.setContentHandler(handler); 230 public void setErrorListener (ErrorListener handler) 232 m_transformer.setErrorListener(handler);
|
| /external/bison/lib/ |
| sigaction.c | 28 signal() has SysV semantics (ie. the handler is uninstalled before 30 signal is sent twice in a row before we can reinstall our handler, 35 the situation by reading static storage in a signal handler, which 68 for the signal SIGABRT. Only one signal handler is stored for both 75 /* A signal handler. */ 79 that signal is not currently handled by the sigaction handler. */ 82 /* Signal handler that is installed for signals. */ 86 handler_t handler; local 98 /* Reinstall the signal handler when required; otherwise update the 99 bookkeeping so that the user's handler may call sigaction and ge [all...] |
| /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
| metered_stream_unittest.py | 102 handler = logging.StreamHandler(b) 103 logger.addHandler(handler) 105 logger.handlers.remove(handler)
|
| /libcore/luni/src/main/java/libcore/net/http/ |
| HeaderParser.java | 34 public static void parseCacheControl(String value, CacheControlHandler handler) { 43 handler.handle(directive, null); 67 handler.handle(directive, parameter);
|
| /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
| DictionaryDownloadProgressBar.java | 25 import android.os.Handler; 168 // resort to a runnable posted to the handler of the view. 169 final Handler handler = getHandler(); local 172 if (null == handler) return; 173 handler.post(this);
|
| /system/netd/ |
| NetlinkManager.cpp | 88 NetlinkHandler *handler = new NetlinkHandler(this, *sock, format); local 89 if (handler->start()) { 95 return handler;
|
| /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/ |
| LoginContextTest.java | 60 private final MyCallbackHandler handler = new MyCallbackHandler(); field in class:LoginContextTest 127 * default callback handler is specified via security 153 * default callback handler is specified via security 177 * Expected: creation of default callback handler 181 // checks initialization of specified callback handler 203 * Expected: not null subject, null callback handler or 204 * wrapped default callback handler, not null shared 230 // login context doesn't have callback handler 231 assertNull("Handler", module.handler); 967 public CallbackHandler handler; field in class:LoginContextTest.MyLoginModule [all...] |
| /development/apps/Development/src/com/android/development/ |
| LogViewer.java | 27 import android.os.Handler; 43 Handler handler; field in class:LogViewer 50 this.handler = new Handler(); 118 handler.post(new AppendCharacters(builder)); 125 handler.post(new AppendThrowable(e));
|