OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_predicates
(Results
1 - 6
of
6
) sorted by null
/external/apache-xml/src/main/java/org/apache/xpath/axes/
PredicatedNodeTest.java
119
return (null ==
m_predicates
) ? 0 :
m_predicates
.length;
141
newPredicates[i] =
m_predicates
[i];
143
m_predicates
= newPredicates;
146
m_predicates
= null;
167
m_predicates
= compiler.getCompiledPredicates(pos);
168
if(null !=
m_predicates
)
170
for(int i = 0; i <
m_predicates
.length; i++)
172
m_predicates
[i].exprSetParent(this);
188
return
m_predicates
[index]
608
private Expression[]
m_predicates
;
field in class:PredicatedNodeTest
[
all
...]
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
StepPattern.java
163
if (null !=
m_predicates
)
165
for (int i = 0; i <
m_predicates
.length; i++)
167
m_predicates
[i].fixupVariables(vars, globalsSize);
211
//
m_predicates
= predicates;
220
return
m_predicates
;
227
Expression[]
m_predicates
;
field in class:StepPattern
262
return
m_predicates
[i];
273
return (null ==
m_predicates
) ? 0 :
m_predicates
.length;
286
m_predicates
= predicates
[
all
...]
/external/webkit/Source/WebCore/xml/
XPathStep.cpp
47
,
m_predicates
(predicates)
53
deleteAllValues(
m_predicates
);
63
for (size_t i = 0; i <
m_predicates
.size(); ++i) {
64
Predicate* predicate =
m_predicates
[i];
70
swap(remainingPredicates,
m_predicates
);
79
&& !first->
m_predicates
.size()
90
swap(second->
m_predicates
, first->
m_predicates
);
99
for (size_t i = 0; i <
m_predicates
.size(); ++i) {
100
Predicate* predicate =
m_predicates
[i]
[
all
...]
XPathPath.cpp
42
: m_expr(expr),
m_predicates
(predicates)
52
deleteAllValues(
m_predicates
);
63
for (unsigned i = 0; i <
m_predicates
.size(); i++) {
74
if (
m_predicates
[i]->evaluate())
XPathPath.h
53
Vector<Predicate*>
m_predicates
;
member in class:WebCore::XPath::Filter
XPathStep.h
99
Vector<Predicate*>
m_predicates
;
member in class:WebCore::XPath::Step
Completed in 221 milliseconds