Symbol: StringNode
headers/private/storage/QueryPredicate.h
86
class StringNode : public LeafNode {
headers/private/storage/QueryPredicate.h
88
StringNode(const char *value, bool caseInsensitive = false);
src/kits/storage/Query.cpp
170
return _PushNode(new(nothrow) StringNode(value, caseInsensitive), true);
src/kits/storage/QueryPredicate.cpp
191
StringNode::StringNode(const char *value, bool caseInsensitive)
src/kits/storage/QueryPredicate.cpp
230
StringNode::GetString(BString &predicate)
src/kits/storage/QueryPredicate.cpp
390
if (StringNode *strNode = dynamic_cast<StringNode*>(fChild2)) {
src/kits/storage/QueryPredicate.cpp
393
error = StringNode(value.String()).GetString(childString2);
src/kits/storage/QueryPredicate.cpp
401
if (StringNode *strNode = dynamic_cast<StringNode*>(fChild2)) {
src/kits/storage/QueryPredicate.cpp
404
error = StringNode(value.String()).GetString(childString2);
src/kits/storage/QueryPredicate.cpp
412
if (StringNode *strNode = dynamic_cast<StringNode*>(fChild2)) {
src/kits/storage/QueryPredicate.cpp
415
error = StringNode(value.String()).GetString(childString2);
src/tests/kits/storage/QueryTest.cpp
122
StringNode(BString v, bool caseInsensitive = false)
src/tests/kits/storage/QueryTest.cpp
324
StringNode *strNode = dynamic_cast<StringNode*>(right);
src/tests/kits/storage/QueryTest.cpp
326
rightString = StringNode(BString("*") << strNode->value
src/tests/kits/storage/QueryTest.cpp
334
StringNode *strNode = dynamic_cast<StringNode*>(right);
src/tests/kits/storage/QueryTest.cpp
336
rightString = StringNode(BString(strNode->value) << "*")
src/tests/kits/storage/QueryTest.cpp
344
StringNode *strNode = dynamic_cast<StringNode*>(right);
src/tests/kits/storage/QueryTest.cpp
346
rightString = StringNode(BString("*") << strNode->value)
src/tests/kits/storage/QueryTest.cpp
654
new StringNode("some string")
src/tests/kits/storage/QueryTest.cpp
705
TestPredicate(StringNode("some \" chars ' to \\ be ( escaped ) or "
src/tests/kits/storage/QueryTest.cpp
707
TestPredicate(StringNode("some \" chars ' to \\ be ( escaped ) or "
src/tests/kits/storage/QueryTest.cpp
732
TestPredicate(OpNode(B_NOT, new StringNode("some string")));
src/tests/kits/storage/QueryTest.cpp
733
TestPredicate(OpNode(B_NOT, new StringNode("some string", true)));
src/tests/kits/storage/QueryTest.cpp
742
new StringNode("hello")
src/tests/kits/storage/QueryTest.cpp
761
new StringNode("hello"),
src/tests/kits/storage/QueryTest.cpp
774
TestPredicate(ListNode(new Int32Node(42), new StringNode("hello!")),
src/tests/kits/storage/QueryTest.cpp
777
new StringNode("hello"),
src/tests/kits/storage/QueryTest.cpp
786
new StringNode("hello")
src/tests/kits/storage/QueryTest.cpp
788
StringNode predicate2("I'm the loser. :ยด-(");
src/tests/kits/storage/QueryTest.cpp
802
new StringNode("hello")
src/tests/kits/storage/QueryTest.cpp
804
StringNode predicate2("I'm the winner. :-)");
src/tests/kits/storage/QueryTest.cpp
820
new StringNode("hello")
src/tests/kits/storage/QueryTest.cpp
822
StringNode predicate2("I'm the winner. :-)");