HomeSort by relevance Sort by last modified time
    Searched defs:execute (Results 176 - 200 of 2877) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/antlr/antlr-3.4/runtime/Python/antlr3/
main.py 103 def execute(self, argv): member in class:_Main
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemApplyImport.java 63 * Execute the xsl:apply-imports transformation.
69 public void execute( method in class:ElemApplyImport
ElemComment.java 63 * Execute the xsl:comment transformation
70 public void execute( method in class:ElemComment
ElemFallback.java 70 public void execute( method in class:ElemFallback
77 * Execute the fallback elements. This must be explicitly called to
ElemMessage.java 112 public void execute( method in class:ElemMessage
ElemParam.java 102 * Execute a variable declaration and push it onto the variable stack.
109 public void execute(TransformerImpl transformer) throws TransformerException method in class:ElemParam
ElemUnknown.java 48 * Execute the fallbacks when an extension is not available.
96 * Execute an unknown element.
97 * Execute fallback if fallback child exists or do nothing
103 public void execute(TransformerImpl transformer) method in class:ElemUnknown
XUnresolvedVariableSimple.java 53 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:XUnresolvedVariableSimple
56 XObject xobj = expr.execute(xctxt);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncConcat.java 29 * Execute the Concat() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncConcat
50 sb.append(m_arg0.execute(xctxt).str());
51 sb.append(m_arg1.execute(xctxt).str());
54 sb.append(m_arg2.execute(xctxt).str());
60 sb.append(m_args[i].execute(xctxt).str());
FuncCount.java 29 * Execute the Count() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncCount
FuncCurrent.java 37 * Execute the current() function.
45 * Execute the function. The function must return
52 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncCurrent
FuncExtElementAvailable.java 32 * Execute the ExtElementAvailable() function.
40 * Execute the function. The function must return
47 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncExtElementAvailable
54 String fullName = m_arg0.execute(xctxt).str();
FuncExtFunctionAvailable.java 31 * Execute the ExtFunctionAvailable() function.
41 * Execute the function. The function must return
48 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncExtFunctionAvailable
55 String fullName = m_arg0.execute(xctxt).str();
FuncLang.java 29 * Execute the Lang() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncLang
47 String lang = m_arg0.execute(xctxt).str();
FuncLast.java 32 * Execute the Last() function.
84 * Execute the function. The function must return
91 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncLast
FuncNamespace.java 29 * Execute the Namespace() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncNamespace
FuncNormalizeSpace.java 31 * Execute the normalize-space() function.
39 * Execute the function. The function must return
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncNormalizeSpace
54 * Execute an expression in the XPath runtime context, and return the
81 XObject obj = execute(xctxt);
FuncQname.java 29 * Execute the Qname() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncQname
FuncSum.java 31 * Execute the Sum() function.
39 * Execute the function. The function must return
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncSum
FuncUnparsedEntityURI.java 36 * Execute the function. The function must return
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncUnparsedEntityURI
46 String name = m_arg0.execute(xctxt).str();
Function.java 90 * Execute an XPath function object. The function must return
97 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:Function
101 System.out.println("Error! Function.execute should not be called!");
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
VariableSafeAbsRef.java 39 * the current document context, and, if it is not, execute the referenced variable's
58 public XObject execute(XPathContext xctxt, boolean destructiveOK) method in class:VariableSafeAbsRef
61 XNodeSet xns = (XNodeSet)super.execute(xctxt, destructiveOK);
  /external/autotest/cli/
label.py 104 def execute(self): member in class:label_list
115 return super(label_list, self).execute(op='get_labels',
server.py 108 @param results: return of the execute call.
169 def execute(self): member in class:server_list
170 """Execute the command.
187 @param results: return of the execute call, a list of server object that
235 def execute(self): member in class:server_create
236 """Execute the command.
257 @param results: return of the execute call, a server object that
268 def execute(self): member in class:server_delete
269 """Execute the command.
290 @param results: return of the execute call
375 def execute(self): member in class:server_modify
    [all...]
stable_version.py 62 @param results: return of the execute call.
77 def execute(self): member in class:stable_version_list
78 """Execute list stable version action.
137 def execute(self): member in class:stable_version_modify
138 """Execute delete stable version action.
174 def execute(self): member in class:stable_version_delete
175 """Execute delete stable version action.

Completed in 783 milliseconds

1 2 3 4 5 6 78 91011>>