Home
last modified time | relevance | path

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

12

/external/webkit/Source/WebCore/platform/sql/
DSQLValue.h37 class SQLValue {
41 SQLValue() : m_type(NullValue), m_number(0.0) { } in SQLValue() function
42 SQLValue(double number) : m_type(NumberValue), m_number(number) { } in SQLValue() function
43 SQLValue(const String& s) : m_type(StringValue), m_number(0.0), m_string(s) { } in SQLValue() function
44 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.cpp247 int SQLiteStatement::bindValue(int index, const SQLValue& value) in bindValue()
250 case SQLValue::StringValue: in bindValue()
252 case SQLValue::NumberValue: in bindValue()
254 case SQLValue::NullValue: in bindValue()
301 SQLValue SQLiteStatement::getColumnValue(int col) in getColumnValue()
306 return SQLValue(); in getColumnValue()
308 return SQLValue(); in getColumnValue()
316 return SQLValue(sqlite3_value_double(value)); in getColumnValue()
319 return SQLValue(String(reinterpret_cast<const UChar*>(sqlite3_value_text16(value)))); in getColumnValue()
321 return SQLValue(); in getColumnValue()
[all …]
DSQLiteStatement.h35 class SQLValue; variable
51 int bindValue(int index, const SQLValue&);
78 SQLValue getColumnValue(int col);
/external/webkit/Source/WebCore/bindings/js/
DJSSQLResultSetRowListCustom.cpp60 const SQLValue& value = m_impl->values()[valuesIndex + i]; in item()
64 case SQLValue::StringValue: in item()
67 case SQLValue::NullValue: in item()
70 case SQLValue::NumberValue: in item()
DJSSQLTransactionSyncCustom.cpp56 Vector<SQLValue> sqlValues; in executeSql()
77 sqlValues.append(SQLValue()); in executeSql()
DJSSQLTransactionCustom.cpp57 Vector<SQLValue> sqlValues; in executeSql()
78 sqlValues.append(SQLValue()); in executeSql()
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8SQLResultSetRowListCustom.cpp69 const SQLValue& sqlValue = rowList->values()[valuesIndex + i]; in itemCallback()
72 case SQLValue::StringValue: in itemCallback()
75 case SQLValue::NullValue: in itemCallback()
78 case SQLValue::NumberValue: in itemCallback()
DV8SQLTransactionSyncCustom.cpp60 Vector<SQLValue> sqlValues; in executeSqlCallback()
80 sqlValues.append(SQLValue()); in executeSqlCallback()
83 sqlValues.append(SQLValue(sqlValue)); in executeSqlCallback()
86 sqlValues.append(SQLValue(sqlValue)); in executeSqlCallback()
DV8SQLTransactionCustom.cpp60 Vector<SQLValue> sqlValues; in executeSqlCallback()
80 sqlValues.append(SQLValue()); in executeSqlCallback()
83 sqlValues.append(SQLValue(sqlValue)); in executeSqlCallback()
86 sqlValues.append(SQLValue(sqlValue)); in executeSqlCallback()
/external/webkit/Source/WebCore/storage/
DSQLResultSetRowList.h44 const Vector<SQLValue>& values() const { return m_result; } in values()
47 void addResult(const SQLValue& result) { m_result.append(result); } in addResult()
55 Vector<SQLValue> m_result;
DSQLStatement.h50 …static PassRefPtr<SQLStatement> create(Database*, const String&, const Vector<SQLValue>&, PassRefP…
65 …SQLStatement(Database*, const String& statement, const Vector<SQLValue>& arguments, PassRefPtr<SQL…
71 Vector<SQLValue> m_arguments;
DSQLStatementSync.h49 SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions);
55 Vector<SQLValue> m_arguments;
DSQLTransactionSync.h47 class SQLValue; variable
57 …PassRefPtr<SQLResultSet> executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,…
DSQLTransaction.h50 class SQLValue; variable
69 void executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,
DSQLStatement.cpp46 …ement::create(Database* database, const String& statement, const Vector<SQLValue>& arguments, Pass… in create()
51 SQLStatement::SQLStatement(Database* database, const String& statement, const Vector<SQLValue>& arg… in SQLStatement()
DSQLStatementSync.cpp46 SQLStatementSync::SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int … in SQLStatementSync()
DSQLTransactionSync.cpp74 …SQLTransactionSync::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, Exce… in executeSQL()
DSQLTransaction.cpp90 void SQLTransaction::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, Pass… in executeSQL()
/external/webkit/Source/WebCore/inspector/
DInspectorDatabaseAgent.cpp112 const Vector<SQLValue>& data = rowList->values(); in handleEvent()
114 const SQLValue& value = rowList->values()[i]; in handleEvent()
116 case SQLValue::StringValue: values->pushString(value.string()); break; in handleEvent()
117 case SQLValue::NumberValue: values->pushNumber(value.number()); break; in handleEvent()
118 case SQLValue::NullValue: values->pushValue(InspectorValue::null()); break; in handleEvent()
170 Vector<SQLValue> sqlValues; in handleEvent()
/external/webkit/Source/WebCore/page/
DGeolocationPositionCache.cpp168 bool providesAltitude = statement.getColumnValue(2).type() != SQLValue::NullValue; in readFromDatabaseImpl()
169 bool providesAltitudeAccuracy = statement.getColumnValue(4).type() != SQLValue::NullValue; in readFromDatabaseImpl()
170 bool providesHeading = statement.getColumnValue(5).type() != SQLValue::NullValue; in readFromDatabaseImpl()
171 bool providesSpeed = statement.getColumnValue(6).type() != SQLValue::NullValue; in readFromDatabaseImpl()
/external/webkit/Source/WebCore/
DAndroid.mk789 platform/sql/SQLValue.cpp \
DWebCore.pro2046 platform/sql/SQLValue.h \
2670 platform/sql/SQLValue.cpp \
DCMakeLists.txt1436 platform/sql/SQLValue.cpp
DGNUmakefile.list.am2625 Source/WebCore/platform/sql/SQLValue.cpp \
2626 Source/WebCore/platform/sql/SQLValue.h \

12