Searched refs:keyPath (Results 1 - 25 of 84) sorted by relevance

1234

/macosx-10.10/WebCore-7600.1.25/Modules/indexeddb/
H A DIDBIndexMetadata.h45 IDBIndexMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool unique, bool multiEntry) argument
48 , keyPath(keyPath)
56 IDBKeyPath keyPath; member in struct:WebCore::IDBIndexMetadata
H A DIDBObjectStoreMetadata.h43 IDBObjectStoreMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool autoIncrement, int64_t maxIndexId) argument
46 , keyPath(keyPath)
54 IDBKeyPath keyPath; member in struct:WebCore::IDBObjectStoreMetadata
H A DIDBGetResult.h61 , keyPath(path)
72 result.keyPath = keyPath.isolatedCopy();
78 IDBKeyPath keyPath; member in struct:WebCore::IDBGetResult
H A DIDBDatabaseMetadata.cpp56 result.keyPath = keyPath.isolatedCopy();
72 result.keyPath = keyPath.isolatedCopy();
H A DIDBObjectStore.idl32 [ImplementedAs=keyPathAny] readonly attribute IDBAny keyPath;
46 [CallWith=ScriptExecutionContext, Custom, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMString> keyPath, optional Dictionary options);
47 [CallWith=ScriptExecutionContext, Custom, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPath, optional Dictionary options);
H A DIDBDatabase.cpp143 IDBKeyPath keyPath; local
148 if (options.get("keyPath", keyPathArray))
149 keyPath = IDBKeyPath(keyPathArray);
150 else if (options.getWithUndefinedOrNullCheck("keyPath", keyPathString))
151 keyPath = IDBKeyPath(keyPathString);
156 return createObjectStore(name, keyPath, autoIncrement, ec);
159 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionCode& ec) argument
176 if (!keyPath.isNull() && !keyPath.isValid()) {
181 if (autoIncrement && ((keyPath
[all...]
H A DIDBObjectStore.h62 PassRefPtr<IDBAny> keyPathAny() const { return IDBAny::create(m_metadata.keyPath); }
63 const IDBKeyPath keyPath() const { return m_metadata.keyPath; } function in class:WebCore::IDBObjectStore
85 PassRefPtr<IDBIndex> createIndex(ScriptExecutionContext* context, const String& name, const String& keyPath, const Dictionary& options, ExceptionCode& ec) { return createIndex(context, name, IDBKeyPath(keyPath), options, ec); } argument
86 PassRefPtr<IDBIndex> createIndex(ScriptExecutionContext* context, const String& name, const Vector<String>& keyPath, const Dictionary& options, ExceptionCode& ec) { return createIndex(context, name, IDBKeyPath(keyPath), options, ec); } argument
H A DIDBCursor.cpp142 const IDBKeyPath& keyPath = objectStore->metadata().keyPath; local
143 const bool usesInLineKeys = !keyPath.isNull();
145 RefPtr<IDBKey> keyPathKey = createIDBKeyFromScriptValueAndKeyPath(m_request->requestState()->exec(), value, keyPath);
277 if (metadata.autoIncrement && !metadata.keyPath.isNull()) {
279 RefPtr<IDBKey> expectedKey = createIDBKeyFromScriptValueAndKeyPath(m_request->requestState()->exec(), value, metadata.keyPath);
282 bool injected = injectIDBKeyIntoScriptValue(m_request->requestState(), m_currentPrimaryKey, value, metadata.keyPath);
H A DIDBIndex.h57 PassRefPtr<IDBAny> keyPathAny() const { return IDBAny::create(m_metadata.keyPath); }
58 const IDBKeyPath keyPath() const { return m_metadata.keyPath; } function in class:WebCore::IDBIndex
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DIndexedDatabaseObjectStoreContentView.js40 function displayKeyPath(keyPath)
42 if (!keyPath)
44 if (keyPath instanceof Array)
45 return keyPath.join(WebInspector.UIString(", "));
46 console.assert(keyPath instanceof String || typeof keyPath === "string");
47 return keyPath;
50 var displayPrimaryKeyPath = displayKeyPath(this._objectStore.keyPath);
60 var displayIndexKeyPath = displayKeyPath(this._objectStoreIndex.keyPath);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DIndexedDatabaseObjectStore.js26 WebInspector.IndexedDatabaseObjectStore = function(name, keyPath, autoIncrement, indexes)
31 this._keyPath = keyPath;
55 get keyPath()
H A DIndexedDatabaseObjectStoreIndex.js26 WebInspector.IndexedDatabaseObjectStoreIndex = function(name, keyPath, unique, multiEntry)
31 this._keyPath = keyPath;
52 get keyPath()
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DGraphicsLayerCARemote.cpp56 PassRefPtr<PlatformCAAnimation> GraphicsLayerCARemote::createPlatformCAAnimation(PlatformCAAnimation::AnimationType type, const String& keyPath) argument
58 return PlatformCAAnimationRemote::create(type, keyPath);
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Examples/Scripts/
H A Dkvo-debugging.py45 def XXaddObserver_forKeyPath_options_context_(self, observer, keyPath, options, context):
46 print 'addObserver_forKeyPath_options_context_', observer, keyPath, options, context
48 super(orig, self).addObserver_forKeyPath_options_context_(observer, keyPath, options, context)
55 def XXremoveObserver_forKeyPath_(self, observer, keyPath):
56 print 'removeObserver_forKeyPath_', observer, keyPath
58 super(orig, self).removeObserver_forKeyPath_(observer, keyPath)
79 def observeValueForKeyPath_ofObject_change_context_(self, keyPath, obj, change, context):
80 print '[[[[[]]]]] observeValueForKeyPath_ofObject_change_context_', keyPath, obj, change, context
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Examples/Scripts/
H A Dkvo-debugging.py45 def XXaddObserver_forKeyPath_options_context_(self, observer, keyPath, options, context):
46 print 'addObserver_forKeyPath_options_context_', observer, keyPath, options, context
48 super(orig, self).addObserver_forKeyPath_options_context_(observer, keyPath, options, context)
55 def XXremoveObserver_forKeyPath_(self, observer, keyPath):
56 print 'removeObserver_forKeyPath_', observer, keyPath
58 super(orig, self).removeObserver_forKeyPath_(observer, keyPath)
79 def observeValueForKeyPath_ofObject_change_context_(self, keyPath, obj, change, context):
80 print '[[[[[]]]]] observeValueForKeyPath_ofObject_change_context_', keyPath, obj, change, context
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Examples/Scripts/
H A Dkvo-debugging.py45 def XXaddObserver_forKeyPath_options_context_(self, observer, keyPath, options, context):
46 print 'addObserver_forKeyPath_options_context_', observer, keyPath, options, context
48 super(orig, self).addObserver_forKeyPath_options_context_(observer, keyPath, options, context)
55 def XXremoveObserver_forKeyPath_(self, observer, keyPath):
56 print 'removeObserver_forKeyPath_', observer, keyPath
58 super(orig, self).removeObserver_forKeyPath_(observer, keyPath)
79 def observeValueForKeyPath_ofObject_change_context_(self, keyPath, obj, change, context):
80 print '[[[[[]]]]] observeValueForKeyPath_ofObject_change_context_', keyPath, obj, change, context
/macosx-10.10/WebKit2-7600.1.25/DatabaseProcess/IndexedDB/
H A DIDBSerialization.cpp40 RefPtr<SharedBuffer> serializeIDBKeyPath(const IDBKeyPath& keyPath) argument
43 keyPath.encode(encoder);
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSIDBDatabaseCustom.cpp60 IDBKeyPath keyPath;
63 JSValue keyPathValue = optionsValue.get(exec, Identifier(exec, "keyPath"));
68 keyPath = idbKeyPathFromValue(exec, keyPathValue);
79 JSValue result = toJS(exec, globalObject(), impl().createObjectStore(name, keyPath, autoIncrement, ec).get());
H A DIDBBindingUtilities.cpp165 IDBKeyPath keyPath; local
167 keyPath = IDBKeyPath(toNativeArray<String>(exec, keyPathValue));
169 keyPath = IDBKeyPath(keyPathValue.toString(exec)->value(exec));
170 return keyPath;
185 static PassRefPtr<IDBKey> internalCreateIDBKeyFromScriptValueAndKeyPath(ExecState* exec, const Deprecated::ScriptValue& value, const String& keyPath) argument
189 IDBParseKeyPath(keyPath, keyPathElements, error);
235 bool injectIDBKeyIntoScriptValue(DOMRequestState* requestState, PassRefPtr<IDBKey> key, Deprecated::ScriptValue& value, const IDBKeyPath& keyPath) argument
239 ASSERT(keyPath.type() == IDBKeyPath::StringType);
243 IDBParseKeyPath(keyPath.string(), keyPathElements, error);
261 PassRefPtr<IDBKey> createIDBKeyFromScriptValueAndKeyPath(ExecState* exec, const Deprecated::ScriptValue& value, const IDBKeyPath& keyPath) argument
282 canInjectIDBKeyIntoScriptValue(DOMRequestState* requestState, const Deprecated::ScriptValue& scriptValue, const IDBKeyPath& keyPath) argument
[all...]
H A DJSIDBObjectStoreCustom.cpp59 IDBKeyPath keyPath = idbKeyPathFromValue(exec, exec->argument(1));
80 JSValue result = toJS(exec, globalObject(), impl().createIndex(context, name, keyPath, unique, multiEntry, ec).get());
/macosx-10.10/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Cocoa/
H A DFilteringArrayController.m89 - ( void ) observeValueForKeyPath: ( NSString * ) keyPath
95 #pragma unused ( keyPath )
320 NSString * keyPath = nil;
332 keyPath = kDeviceIdentifierKeyPath;
336 keyPath = kDeviceTitleKeyPath;
340 keyPath = kDeviceRevisionKeyPath;
344 keyPath = kDeviceFeaturesKeyPath;
348 keyPath = kDevicePDTKeyPath;
369 value = [ item valueForKeyPath: keyPath ];
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dkeyvaluehelper.py87 def observeValueForKeyPath_ofObject_change_context_(self, keyPath, obj, change, context):
88 self.observed.append( (keyPath, obj, change, context) )
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dkeyvaluehelper.py87 def observeValueForKeyPath_ofObject_change_context_(self, keyPath, obj, change, context):
88 self.observed.append( (keyPath, obj, change, context) )
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dkeyvaluehelper.py88 def observeValueForKeyPath_ofObject_change_context_(self, keyPath, obj, change, context):
89 self.observed.append( (keyPath, obj, change, context) )
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DStorageManager.js277 var keyPath = processKeyPath(objectStorePayload.keyPath);
279 return new WebInspector.IndexedDatabaseObjectStore(objectStorePayload.name, keyPath, objectStorePayload.autoIncrement, indexes);
284 var keyPath = processKeyPath(objectStoreIndexPayload.keyPath);
285 return new WebInspector.IndexedDatabaseObjectStoreIndex(objectStoreIndexPayload.name, keyPath, objectStoreIndexPayload.unique, objectStoreIndexPayload.multiEntry);

Completed in 261 milliseconds

1234