| /external/icu4c/i18n/unicode/ |
| decimfmt.h | [all...] |
| /frameworks/base/core/java/android/content/pm/ |
| RegisteredServicesCache.java | 28 import android.os.Handler; 109 // the listener and handler are synchronized on "this" and must be updated together 111 private Handler mHandler; 188 public void setListener(RegisteredServicesCacheListener<V> listener, Handler handler) { 189 if (handler == null) { 190 handler = new Handler(mContext.getMainLooper()); 193 mHandler = handler; 203 Handler handler; local [all...] |
| /external/v8/src/ |
| v8natives.js | 251 var handler = %GetHandler(this); 252 return CallTrap1(handler, "hasOwn", DerivedHasOwnTrap, TO_STRING_INLINE(V)); 338 var handler = %GetHandler(obj); 339 var names = CallTrap0(handler, "keys", DerivedKeysTrap); 607 function GetTrap(handler, name, defaultTrap) { 608 var trap = handler[name]; 611 throw MakeTypeError("handler_trap_missing", [handler, name]); 615 throw MakeTypeError("handler_trap_must_be_callable", [handler, name]); 621 function CallTrap0(handler, name, defaultTrap) { 622 return %_CallFunction(handler, GetTrap(handler, name, defaultTrap)) [all...] |
| isolate.cc | 483 // the C++ try catch handler with the simulator and get back an 486 // returned will be the address of the C++ try catch handler itself. 1011 StackHandler* handler = local 1180 StackHandler* handler = local [all...] |
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
| org.mortbay.jetty.server_6.1.23.v201004211559.jar | |
| /external/libxslt/libxslt/ |
| xsltutils.c | 508 * Default handler for out of context error messages. 529 * @handler: the new handler function 531 * Function to reset the handler and the error context for out of 533 * This simply means that @handler will be called for subsequent 535 * be passed as first argument to @handler 537 * stderr by setting @ctx to this file handle and @handler to NULL. 540 xsltSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler) { 542 if (handler != NULL) 543 xsltGenericError = handler; 2170 xsltHandleDebuggerCallback handler; member in struct:_xsltDebuggerCallbacks [all...] |
| /packages/apps/Browser/src/com/android/browser/ |
| Tab.java | 38 import android.os.Handler; 189 private Handler mHandler; 511 final SslErrorHandler handler, final SslError error) { 513 handler.cancel(); 527 handler.proceed(); 537 view, handler, error); 552 handler.cancel(); 559 handler.proceed(); 579 final ClientCertRequestHandler handler, final String host_and_port) { 581 handler.ignore() [all...] |
| /external/chromium/chrome/browser/ |
| favicon_helper_unittest.cc | 146 // This method will take the ownership of the given handler. 147 void set_history_handler(HistoryRequestHandler* handler) { 148 history_handler_.reset(handler); 624 // Reset download handler 752 scoped_ptr<HistoryRequestHandler> handler; local 753 handler.reset(new HistoryRequestHandler(page_url, latest_icon_url, 755 handler->favicon_data_.known_icon = true; 756 handler->favicon_data_.expired = false; 757 handler->favicon_data_.icon_type = history::TOUCH_ICON; 758 handler->favicon_data_.icon_url = latest_icon_url [all...] |
| /external/clang/lib/Analysis/ |
| UninitializedValues.cpp | 440 UninitVariablesHandler &handler; member in class:__anon5657::TransferFunctions 446 UninitVariablesHandler &handler) 449 handler(handler) {} 605 handler.handleUseOfUninitVariable(vd, getUninitUse(ex, vd, v)); 666 handler.handleSelfInit(cast<VarDecl>(dr->getDecl())); 732 UninitVariablesHandler &handler) { 746 TransferFunctions tf(vals, cfg, block, ac, classification, handler); 796 UninitVariablesHandler &handler, 844 runOnBlock(block, cfg, ac, vals, classification, wasAnalyzed, handler); [all...] |
| /external/icu4c/i18n/ |
| tznames_impl.cpp | 308 TextTrieMapSearchResultHandler *handler, UErrorCode &status) const { 318 search(fNodes, text, start, start, handler, status); 323 int32_t index, TextTrieMapSearchResultHandler *handler, UErrorCode &status) const { 328 if (!handler->handleMatch(index - start, node, status)) { 353 search(node, text, start, index+1, handler, status); [all...] |
| /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
| ThreadTest.java | 909 class Handler implements UncaughtExceptionHandler { 914 final Handler handler = new Handler(); local 915 Thread.setDefaultUncaughtExceptionHandler(handler); 916 assertSame(handler, Thread.getDefaultUncaughtExceptionHandler()); 961 class Handler implements UncaughtExceptionHandler { 966 final Handler handler = new Handler(); local [all...] |
| /external/chromium/base/ |
| logging.cc | 109 // An assert handler override specified by the client to be called instead of 112 // An report handler override specified by the client to be called instead of 115 // A log message handler that gets notified of every log message we process. 435 void SetLogAssertHandler(LogAssertHandlerFunction handler) { 436 log_assert_handler = handler; 439 void SetLogReportHandler(LogReportHandlerFunction handler) { 440 log_report_handler = handler; 443 void SetLogMessageHandler(LogMessageHandlerFunction handler) { 444 log_message_handler = handler; 569 // Give any log message handler first dibs on the message [all...] |
| /external/webkit/LayoutTests/dom/xhtml/level3/core/ |
| documentnormalizedocument09.js | 92 This method is called on the error handler when an error occurs. 115 Register an error handler on this Document and in each case make sure that it does 142 domConfig.setParameter("error-handler", errHandler.handleError);
|
| documentnormalizedocument12.js | 94 This method is called on the error handler when an error occurs. 117 Register an error handler on this Document and in each case make sure that it does 144 domConfig.setParameter("error-handler", errHandler.handleError);
|
| handleerror01.js | 92 This method is called on the error handler when an error occurs. 109 with an error handler that stops processing. Only one of the 151 domConfig.setParameter("error-handler", errorHandler.handleError);
|
| handleerror02.js | 94 This method is called on the error handler when an error occurs. 122 Use an error handler to continue from errors and check that more than one 155 domConfig.setParameter("error-handler", errorHandler.handleError);
|
| /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ |
| LayoutTestsExecutor.java | 26 import android.os.Handler; 135 private final Handler mResultHandler = new Handler() { 169 public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, 171 if (handler.useHttpAuthUsernamePassword() && view != null) { 174 handler.proceed(credentials[0], credentials[1]); 178 handler.cancel(); 182 public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) { 185 handler.proceed(); 575 Handler mLayoutTestControllerHandler = new Handler() [all...] |
| /libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
| NodeImpl.java | 698 public final Object setUserData(String key, Object data, UserDataHandler handler) { 705 : map.put(key, new UserData(data, handler)); 720 final UserDataHandler handler; field in class:NodeImpl.UserData 721 UserData(Object value, UserDataHandler handler) { 723 this.handler = handler;
|
| /development/tools/apkcheck/src/com/android/apkcheck/ |
| ApkCheck.java | 185 ApiDescrHandler handler = new ApiDescrHandler(apiList); local 186 xmlReader.setContentHandler(handler); 187 xmlReader.setErrorHandler(handler);
|
| /external/chromium/chrome/common/extensions/ |
| extension_l10n_util.cc | 119 DictionaryValue* handler = NULL; local 120 if (!file_handlers->GetDictionary(i, &handler)) { 125 handler, error))
|
| /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
| dispatch.py | 64 """Default web_socket_passive_closing_handshake handler.""" 87 """Returns a function that converts the path of a WebSocket handler source 115 """Returns a generator that enumerates WebSocket Handler source file names 127 """A handler suite holder class.""" 137 """Source a handler definition string. 141 handler functions. 148 raise DispatchException('Error in sourcing handler:' + 170 handler = dic[name] 171 if not callable(handler): 173 return handler [all...] |
| /external/jdiff/src/jdiff/ |
| XMLToAPI.java | 48 DefaultHandler handler = new APIHandler(api_, createGlobalComments); local 69 parser.setContentHandler(handler); 70 parser.setErrorHandler(handler);
|
| /external/libppp/src/ |
| udp.c | 85 struct udpdevice *dev = device2udp(p->handler); 113 struct udpdevice *dev = device2udp(p->handler); 134 struct udpdevice *dev = device2udp(p->handler);
|
| /external/valgrind/main/coregrind/m_sigframe/ |
| sigframe-ppc64-linux.c | 87 // In theory, so long as we get the arguments to the handler function 161 /* set SIGSEGV to default handler */ 184 void *handler, 223 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal handler frame", 273 which the signal handler returns, and it just did sys_sigreturn 289 /* set the signal handler to return to the trampoline */ 292 /* Stack pointer for the handler .. (note, back chain set 296 /* Args for the handler .. */ 303 /* Handler is in fact a standard ppc64-linux function descriptor, 305 SET_SIGNAL_GPR(tid, 2, (Addr) ((ULong*)handler)[1]) [all...] |
| /external/webkit/Source/JavaScriptCore/dfg/ |
| DFGOperations.cpp | 221 HandlerInfo* handler = exec->globalData().interpreter->throwException(exec, exceptionValue, vPCIndex); local 223 void* catchRoutine = handler ? handler->nativeCode.executableAddress() : (void*)ctiOpThrowNotCaught;
|