Home
last modified time | relevance | path

Searched refs:to_sqlite_value (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/executorch/backends/apple/coreml/runtime/kvstore/
H A Dkey_value_store.hpp32 static sqlite::Value to_sqlite_value(FROM&& value);
42 static inline Value to_sqlite_value(int value) { in to_sqlite_value() function
56 static inline Value to_sqlite_value(int value) { in to_sqlite_value() function
70 static inline Value to_sqlite_value(size_t value) { in to_sqlite_value() function
84 static inline Value to_sqlite_value(double value) { in to_sqlite_value() function
98 static inline sqlite::Value to_sqlite_value(const std::string& value) { in to_sqlite_value() function
289 …if (!impl_->get(KeyConverter::to_sqlite_value(std::forward<T>(key)), fn, error, update_access_stat… in get()
303 return impl_->exists(KeyConverter::to_sqlite_value(std::forward<T>(key)), error); in exists()
314 return impl_->put(KeyConverter::to_sqlite_value(std::forward<T>(key)), in put()
315 ValueConverter::to_sqlite_value(std::forward<U>(value)), in put()
[all …]
H A Djson_key_value_store.hpp32 inline static sqlite::Value to_sqlite_value(const T& value) noexcept { in to_sqlite_value() function