Searched defs:SQLValue (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/sql/
H A DSQLValue.cpp30 #include "SQLValue.h"
34 SQLValue::SQLValue(const SQLValue& val) function in class:WebCore::SQLValue
41 String SQLValue::string() const
49 double SQLValue::number() const
H A DSQLValue.h37 class SQLValue { class in namespace:WebCore
41 SQLValue() : m_type(NullValue), m_number(0.0) { } function in class:WebCore::SQLValue
42 SQLValue(double number) : m_type(NumberValue), m_number(number) { } function in class:WebCore::SQLValue
43 SQLValue(const String& s) : m_type(StringValue), m_number(0.0), m_string(s) { } function in class:WebCore::SQLValue
44 SQLValue(const SQLValue&);

Completed in 44 milliseconds