Lines Matching refs:fPredicate
40 fPredicate(NULL), in BQuery()
70 delete[] fPredicate; in Clear()
71 fPredicate = NULL; in Clear()
250 if (error == B_OK && !fPredicate) in GetPredicate()
252 if (error == B_OK && length <= strlen(fPredicate)) in GetPredicate()
255 strcpy(buffer, fPredicate); in GetPredicate()
268 if (error == B_OK && !fPredicate) in GetPredicate()
271 predicate->SetTo(fPredicate); in GetPredicate()
281 if (error == B_OK && !fPredicate) in PredicateLength()
285 size = strlen(fPredicate) + 1; in PredicateLength()
307 if (!fPredicate || fDevice < 0) in Fetch()
470 delete[] fPredicate; in _SetPredicate()
471 fPredicate = NULL; in _SetPredicate()
474 fPredicate = new(nothrow) char[strlen(expression) + 1]; in _SetPredicate()
475 if (fPredicate) in _SetPredicate()
476 strcpy(fPredicate, expression); in _SetPredicate()
526 const char* start = fPredicate; in _ParseDates()