OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SQLValue
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/platform/sql/
SQLValue.cpp
30
#include "
SQLValue
.h"
34
SQLValue
::
SQLValue
(const
SQLValue
& val)
41
String
SQLValue
::string() const
49
double
SQLValue
::number() const
SQLValue.h
37
class
SQLValue
{
41
SQLValue
() : m_type(NullValue), m_number(0.0) { }
42
SQLValue
(double number) : m_type(NumberValue), m_number(number) { }
43
SQLValue
(const String& s) : m_type(StringValue), m_number(0.0), m_string(s) { }
44
SQLValue
(const
SQLValue
&);
Completed in 113 milliseconds