/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/ |
D | SQLValue.h | 36 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&);
|
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 | 230 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 …]
|
D | SQLiteStatement.h | 35 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/ |
D | V8SQLResultSetRowListCustom.cpp | 64 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()
|
D | V8SQLTransactionSyncCustom.cpp | 56 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()
|
D | V8SQLTransactionCustom.cpp | 56 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/ |
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() 58 Vector<SQLValue> m_result;
|
D | SQLStatementBackend.h | 48 const String& sqlStatement, const Vector<SQLValue>& arguments, int permissions); 64 const Vector<SQLValue>& arguments, int permissions); 71 Vector<SQLValue> m_arguments;
|
D | SQLStatementSync.h | 48 SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions); 54 Vector<SQLValue> m_arguments;
|
D | SQLTransactionBackendSync.h | 47 class SQLValue; variable 56 …PassRefPtr<SQLResultSet> executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,…
|
D | SQLTransaction.h | 50 class SQLValue; variable 61 void executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,
|
D | SQLTransactionBackend.h | 48 class SQLValue; variable 83 const Vector<SQLValue>& arguments, int permissions) OVERRIDE;
|
D | AbstractSQLTransactionBackend.h | 51 const Vector<SQLValue>& arguments, int permissions) = 0;
|
D | SQLStatementBackend.cpp | 75 const String& statement, const Vector<SQLValue>& arguments, int permissions) in create() 81 const String& statement, const Vector<SQLValue>& arguments, int permissions) in SQLStatementBackend()
|
D | SQLStatementSync.cpp | 45 SQLStatementSync::SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int … in SQLStatementSync()
|
D | SQLTransactionBackendSync.cpp | 72 …sactionBackendSync::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, Exce… in executeSQL()
|
D | SQLTransaction.cpp | 254 void SQLTransaction::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, Pass… in executeSQL()
|
D | SQLTransactionBackend.cpp | 516 const String& sqlStatement, const Vector<SQLValue>& arguments, int permissions) in executeSQL()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorDatabaseAgent.cpp | 90 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/ |
D | modules.target.linux-arm.mk | 267 third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp \
|
D | modules.gypi | 725 'webdatabase/sqlite/SQLValue.cpp',
|
D | modules.target.darwin-arm.mk | 267 third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp \
|
D | modules.target.darwin-x86.mk | 267 third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp \
|
D | modules.target.darwin-mips.mk | 267 third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp \
|