HomeSort by relevance Sort by last modified time
    Searched refs:createIndex (Results 1 - 25 of 30) sorted by null

1 2

  /libcore/luni/src/test/java/libcore/icu/
AlphabeticIndexTest.java 22 private static AlphabeticIndex.ImmutableIndex createIndex(Locale locale) {
35 AlphabeticIndex.ImmutableIndex en = createIndex(Locale.ENGLISH);
41 AlphabeticIndex.ImmutableIndex ja = createIndex(Locale.JAPANESE);
70 AlphabeticIndex.ImmutableIndex ko = createIndex(Locale.KOREAN);
80 AlphabeticIndex.ImmutableIndex cs = createIndex(new Locale("cs"));
94 AlphabeticIndex.ImmutableIndex fr = createIndex(Locale.FRENCH);
101 AlphabeticIndex.ImmutableIndex da = createIndex(new Locale("da"));
110 AlphabeticIndex.ImmutableIndex de = createIndex(Locale.GERMAN);
120 AlphabeticIndex.ImmutableIndex th = createIndex(new Locale("th"));
128 AlphabeticIndex.ImmutableIndex ar = createIndex(new Locale("ar"))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBObjectStore.h 77 PassRefPtr<IDBIndex> createIndex(ScriptExecutionContext* context, const String& name, const String& keyPath, const Dictionary& options, ExceptionState& es) { return createIndex(context, name, IDBKeyPath(keyPath), options, es); }
78 PassRefPtr<IDBIndex> createIndex(ScriptExecutionContext* context, const String& name, const Vector<String>& keyPath, const Dictionary& options, ExceptionState& es) { return createIndex(context, name, IDBKeyPath(keyPath), options, es); }
104 PassRefPtr<IDBIndex> createIndex(ScriptExecutionContext*, const String& name, const IDBKeyPath&, const Dictionary&, ExceptionState&);
105 PassRefPtr<IDBIndex> createIndex(ScriptExecutionContext*, const String& name, const IDBKeyPath&, bool unique, bool multiEntry, ExceptionState&);
IDBObjectStore.idl 44 [CallWith=ScriptExecutionContext, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMString> keyPath, optional Dictionary options);
45 [CallWith=ScriptExecutionContext, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPath, optional Dictionary options);
IDBDatabaseBackendInterface.h 60 virtual void createIndex(int64_t transactionId, int64_t objectStoreId, int64_t indexId, const String& name, const IDBKeyPath&, bool unique, bool multiEntry) = 0;
IDBDatabaseTest.cpp 75 virtual void createIndex(int64_t transactionId, int64_t objectStoreId, int64_t indexId, const String& name, const IDBKeyPath&, bool unique, bool multiEntry) OVERRIDE { }
IDBObjectStore.cpp 368 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(ScriptExecutionContext* context, const String& name, const IDBKeyPath& keyPath, const Dictionary& options, ExceptionState& es)
376 return createIndex(context, name, keyPath, unique, multiEntry, es);
379 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(ScriptExecutionContext* context, const String& name, const IDBKeyPath& keyPath, bool unique, bool multiEntry, ExceptionState& es)
381 IDB_TRACE("IDBObjectStore::createIndex");
417 backendDB()->createIndex(m_transaction->id(), id(), indexId, name, keyPath, unique, multiEntry);
IDBRequestTest.cpp 118 virtual void createIndex(int64_t transactionId, int64_t objectStoreId, int64_t indexId, const String& name, const IDBKeyPath&, bool unique, bool multiEntry) OVERRIDE { }
IDBTransactionTest.cpp 78 virtual void createIndex(int64_t transactionId, int64_t objectStoreId, int64_t indexId, const String& name, const IDBKeyPath&, bool unique, bool multiEntry) OVERRIDE { }
  /external/chromium_org/content/test/data/indexeddb/
bug_109187.js 17 window.index1 = store.createIndex('index1Name', 'prop1');
18 window.index2 = store.createIndex(
index_test.js 102 request = objectStore.createIndex('myIndex', 'aKey', {unique: true});
109 function createIndex(expect_error)
113 window.index = objectStore.createIndex('myIndex', 'aKey', {unique: true});
123 createIndex(false);
object_store_test.js 99 objectStore.createIndex('fname_index', 'fname');
100 objectStore.createIndex('lname_index', 'fname');
cursor_prefetch.js 22 store.createIndex('index', '');
  /external/chromium_org/third_party/WebKit/Source/web/
IDBDatabaseBackendProxy.cpp 137 void IDBDatabaseBackendProxy::createIndex(int64_t transactionId, int64_t objectStoreId, int64_t indexId, const String& name, const WebCore::IDBKeyPath& keyPath, bool unique, bool multiEntry)
140 m_webIDBDatabase->createIndex(transactionId, objectStoreId, indexId, name, keyPath, unique, multiEntry);
IDBDatabaseBackendProxy.h 60 virtual void createIndex(int64_t transactionId, int64_t objectStoreId, int64_t indexId, const String& name, const WebCore::IDBKeyPath&, bool unique, bool multiEntry) OVERRIDE;
  /external/chromium_org/content/child/indexed_db/
proxy_webidbdatabase_impl.h 86 virtual void createIndex(long long transactionId,
proxy_webidbdatabase_impl.cc 239 void RendererWebIDBDatabaseImpl::createIndex(
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBDatabase.h 56 virtual void createIndex(long long transactionId, long long objectStoreId, long long indexId, const WebString& name, const WebIDBKeyPath&, bool unique, bool multiEntry) { WEBKIT_ASSERT_NOT_REACHED(); }
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseAuthorizer.h 60 int createIndex(const String& indexName, const String& tableName);
DatabaseAuthorizer.cpp 174 int DatabaseAuthorizer::createIndex(const String&, const String& tableName)
  /packages/apps/Email/src/com/android/email/provider/
DBHelper.java 185 static String createIndex(String tableName, String columnName) {
320 db.execSQL(createIndex(Message.TABLE_NAME, columnName));
407 db.execSQL(createIndex(tableName, MessageChangeLogTable.MESSAGE_KEY));
408 db.execSQL(createIndex(tableName, MessageChangeLogTable.ACCOUNT_KEY));
616 db.execSQL(createIndex(Attachment.TABLE_NAME, AttachmentColumns.MESSAGE_KEY));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/sql/
SQLiteDatabase.cpp 372 return auth->createIndex(parameter1, parameter2);
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /frameworks/base/core/java/android/widget/
GridLayout.java     [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar 

Completed in 581 milliseconds

1 2