/external/chromium_org/third_party/WebKit/public/platform/ |
WebIDBCursor.h | 49 virtual void continueFunction(const WebIDBKey&, const WebIDBKey& primaryKey, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
|
WebIDBCallbacks.h | 51 virtual void onSuccess(WebIDBCursor*, const WebIDBKey&, const WebIDBKey& primaryKey, const WebData&) { BLINK_ASSERT_NOT_REACHED(); } 58 virtual void onSuccess(const WebIDBKey&, const WebIDBKey& primaryKey, const WebData&) { BLINK_ASSERT_NOT_REACHED(); }
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
KeyDetector.java | 100 Key primaryKey = null; 112 if (primaryKey == null || distance < minDistance 113 || key.getCode() > primaryKey.getCode()) { 115 primaryKey = key; 118 return primaryKey;
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBCursor.h | 64 ScriptValue primaryKey(ExecutionContext*); 71 void continuePrimaryKey(ExecutionContext*, const ScriptValue& key, const ScriptValue& primaryKey, ExceptionState&); 78 void continueFunction(PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, ExceptionState&); 81 void setValueReady(PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value);
|
IDBCursor.idl | 30 [CallWith=ExecutionContext, CachedAttribute=isPrimaryKeyDirty] readonly attribute any primaryKey; 36 [CallWith=ExecutionContext, RaisesException, RuntimeEnabled=IndexedDBExperimental] void continuePrimaryKey(any key, any primaryKey);
|
WebIDBCallbacksImpl.cpp | 81 void WebIDBCallbacksImpl::onSuccess(WebIDBCursor* cursor, const WebIDBKey& key, const WebIDBKey& primaryKey, const WebData& value) 83 m_request->onSuccess(adoptPtr(cursor), key, primaryKey, value); 116 void WebIDBCallbacksImpl::onSuccess(const WebIDBKey& key, const WebIDBKey& primaryKey, const WebData& value) 118 m_request->onSuccess(key, primaryKey, value);
|
WebIDBCallbacksImpl.h | 60 virtual void onSuccess(blink::WebIDBCursor*, const blink::WebIDBKey&, const blink::WebIDBKey& primaryKey, const blink::WebData&); 67 virtual void onSuccess(const blink::WebIDBKey&, const blink::WebIDBKey& primaryKey, const blink::WebData&);
|
IDBCursor.cpp | 190 RefPtr<IDBKey> primaryKey = scriptValueToIDBKey(&requestState, primaryKeyValue); 191 if (!key->isValid() || !primaryKey->isValid()) { 195 continueFunction(key.release(), primaryKey.release(), exceptionState); 198 void IDBCursor::continueFunction(PassRefPtr<IDBKey> key, PassRefPtr<IDBKey> primaryKey, ExceptionState& exceptionState) 200 ASSERT(!primaryKey || (key && primaryKey)); 225 || (primaryKey && m_key->isEqual(key.get()) && m_primaryKey->isLessThan(primaryKey.get())); 233 || (primaryKey && key->isEqual(m_key.get()) && primaryKey->isLessThan(m_primaryKey.get())) [all...] |
IDBRequest.cpp | 176 void IDBRequest::setResultCursor(PassRefPtr<IDBCursor> cursor, PassRefPtr<IDBKey> key, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value) 180 m_cursorPrimaryKey = primaryKey; 235 void IDBRequest::onSuccess(PassOwnPtr<blink::WebIDBCursor> backend, PassRefPtr<IDBKey> key, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value) 253 setResultCursor(cursor, key, primaryKey, value); 308 RefPtr<IDBKey> primaryKey = prpPrimaryKey; 311 assertPrimaryKeyValidOrInjectable(&m_requestState, valueBuffer, primaryKey, keyPath); 314 onSuccessInternal(IDBAny::create(valueBuffer, primaryKey, keyPath)); 347 void IDBRequest::onSuccess(PassRefPtr<IDBKey> key, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value) 349 IDB_TRACE("IDBRequest::onSuccess(key, primaryKey, value)"); 354 setResultCursor(m_pendingCursor.release(), key, primaryKey, value) [all...] |
IDBRequest.h | 99 virtual void onSuccess(PassOwnPtr<blink::WebIDBCursor>, PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer>); 105 virtual void onSuccess(PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer>); 154 void setResultCursor(PassRefPtr<IDBCursor>, PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value);
|
IDBObjectStore.cpp | 340 RefPtr<IDBKey> primaryKey = cursor->idbPrimaryKey(); 349 m_database->backend()->setIndexKeys(m_transactionId, m_objectStoreId, primaryKey.release(), indexIds, indexKeysList);
|
/packages/apps/DeskClock/src/com/android/deskclock/provider/ |
ClockProvider.java | 190 String primaryKey; 197 primaryKey = uri.getLastPathSegment(); 199 where = ClockContract.AlarmsColumns._ID + "=" + primaryKey; 201 where = ClockContract.AlarmsColumns._ID + "=" + primaryKey + 210 primaryKey = uri.getLastPathSegment(); 212 where = ClockContract.InstancesColumns._ID + "=" + primaryKey; 214 where = ClockContract.InstancesColumns._ID + "=" + primaryKey + 223 primaryKey = uri.getLastPathSegment(); 225 where = ClockContract.CitiesColumns.CITY_ID + "=" + primaryKey; 227 where = ClockContract.CitiesColumns.CITY_ID +"=" + primaryKey [all...] |
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/ |
proximity_info_utils.h | 61 const int primaryKey = inputCodes[i]; 67 keyCount, x, y, primaryKey, localeStr, codeToKeyMap, proximities); 165 const int x, const int y, const int primaryKey, const char *const localeStr, 169 proximities[insertPos++] = primaryKey; 174 if (c < KEYCODE_SPACE || c == primaryKey) { 193 AdditionalProximityChars::getAdditionalCharsSize(localeStr, primaryKey); 204 AdditionalProximityChars::getAdditionalChars(localeStr, primaryKey);
|
proximity_info.h | 51 const int x, const int y, const int primaryKey, int *inputCodes) const;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
IndexedDBModel.js | 383 var primaryKey = WebInspector.RemoteObject.fromPayload(dataEntries[i].primaryKey); 385 entries.push(new WebInspector.IndexedDBModel.Entry(key, primaryKey, value)); 400 * @param {!WebInspector.RemoteObject} primaryKey 403 WebInspector.IndexedDBModel.Entry = function(key, primaryKey, value) 406 this.primaryKey = primaryKey;
|
indexedDBViews.css | 109 .indexed-db-data-view .data-grid .data-container td.primaryKey-column { 115 .indexed-db-data-view .data-grid .data-container td.primaryKey-column div.primitive-value {
|
IndexedDBViews.js | 152 columns.push({id: "primaryKey", titleDOMFragment: this._keyColumnHeaderFragment(WebInspector.UIString("Primary key"), this._objectStore.keyPath)}); 332 data["primaryKey"] = entries[i].primaryKey; 335 var primaryKey = JSON.stringify(this._isIndex ? entries[i].primaryKey : entries[i].key); 379 this._entries[i].primaryKey.release(); 411 case "primaryKey":
|
/external/chromium_org/content/test/data/indexeddb/ |
cursor_prefetch.js | 368 if (cursor.primaryKey !== count) 369 shouldBe("cursor.primaryKey", "count"); 403 if (cursor.primaryKey !== count) 404 shouldBe("cursor.primaryKey", "count");
|
index_test.js | 45 shouldBe('event.target.result.primaryKey', '1');
|
/external/chromium_org/content/child/indexed_db/ |
webidbcursor_impl_unittest.cc | 74 const WebIDBKey& primaryKey,
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorIndexedDBAgent.cpp | 444 .setPrimaryKey(m_injectedScript.wrapObject(idbCursor->primaryKey(context), String()))
|
/external/robolectric/lib/main/ |
h2-1.2.147.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-nodeps.jar | |