Searched defs:SqlValue (Results 1 – 3 of 3) sorted by relevance
55 struct PERFETTO_EXPORT SqlValue { struct65 SqlValue() = default; argument67 static SqlValue Long(int64_t v) { in Long() argument74 static SqlValue Double(double v) { in Double() argument81 static SqlValue String(const char* v) { in String() argument88 double AsDouble() const { in AsDouble()92 int64_t AsLong() const { in AsLong()96 const char* AsString() const { in AsString()100 const void* AsBytes() const { in AsBytes()105 bool is_null() const { return type == Type::kNull; } in is_null()[all …]
157 inline int SqlValue(const SqlValue& a, const SqlValue& b) { in SqlValue() function
123 using SqlValue = trace_processor::SqlValue; in RawQuery() typedef