Lines Matching defs:ft2
30 bool CompareFunctionTable(const Any::FunctionTable* ft1, const Any::FunctionTable* ft2)
33 return ft1->type == ft2->type && ft1->destroy == ft2->destroy && ft1->getPtr == ft2->getPtr &&
34 ft1->move == ft2->move && ft1->copy == ft2->copy && ft1->getConstPtr == ft2->getConstPtr;
36 return ft1->type_name == ft2->type_name && ft1->destroy == ft2->destroy && ft1->getPtr == ft2->getPtr &&
37 ft1->move == ft2->move && ft1->copy == ft2->copy && ft1->getConstPtr == ft2->getConstPtr;
45 Any::FunctionTable ft2 {
57 return CompareFunctionTable(ft1, &ft2);