Home
last modified time | relevance | path

Searched refs:SQLValue (Results 1 – 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
DSQLValue.h36 class SQLValue {
40 SQLValue() : m_type(NullValue), m_number(0.0) { } in SQLValue() function
41 SQLValue(double number) : m_type(NumberValue), m_number(number) { } in SQLValue() function
42 SQLValue(const String& s) : m_type(StringValue), m_number(0.0), m_string(s) { } in SQLValue() function
43 SQLValue(const SQLValue&);
DSQLValue.cpp34 SQLValue::SQLValue(const SQLValue& val) in SQLValue() function in WebCore::SQLValue
41 String SQLValue::string() const in string()
49 double SQLValue::number() const in number()
DSQLiteStatement.cpp230 int SQLiteStatement::bindValue(int index, const SQLValue& value) in bindValue()
233 case SQLValue::StringValue: in bindValue()
235 case SQLValue::NumberValue: in bindValue()
237 case SQLValue::NullValue: in bindValue()
295 SQLValue SQLiteStatement::getColumnValue(int col) in getColumnValue()
300 return SQLValue(); in getColumnValue()
302 return SQLValue(); in getColumnValue()
310 return SQLValue(sqlite3_value_double(value)); in getColumnValue()
315 return SQLValue(StringImpl::create8BitIfPossible(string, length)); in getColumnValue()
318 return SQLValue(); in getColumnValue()
[all …]
DSQLiteStatement.h35 class SQLValue; variable
51 int bindValue(int index, const SQLValue&);
79 SQLValue getColumnValue(int col);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
DV8SQLResultSetRowListCustom.cpp64 const SQLValue& sqlValue = rowList->values()[valuesIndex + i]; in itemMethodCustom()
67 case SQLValue::StringValue: in itemMethodCustom()
70 case SQLValue::NullValue: in itemMethodCustom()
73 case SQLValue::NumberValue: in itemMethodCustom()
DV8SQLTransactionSyncCustom.cpp56 Vector<SQLValue> sqlValues; in executeSqlMethodCustom()
78 sqlValues.append(SQLValue()); in executeSqlMethodCustom()
81 sqlValues.append(SQLValue(sqlValue)); in executeSqlMethodCustom()
84 sqlValues.append(SQLValue(sqlValue)); in executeSqlMethodCustom()
DV8SQLTransactionCustom.cpp56 Vector<SQLValue> sqlValues; in executeSqlMethodCustom()
78 sqlValues.append(SQLValue()); in executeSqlMethodCustom()
81 sqlValues.append(SQLValue(sqlValue)); in executeSqlMethodCustom()
84 sqlValues.append(SQLValue(sqlValue)); in executeSqlMethodCustom()
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DSQLResultSetRowList.h44 const Vector<SQLValue>& values() const { return m_result; } in values()
47 void addResult(const SQLValue& result) { m_result.append(result); } in addResult()
58 Vector<SQLValue> m_result;
DSQLStatementBackend.h48 const String& sqlStatement, const Vector<SQLValue>& arguments, int permissions);
64 const Vector<SQLValue>& arguments, int permissions);
71 Vector<SQLValue> m_arguments;
DSQLStatementSync.h48 SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions);
54 Vector<SQLValue> m_arguments;
DSQLTransactionBackendSync.h47 class SQLValue; variable
56 …PassRefPtr<SQLResultSet> executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,…
DSQLTransaction.h50 class SQLValue; variable
61 void executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,
DSQLTransactionBackend.h48 class SQLValue; variable
83 const Vector<SQLValue>& arguments, int permissions) OVERRIDE;
DAbstractSQLTransactionBackend.h51 const Vector<SQLValue>& arguments, int permissions) = 0;
DSQLStatementBackend.cpp75 const String& statement, const Vector<SQLValue>& arguments, int permissions) in create()
81 const String& statement, const Vector<SQLValue>& arguments, int permissions) in SQLStatementBackend()
DSQLStatementSync.cpp45 SQLStatementSync::SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int … in SQLStatementSync()
DSQLTransactionBackendSync.cpp72 …sactionBackendSync::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, Exce… in executeSQL()
DSQLTransaction.cpp254 void SQLTransaction::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, Pass… in executeSQL()
DSQLTransactionBackend.cpp516 const String& sqlStatement, const Vector<SQLValue>& arguments, int permissions) in executeSQL()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorDatabaseAgent.cpp90 const Vector<SQLValue>& data = rowList->values(); in handleEvent()
92 const SQLValue& value = rowList->values()[i]; in handleEvent()
94 case SQLValue::StringValue: values->addItem(JSONString::create(value.string())); break; in handleEvent()
95 … case SQLValue::NumberValue: values->addItem(JSONBasicValue::create(value.number())); break; in handleEvent()
96 case SQLValue::NullValue: values->addItem(JSONValue::null()); break; in handleEvent()
144 Vector<SQLValue> sqlValues; in handleEvent()
/external/chromium_org/third_party/WebKit/Source/modules/
Dmodules.target.linux-arm.mk267 third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp \
Dmodules.gypi725 'webdatabase/sqlite/SQLValue.cpp',
Dmodules.target.darwin-arm.mk267 third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp \
Dmodules.target.darwin-x86.mk267 third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp \
Dmodules.target.darwin-mips.mk267 third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp \

12