HomeSort by relevance Sort by last modified time
    Searched defs:handler (Results 1 - 25 of 1213) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/strace/tests/
sigreturn.c 14 static void handler(int sig) function
29 signal(SIGUSR1, handler);
net-accept-connect.c 11 handler(int sig) function
63 assert(signal(SIGUSR1, handler) != SIG_ERR);
  /external/toybox/toys/other/
timeout.c 40 static void handler(int i) function
48 xsignal(SIGALRM, handler);
69 xsignal(SIGALRM, handler);
  /external/valgrind/none/tests/amd64/
ssse3_misaligned.c 19 void handler ( int signo ) function
28 signal(SIGSEGV, handler);
  /external/valgrind/none/tests/x86/
badseg.c 5 static void handler(int sig, siginfo_t *info, void *v) function
17 sa.sa_sigaction = handler;
ssse3_misaligned.c 19 void handler ( int signo ) function
28 signal(SIGSEGV, handler);
  /external/mockito/src/org/mockito/internal/handler/
MockHandlerFactory.java 5 package org.mockito.internal.handler;
16 InternalMockHandler handler = new MockHandlerImpl(settings); local
17 InternalMockHandler nullResultGuardian = new NullResultGuardian(handler);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorAttributeSet.java 42 * @param handler The calling StylesheetHandler/TemplatesBuilder.
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
67 eat.setLocaterInfo(handler.getLocator());
70 eat.setPrefixes(handler.getNamespaceSupport());
77 eat.setDOMBackPointer(handler.getOriginatingNode());
78 setPropertiesFromAttributes(handler, rawName, attributes, eat);
79 handler.getStylesheet().setAttributeSet(eat);
81 // handler.pushElemTemplateElement(eat);
82 ElemTemplateElement parent = handler.getElemTemplateElement();
85 handler.pushElemTemplateElement(eat)
    [all...]
ProcessorStylesheetElement.java 46 * @param handler The calling StylesheetHandler/TemplatesBuilder.
60 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
64 super.startElement(handler, uri, localName, rawName, attributes);
67 int stylesheetType = handler.getStylesheetType();
74 stylesheet = getStylesheetRoot(handler);
83 Stylesheet parent = handler.getStylesheet();
101 stylesheet.setDOMBackPointer(handler.getOriginatingNode());
102 stylesheet.setLocaterInfo(handler.getLocator());
104 stylesheet.setPrefixes(handler.getNamespaceSupport());
105 handler.pushStylesheet(stylesheet)
    [all...]
ProcessorCharacters.java 45 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
47 public void startNonText(StylesheetHandler handler) throws org.xml.sax.SAXException
49 if (this == handler.getCurrentProcessor())
51 handler.popProcessor();
59 || handler.isSpacePreserve())
64 elem.setLocaterInfo(handler.getLocator());
67 elem.setPrefixes(handler.getNamespaceSupport());
85 ElemTemplateElement parent = handler.getElemTemplateElement();
100 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
110 StylesheetHandler handler, char ch[], int start, int length
    [all...]
ProcessorTemplateElem.java 42 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
49 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
53 super.startElement(handler, uri, localName, rawName, attributes);
56 // ElemTemplateElement parent = handler.getElemTemplateElement();
65 elem.setDOMBackPointer(handler.getOriginatingNode());
66 elem.setLocaterInfo(handler.getLocator());
67 elem.setPrefixes(handler.getNamespaceSupport());
71 handler.error(XSLTErrorResources.ER_FAILED_CREATING_ELEMTMPL, null, ie);//"Failed creating ElemTemplateElement instance!", ie);
75 handler.error(XSLTErrorResources.ER_FAILED_CREATING_ELEMTMPL, null, iae);//"Failed creating ElemTemplateElement instance!", iae);
78 setPropertiesFromAttributes(handler, rawName, attributes, elem)
    [all...]