/external/webkit/Source/WebCore/platform/sql/ |
D | SQLValue.h | 37 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&);
|
D | SQLValue.cpp | 34 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()
|
D | SQLiteStatement.cpp | 247 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 …]
|
D | SQLiteStatement.h | 35 class SQLValue; variable 51 int bindValue(int index, const SQLValue&); 78 SQLValue getColumnValue(int col);
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSSQLResultSetRowListCustom.cpp | 60 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()
|
D | JSSQLTransactionSyncCustom.cpp | 56 Vector<SQLValue> sqlValues; in executeSql() 77 sqlValues.append(SQLValue()); in executeSql()
|
D | JSSQLTransactionCustom.cpp | 57 Vector<SQLValue> sqlValues; in executeSql() 78 sqlValues.append(SQLValue()); in executeSql()
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8SQLResultSetRowListCustom.cpp | 69 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()
|
D | V8SQLTransactionSyncCustom.cpp | 60 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()
|
D | V8SQLTransactionCustom.cpp | 60 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/ |
D | SQLResultSetRowList.h | 44 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;
|
D | SQLStatement.h | 50 …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;
|
D | SQLStatementSync.h | 49 SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions); 55 Vector<SQLValue> m_arguments;
|
D | SQLTransactionSync.h | 47 class SQLValue; variable 57 …PassRefPtr<SQLResultSet> executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,…
|
D | SQLTransaction.h | 50 class SQLValue; variable 69 void executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,
|
D | SQLStatement.cpp | 46 …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()
|
D | SQLStatementSync.cpp | 46 SQLStatementSync::SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int … in SQLStatementSync()
|
D | SQLTransactionSync.cpp | 74 …SQLTransactionSync::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, Exce… in executeSQL()
|
D | SQLTransaction.cpp | 90 void SQLTransaction::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, Pass… in executeSQL()
|
/external/webkit/Source/WebCore/inspector/ |
D | InspectorDatabaseAgent.cpp | 112 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/ |
D | GeolocationPositionCache.cpp | 168 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/ |
D | Android.mk | 789 platform/sql/SQLValue.cpp \
|
D | WebCore.pro | 2046 platform/sql/SQLValue.h \ 2670 platform/sql/SQLValue.cpp \
|
D | CMakeLists.txt | 1436 platform/sql/SQLValue.cpp
|
D | GNUmakefile.list.am | 2625 Source/WebCore/platform/sql/SQLValue.cpp \ 2626 Source/WebCore/platform/sql/SQLValue.h \
|