Symbol: PredicateNode
src/tests/kits/storage/QueryTest.cpp
120
class StringNode : public PredicateNode {
src/tests/kits/storage/QueryTest.cpp
165
class DateNode : public PredicateNode {
src/tests/kits/storage/QueryTest.cpp
189
class AttributeNode : public PredicateNode {
src/tests/kits/storage/QueryTest.cpp
220
class ListNode : public PredicateNode {
src/tests/kits/storage/QueryTest.cpp
222
ListNode(PredicateNode *child1 = NULL, PredicateNode *child2 = NULL,
src/tests/kits/storage/QueryTest.cpp
223
PredicateNode *child3 = NULL, PredicateNode *child4 = NULL,
src/tests/kits/storage/QueryTest.cpp
224
PredicateNode *child5 = NULL, PredicateNode *child6 = NULL)
src/tests/kits/storage/QueryTest.cpp
237
for (int32 i = 0; PredicateNode *child = childAt(i); i++)
src/tests/kits/storage/QueryTest.cpp
244
for (int32 i = 0; PredicateNode *child = childAt(i); i++) {
src/tests/kits/storage/QueryTest.cpp
257
ListNode &addChild(PredicateNode *child)
src/tests/kits/storage/QueryTest.cpp
264
PredicateNode *childAt(int32 index) const
src/tests/kits/storage/QueryTest.cpp
266
return (PredicateNode*)children.ItemAt(index);
src/tests/kits/storage/QueryTest.cpp
269
BObjectList<PredicateNode> children;
src/tests/kits/storage/QueryTest.cpp
276
OpNode(query_op op, PredicateNode *left, PredicateNode *right = NULL)
src/tests/kits/storage/QueryTest.cpp
291
PredicateNode *left = childAt(0);
src/tests/kits/storage/QueryTest.cpp
292
PredicateNode *right = childAt(1);
src/tests/kits/storage/QueryTest.cpp
577
TestPredicate(const PredicateNode &predicateNode, status_t pushResult = B_OK,
src/tests/kits/storage/QueryTest.cpp
79
class ValueNode : public PredicateNode {