Lines Matching refs:SqlValue
157 inline int SqlValue(const SqlValue& a, const SqlValue& b) { in SqlValue() function
159 if (a.type == SqlValue::kLong && b.type == SqlValue::kDouble) in SqlValue()
162 if (a.type == SqlValue::kDouble && b.type == SqlValue::kLong) in SqlValue()
169 case SqlValue::Type::kLong: in SqlValue()
171 case SqlValue::Type::kDouble: in SqlValue()
173 case SqlValue::Type::kString: in SqlValue()
175 case SqlValue::Type::kBytes: in SqlValue()
178 case SqlValue::Type::kNull: in SqlValue()
187 inline int SqlValueComparator(const trace_processor::SqlValue& a, in SqlValueComparator()
188 const trace_processor::SqlValue& b) { in SqlValueComparator()
189 return compare::SqlValue(a, b) < 0; in SqlValueComparator()