HomeSort by relevance Sort by last modified time
    Searched refs:itemRef (Results 1 - 13 of 13) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKBackForwardListItem.cpp 39 WKURLRef WKBackForwardListItemCopyURL(WKBackForwardListItemRef itemRef)
41 return toCopiedURLAPI(toImpl(itemRef)->url());
44 WKStringRef WKBackForwardListItemCopyTitle(WKBackForwardListItemRef itemRef)
46 return toCopiedAPI(toImpl(itemRef)->title());
49 WKURLRef WKBackForwardListItemCopyOriginalURL(WKBackForwardListItemRef itemRef)
51 return toCopiedURLAPI(toImpl(itemRef)->originalURL());
WKPage.cpp 133 void WKPageGoToBackForwardListItem(WKPageRef pageRef, WKBackForwardListItemRef itemRef)
135 toImpl(pageRef)->goToBackForwardItem(toImpl(itemRef));
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleBackForwardListItem.cpp 45 WKURLRef WKBundleBackForwardListItemCopyOriginalURL(WKBundleBackForwardListItemRef itemRef)
47 return toCopiedURLAPI(toImpl(itemRef)->originalURL());
50 WKURLRef WKBundleBackForwardListItemCopyURL(WKBundleBackForwardListItemRef itemRef)
52 return toCopiedURLAPI(toImpl(itemRef)->url());
55 WKStringRef WKBundleBackForwardListItemCopyTitle(WKBundleBackForwardListItemRef itemRef)
57 return toCopiedAPI(toImpl(itemRef)->title());
60 WKStringRef WKBundleBackForwardListItemCopyTarget(WKBundleBackForwardListItemRef itemRef)
62 return toCopiedAPI(toImpl(itemRef)->target());
65 bool WKBundleBackForwardListItemIsTargetItem(WKBundleBackForwardListItemRef itemRef)
67 return toImpl(itemRef)->isTargetItem()
    [all...]
  /external/webkit/Source/WebKit2/Shared/API/c/
WKContextMenuItem.cpp 63 WKContextMenuItemTag WKContextMenuItemGetTag(WKContextMenuItemRef itemRef)
65 return toAPI(toImpl(itemRef)->data()->action());
68 WKContextMenuItemType WKContextMenuItemGetType(WKContextMenuItemRef itemRef)
70 return toAPI(toImpl(itemRef)->data()->type());
73 WKStringRef WKContextMenuItemCopyTitle(WKContextMenuItemRef itemRef)
75 return toCopiedAPI(toImpl(itemRef)->data()->title().impl());
78 bool WKContextMenuItemGetEnabled(WKContextMenuItemRef itemRef)
80 return toImpl(itemRef)->data()->enabled();
83 bool WKContextMenuItemGetChecked(WKContextMenuItemRef itemRef)
85 return toImpl(itemRef)->data()->checked()
    [all...]
WKMutableDictionary.cpp 45 bool WKDictionaryAddItem(WKMutableDictionaryRef dictionaryRef, WKStringRef keyRef, WKTypeRef itemRef)
47 return toImpl(dictionaryRef)->add(toImpl(keyRef)->string(), toImpl(itemRef));
50 bool WKDictionarySetItem(WKMutableDictionaryRef dictionaryRef, WKStringRef keyRef, WKTypeRef itemRef)
52 return toImpl(dictionaryRef)->set(toImpl(keyRef)->string(), toImpl(itemRef));
WKMutableArray.cpp 45 void WKArrayAppendItem(WKMutableArrayRef arrayRef, WKTypeRef itemRef)
47 toImpl(arrayRef)->append(toImpl(itemRef));
  /external/chromium/chrome/browser/
keychain_mac.cc 8 SecKeychainItemRef itemRef, SecKeychainAttributeInfo *info,
11 return SecKeychainItemCopyAttributesAndData(itemRef, info, itemClass,
16 SecKeychainItemRef itemRef, const SecKeychainAttributeList *attrList,
18 return SecKeychainItemModifyAttributesAndData(itemRef, attrList, length,
27 OSStatus MacKeychain::ItemDelete(SecKeychainItemRef itemRef) const {
28 return SecKeychainItemDelete(itemRef);
40 SecKeychainItemRef *itemRef) const {
41 return SecKeychainSearchCopyNext(searchRef, itemRef);
53 SecKeychainItemRef *itemRef) const {
61 itemRef);
    [all...]
keychain_mac.h 27 SecKeychainItemRef itemRef, SecKeychainAttributeInfo *info,
32 SecKeychainItemRef itemRef, const SecKeychainAttributeList *attrList,
38 virtual OSStatus ItemDelete(SecKeychainItemRef itemRef) const;
46 SecKeychainItemRef *itemRef) const;
60 SecKeychainItemRef *itemRef) const;
69 SecKeychainItemRef *itemRef) const;
81 SecKeychainItemRef *itemRef) const;
keychain_mock_mac.h 29 SecKeychainItemRef itemRef, SecKeychainAttributeInfo *info,
34 SecKeychainItemRef itemRef, const SecKeychainAttributeList *attrList,
38 virtual OSStatus ItemDelete(SecKeychainItemRef itemRef) const;
44 SecKeychainItemRef *itemRef) const;
60 SecKeychainItemRef *itemRef) const;
68 SecKeychainItemRef *itemRef) const;
78 SecKeychainItemRef *itemRef) const;
keychain_mock_mac.cc 171 SecKeychainItemRef itemRef, SecKeychainAttributeInfo *info,
174 DCHECK(itemRef);
175 unsigned int item_index = reinterpret_cast<unsigned int>(itemRef) - 1;
195 SecKeychainItemRef itemRef, const SecKeychainAttributeList *attrList,
197 DCHECK(itemRef);
204 unsigned int item_index = reinterpret_cast<unsigned int>(itemRef) - 1;
234 OSStatus MockKeychain::ItemDelete(SecKeychainItemRef itemRef) const {
235 unsigned int item_index = reinterpret_cast<unsigned int>(itemRef) - 1;
284 SecKeychainItemRef *itemRef) const {
320 if (itemRef) {
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkhistory.cpp 129 WKRetainPtr<WKBackForwardListItemRef> itemRef = WKBackForwardListGetCurrentItem(toAPI(d->m_backForwardList));
130 QWKHistoryItem item(itemRef.get());
136 WKRetainPtr<WKBackForwardListItemRef> itemRef = WKBackForwardListGetBackItem(toAPI(d->m_backForwardList));
137 QWKHistoryItem item(itemRef.get());
143 WKRetainPtr<WKBackForwardListItemRef> itemRef = WKBackForwardListGetForwardItem(toAPI(d->m_backForwardList));
144 QWKHistoryItem item(itemRef.get());
150 WKRetainPtr<WKBackForwardListItemRef> itemRef = WKBackForwardListGetItemAtIndex(toAPI(d->m_backForwardList), index);
151 QWKHistoryItem item(itemRef.get());
162 WKBackForwardListItemRef itemRef = static_cast<WKBackForwardListItemRef>(wkHistoryItem);
163 QWKHistoryItem item(itemRef);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ProjectCallback.java 485 ResourceReference itemRef,
507 if (itemRef.isFramework()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/layoutRendering/
ApiDemosRenderingTest.java 151 ResourceReference itemRef, int fullPosition, int typePosition,

Completed in 690 milliseconds