Searched refs:SQLValue (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/platform/sql/
H A DSQLValue.cpp30 #include "core/platform/sql/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&);
H A DSQLiteStatement.h35 class SQLValue;
51 int bindValue(int index, const SQLValue&);
79 SQLValue getColumnValue(int col);
H A DSQLiteStatement.cpp31 #include "core/platform/sql/SQLValue.h"
230 int SQLiteStatement::bindValue(int index, const SQLValue& value)
233 case SQLValue::StringValue:
235 case SQLValue::NumberValue:
237 case SQLValue::NullValue:
295 SQLValue SQLiteStatement::getColumnValue(int col)
300 return SQLValue();
302 return SQLValue();
308 case SQLITE_INTEGER: // SQLValue and JS don't represent integers, so use FLOAT -case
310 return SQLValue(sqlite3_value_doubl
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DSQLStatementSync.h34 #include "core/platform/sql/SQLValue.h"
48 SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions);
54 Vector<SQLValue> m_arguments;
H A DSQLResultSetRowList.h33 #include "core/platform/sql/SQLValue.h"
44 const Vector<SQLValue>& values() const { return m_result; }
47 void addResult(const SQLValue& result) { m_result.append(result); }
58 Vector<SQLValue> m_result;
H A DSQLStatementBackend.h31 #include "core/platform/sql/SQLValue.h"
48 const String& sqlStatement, const Vector<SQLValue>& arguments, int permissions);
65 const Vector<SQLValue>& arguments, int permissions);
72 Vector<SQLValue> m_arguments;
H A DSQLTransactionBackendSync.h47 class SQLValue;
56 PassRefPtr<SQLResultSet> executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, ExceptionState&);
H A DAbstractSQLTransactionBackend.h29 #include "core/platform/sql/SQLValue.h"
51 const Vector<SQLValue>& arguments, int permissions) = 0;
H A DSQLTransaction.h50 class SQLValue;
61 void executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,
H A DSQLTransactionBackend.h48 class SQLValue;
83 const Vector<SQLValue>& arguments, int permissions) OVERRIDE;
H A DSQLStatementSync.cpp35 #include "core/platform/sql/SQLValue.h"
46 SQLStatementSync::SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions)
H A DSQLStatementBackend.cpp32 #include "core/platform/sql/SQLValue.h"
76 const String& statement, const Vector<SQLValue>& arguments, int permissions)
82 const String& statement, const Vector<SQLValue>& arguments, int permissions)
H A DSQLTransaction.cpp254 void SQLTransaction::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback> callback, PassRefPtr<SQLStatementErrorCallback> callbackError, ExceptionState& es)
H A DSQLTransactionBackendSync.cpp38 #include "core/platform/sql/SQLValue.h"
73 PassRefPtr<SQLResultSet> SQLTransactionBackendSync::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, ExceptionState& es)
H A DSQLTransactionBackend.cpp33 #include "core/platform/sql/SQLValue.h"
522 const String& sqlStatement, const Vector<SQLValue>& arguments, int permissions)
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8SQLResultSetRowListCustom.cpp65 const SQLValue& sqlValue = rowList->values()[valuesIndex + i];
68 case SQLValue::StringValue:
71 case SQLValue::NullValue:
74 case SQLValue::NumberValue:
H A DV8SQLTransactionSyncCustom.cpp38 #include "core/platform/sql/SQLValue.h"
56 Vector<SQLValue> sqlValues;
78 sqlValues.append(SQLValue());
81 sqlValues.append(SQLValue(sqlValue));
84 sqlValues.append(SQLValue(sqlValue));
H A DV8SQLTransactionCustom.cpp40 #include "core/platform/sql/SQLValue.h"
57 Vector<SQLValue> sqlValues;
79 sqlValues.append(SQLValue());
82 sqlValues.append(SQLValue(sqlValue));
85 sqlValues.append(SQLValue(sqlValue));
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDatabaseAgent.cpp42 #include "core/platform/sql/SQLValue.h"
91 const Vector<SQLValue>& data = rowList->values();
93 const SQLValue& value = rowList->values()[i];
95 case SQLValue::StringValue: values->addItem(JSONString::create(value.string())); break;
96 case SQLValue::NumberValue: values->addItem(JSONBasicValue::create(value.number())); break;
97 case SQLValue::NullValue: values->addItem(JSONValue::null()); break;
145 Vector<SQLValue> sqlValues;
/external/chromium_org/third_party/WebKit/Source/core/
H A Dwebcore_platform.target.darwin-arm.mk313 third_party/WebKit/Source/core/platform/sql/SQLValue.cpp \
H A Dwebcore_platform.target.darwin-mips.mk313 third_party/WebKit/Source/core/platform/sql/SQLValue.cpp \
H A Dwebcore_platform.target.darwin-x86.mk313 third_party/WebKit/Source/core/platform/sql/SQLValue.cpp \
H A Dwebcore_platform.target.linux-arm.mk313 third_party/WebKit/Source/core/platform/sql/SQLValue.cpp \
H A Dwebcore_platform.target.linux-mips.mk313 third_party/WebKit/Source/core/platform/sql/SQLValue.cpp \

Completed in 328 milliseconds

12