| /external/apache-http/src/org/apache/http/impl/cookie/ |
| AbstractCookieSpec.java | 58 * Stores attribute name -> attribute handler mappings 71 final String name, final CookieAttributeHandler handler) { 75 if (handler == null) { 76 throw new IllegalArgumentException("Attribute handler may not be null"); 78 this.attribHandlerMap.put(name, handler); 82 * Finds an attribute handler {@link CookieAttributeHandler} for the 83 * given attribute. Returns <tt>null</tt> if no attribute handler is 87 * @return an attribute handler or <tt>null</tt> 94 * Gets attribute handler {@link CookieAttributeHandler} for the 98 * @throws IllegalStateException if handler not found for th 102 CookieAttributeHandler handler = findAttribHandler(name); local [all...] |
| /external/apache-xml/src/main/java/org/apache/xalan/extensions/ |
| ExtensionNamespaceSupport.java | 73 ExtensionHandler handler = null; local 95 handler = (ExtensionHandler)con.newInstance(m_args); 103 return handler;
|
| /external/apache-xml/src/main/java/org/apache/xalan/processor/ |
| ProcessorExsltFuncResult.java | 46 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) 51 super.startElement(handler, uri, localName, rawName, attributes); 52 ElemTemplateElement ancestor = handler.getElemTemplateElement().getParentElem(); 60 handler.error(msg, new SAXException(msg)); 67 handler.error(msg, new SAXException(msg));
|
| ProcessorNamespaceAlias.java | 48 * @param handler The calling StylesheetHandler/TemplatesBuilder. 62 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) 66 NamespaceAlias na = new NamespaceAlias(handler.nextUid()); 68 setPropertiesFromAttributes(handler, rawName, attributes, na); 75 String stylesheetNS = handler.getNamespaceForPrefix(prefix); 82 resultNS = handler.getNamespaceForPrefix(prefix); 84 handler.error(XSLTErrorResources.ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT, null, null); 88 resultNS = handler.getNamespaceForPrefix(prefix); 90 handler.error(XSLTErrorResources.ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX, new Object[] {prefix}, null); 94 handler.getStylesheet().setNamespaceAlias(na) [all...] |
| ProcessorPreserveSpace.java | 45 * @param handler The calling StylesheetHandler/TemplatesBuilder. 59 StylesheetHandler handler, String uri, String localName, String rawName, 63 Stylesheet thisSheet = handler.getStylesheet(); 65 setPropertiesFromAttributes(handler, rawName, attributes, paths); 72 wsi.setUid(handler.nextUid());
|
| ProcessorStripSpace.java | 45 * @param handler The calling StylesheetHandler/TemplatesBuilder. 59 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) 62 Stylesheet thisSheet = handler.getStylesheet(); 64 setPropertiesFromAttributes(handler, rawName, attributes, paths); 71 wsi.setUid(handler.nextUid());
|
| ProcessorTemplate.java | 38 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates. 45 StylesheetHandler handler, ElemTemplateElement elem) 49 super.appendAndPush(handler, elem); 50 elem.setDOMBackPointer(handler.getOriginatingNode()); 51 handler.getStylesheet().setTemplate((ElemTemplate) elem);
|
| ProcessorText.java | 40 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates. 47 StylesheetHandler handler, ElemTemplateElement elem) 53 (ProcessorCharacters) handler.getProcessorFor(null, "text()", "text"); 57 ElemTemplateElement parent = handler.getElemTemplateElement(); 60 elem.setDOMBackPointer(handler.getOriginatingNode()); 66 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates. 72 StylesheetHandler handler, String uri, String localName, String rawName) 77 = (ProcessorCharacters) handler.getProcessorFor(null, "text()", "text");
|
| /external/autotest/client/common_lib/cros/ |
| interactive_xmlrpc_server.py | 24 an XML-RPC server. This is not a stateless handler object, which means that 226 handler = logging.handlers.SysLogHandler(address='/dev/log') variable 229 handler.setFormatter(formatter) 230 logging.getLogger().addHandler(handler)
|
| /external/autotest/server/cros/dynamic_suite/ |
| dynamic_suite_unittest.py | 134 def handler(signal_number, frame): function in function:DynamicSuiteTest.testReimageAndSIGTERM 135 """Handler for receiving a signal. 142 signal.signal(signal.SIGTERM, handler)
|
| frontend_wrappers.py | 96 def handler(exc): function in function:RetryingAFE.run 127 return retry_util.GenericRetry(handler, max_retry, _run, 130 return retry_util.GenericRetry(handler, max_retry, _run,
|
| /external/autotest/site_utils/ |
| gmail_lib.py | 157 def handler(exc): function in function:send_email 176 handler, retry_count, _run, sleep=RETRY_DELAY,
|
| /external/compiler-rt/test/tsan/ |
| signal_sync2.cc | 25 static void handler(int sig) { function 46 act.sa_handler = handler;
|
| /external/curl/lib/ |
| content_encoding.h | 31 const content_encoding *handler; /* Encoding handler. */ member in struct:contenc_writer_s
|
| /external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/ |
| InvocationHandlerAdapter.java | 36 private MockHandler handler; field in class:InvocationHandlerAdapter 38 InvocationHandlerAdapter(MockHandler handler) { 39 this.handler = handler; 75 return handler.handle(Mockito.framework().getInvocationFactory().createInvocation(mock, 112 return handler.handle(Mockito.framework().getInvocationFactory().createInvocation(proxy, 123 * Get the handler registered with this adapter. 125 * @return handler 128 return handler; 132 * Set a new handler for this adapter [all...] |
| /external/google-breakpad/src/common/dwarf/ |
| dwarf2diehandler.cc | 69 // Finish off this handler now. and edit *PARENT to indicate that 79 // Find a handler for this DIE. 80 DIEHandler *handler; local 83 // Ask the parent to find a handler. 84 handler = parent->handler_->FindChildHandler(offset, tag); 86 // No parent handler means we're not interested in any of our 88 handler = NULL; 90 // This is the root DIE. For a non-root DIE, the parent's handler 92 // handler, so we have a special method on the root DIE handler [all...] |
| /external/javassist/src/main/javassist/util/proxy/ |
| SerializedProxy.java | 35 private MethodHandler handler; field in class:SerializedProxy 39 handler = h; 84 proxy.setHandler(handler);
|
| /external/libxcam/modules/ocl/ |
| cl_image_360_stitch.h | 34 SmartPtr<CLFisheyeHandler> handler; member in struct:XCam::CLFisheyeParams 118 virtual XCamReturn sub_handler_execute_done (SmartPtr<CLImageHandler> &handler);
|
| cl_multi_image_handler.cpp | 2 * cl_multi_image_handler.cpp - CL multi-image handler 39 CLMultiImageHandler::add_image_handler (SmartPtr<CLImageHandler> &handler) 41 _handler_list.push_back (handler); 42 return append_kernels (handler); 89 const SmartPtr<CLImageHandler> &handler, SmartPtr<VideoBuffer> &input, SmartPtr<VideoBuffer> &output) 91 XCAM_ASSERT (handler.ptr ()); 92 return handler->ensure_parameters (input, output); 100 SmartPtr<CLImageHandler> &handler = *i_handler; local 101 XCAM_ASSERT (handler.ptr ()); 102 XCamReturn ret = ensure_handler_parameters (handler, input, output) 119 SmartPtr<CLImageHandler> &handler = *i_handler; local [all...] |
| priority_buffer_queue.h | 33 SmartPtr<CLImageHandler> handler; member in struct:XCam::PriorityBuffer
|
| /external/libxml2/python/tests/ |
| indexes.py | 61 handler = callback(0, 13, 27, 198, 183) variable 62 ctxt = libxml2.createPushParser(handler, "<foo>\n", 6, "test.xml") 84 handler = callback(43, 57, 71, 198, 183) variable 88 ctxt = libxml2.createPushParser(handler, chunk, len(chunk), "test.xml")
|
| pushSAX.py | 43 handler = callback() variable 45 ctxt = libxml2.createPushParser(handler, "<foo", 4, "test.xml")
|
| pushSAXhtml.py | 43 handler = callback() variable 45 ctxt = libxml2.htmlCreatePushParser(handler, "<foo", 4, "test.xml")
|
| sync.py | 43 handler = callback() variable 47 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml") 59 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml") 71 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml") 83 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml") 96 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml") 109 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml") 122 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml")
|
| /external/linux-kselftest/tools/testing/selftests/x86/ |
| vdso_restorer.c | 34 void *handler; member in struct:real_sigaction 58 sa.handler = handler_with_siginfo; 68 printf("[OK]\tSA_SIGINFO handler returned successfully\n"); 70 printf("[FAIL]\tSA_SIGINFO handler was not called\n"); 75 sa.handler = handler_without_siginfo; 83 printf("[OK]\t!SA_SIGINFO handler returned successfully\n"); 85 printf("[FAIL]\t!SA_SIGINFO handler was not called\n");
|