OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:xobject
(Results
76 - 100
of
122
) sorted by null
1
2
3
4
5
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
StepPattern.java
33
import org.apache.xpath.objects.
XObject
;
330
public
XObject
execute(XPathContext xctxt, int currentNode)
360
public
XObject
execute(XPathContext xctxt)
376
* @return The result of the expression in the form of a <code>
XObject
</code>.
381
public
XObject
execute(
396
XObject
score;
457
XObject
pred = m_predicates[i].execute(xctxt);
461
if (
XObject
.CLASS_NUMBER == pred.getType())
556
XObject
pred = m_predicates[i].execute(xctxt);
560
if (
XObject
.CLASS_NUMBER == pred.getType()
[
all
...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
NodeSorter.java
32
import org.apache.xpath.objects.
XObject
;
159
XObject
r1 = k.m_selectPat.execute(m_execContext, n1.m_node,
161
XObject
r2 = k.m_selectPat.execute(m_execContext, n2.m_node,
222
XObject
r1 = k.m_selectPat.execute(m_execContext, n1.m_node,
224
XObject
r2 = k.m_selectPat.execute(m_execContext, n2.m_node,
498
XObject
r = k1.m_selectPat.execute(m_execContext, node,
515
if (r.getType() ==
XObject
.CLASS_NODESET)
533
XObject
r2 = k2.m_selectPat.execute(m_execContext, node,
548
XObject
r = k.m_selectPat.execute(m_execContext, node, k.m_namespaceContext);
/external/apache-xml/src/main/java/org/apache/xpath/objects/
XNodeSet.java
405
public
XObject
getFresh()
410
return (
XObject
)cloneWithReset();
472
public boolean compare(
XObject
obj2, Comparator comparator)
479
if (
XObject
.CLASS_NODESET == type)
542
else if (
XObject
.CLASS_BOOLEAN == type)
556
else if (
XObject
.CLASS_NUMBER == type)
583
else if (
XObject
.CLASS_RTREEFRAG == type)
602
else if (
XObject
.CLASS_STRING == type)
644
public boolean lessThan(
XObject
obj2) throws javax.xml.transform.TransformerException
658
public boolean lessThanOrEqual(
XObject
obj2) throws javax.xml.transform.TransformerExceptio
[
all
...]
XBooleanStatic.java
58
public boolean equals(
XObject
obj2)
XNumber.java
32
public class XNumber extends
XObject
393
public boolean equals(
XObject
obj2)
402
if (t ==
XObject
.CLASS_NODESET)
404
else if(t ==
XObject
.CLASS_BOOLEAN)
XRTreeFragSelectWrapper.java
65
public
XObject
execute(XPathContext xctxt)
68
XObject
m_selected;
/external/apache-xml/src/main/java/org/apache/xpath/operations/
Variable.java
35
import org.apache.xpath.objects.
XObject
;
180
* @return The result of the expression in the form of a <code>
XObject
</code>.
185
public
XObject
execute(XPathContext xctxt)
204
public
XObject
execute(XPathContext xctxt, boolean destructiveOK) throws javax.xml.transform.TransformerException
208
XObject
result;
210
//
XObject
result = xctxt.getVariable(m_qname);
VariableSafeAbsRef.java
27
import org.apache.xpath.objects.
XObject
;
58
public
XObject
execute(XPathContext xctxt, boolean destructiveOK)
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExpressionContext.java
25
import org.apache.xpath.objects.
XObject
;
78
public
XObject
getVariableOrParam(org.apache.xml.utils.QName qname)
/external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemParam.java
27
import org.apache.xpath.objects.
XObject
;
117
XObject
var = getValue(transformer, sourceNode);
FuncDocument.java
44
import org.apache.xpath.objects.
XObject
;
69
* @return A valid
XObject
.
73
public
XObject
execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
79
XObject
arg = (
XObject
) this.getArg0().execute(xctxt);
91
XObject
arg2 = arg1Expr.execute(xctxt);
93
if (
XObject
.CLASS_NODESET == arg2.getType())
146
DTMIterator iterator = (
XObject
.CLASS_NODESET == arg.getType())
FuncFormatNumb.java
34
import org.apache.xpath.objects.
XObject
;
49
* @return A valid
XObject
.
53
public
XObject
execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
ElemVariable.java
29
import org.apache.xpath.objects.
XObject
;
245
XObject
var = getValue(transformer, sourceNode);
252
* Get the
XObject
representation of the variable.
257
* @return the
XObject
representation of the variable.
261
public
XObject
getValue(TransformerImpl transformer, int sourceNode)
265
XObject
var;
AVTPartXPath.java
28
import org.apache.xpath.objects.
XObject
;
135
XObject
xobj = m_xpath.execute(xctxt, context, nsNode);
ElemExsltFunction.java
29
import org.apache.xpath.objects.
XObject
;
66
public void execute(TransformerImpl transformer,
XObject
[] args)
ElemApplyTemplates.java
36
import org.apache.xpath.objects.
XObject
;
244
XObject
obj = ewp.getValue(transformer, sourceNode);
342
XObject
obj = vars.getLocalVariable(i, argsFrame);
ElemChoose.java
28
import org.apache.xpath.objects.
XObject
;
/external/skia/src/pdf/
SkPDFFormXObject.cpp
37
insert("Type", new SkPDFName("
XObject
"))->unref();
42
// We invert the initial transform and apply that to the
xobject
so that
/external/apache-xml/src/main/java/org/apache/xpath/
Expression.java
31
import org.apache.xpath.objects.
XObject
;
38
* Expression can be executed to return a {@link org.apache.xpath.objects.
XObject
},
86
* @return The result of the expression in the form of a <code>
XObject
</code>.
91
public
XObject
execute(XPathContext xctxt, int currentNode)
109
* @return The result of the expression in the form of a <code>
XObject
</code>.
114
public
XObject
execute(
130
* @return The result of the expression in the form of a <code>
XObject
</code>.
135
public abstract
XObject
execute(XPathContext xctxt)
147
* @return The result of the expression in the form of a <code>
XObject
</code>.
152
public
XObject
execute(XPathContext xctxt, boolean destructiveOK
[
all
...]
/external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncPosition.java
29
import org.apache.xpath.objects.
XObject
;
116
* @return A valid
XObject
.
120
public
XObject
execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
FuncSystemProperty.java
29
import org.apache.xpath.objects.
XObject
;
52
* @return A valid
XObject
.
56
public
XObject
execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
Function.java
29
import org.apache.xpath.objects.
XObject
;
93
* @return A valid
XObject
.
97
public
XObject
execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpCodes.java
76
*
XObject
342
*
XObject
360
*
XObject
378
*
XObject
397
*
XObject
/external/apache-xml/src/main/java/org/apache/xpath/axes/
UnionChildIterator.java
25
import org.apache.xpath.objects.
XObject
;
122
XObject
score = pnt.execute(xctxt, n);
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathExpressionImpl.java
25
import org.apache.xpath.objects.
XObject
;
99
XObject
resultObject = eval ( item );
103
private
XObject
eval ( Object contextItem )
119
XObject
xobj = null;
341
private Object getResultAsType(
XObject
resultObject, QName returnType )
Completed in 1093 milliseconds
1
2
3
4
5