Home
last modified time | relevance | path

Searched refs:titleKey (Results 1 – 4 of 4) sorted by relevance

/external/webkit/WebCore/inspector/front-end/
DProfilesPanel.js376 var titleKey = this._makeKey(title, typeId);
377 if (!(titleKey in this._profileGroupsForLinks))
378 this._profileGroupsForLinks[titleKey] = 0;
380 groupNumber = ++this._profileGroupsForLinks[titleKey];
/external/webkit/WebKit/win/
DWebHistoryItem.cpp99 static CFStringRef titleKey = CFSTR("title"); variable
120 CFStringRef titleRef = (CFStringRef) CFDictionaryGetValue(dictionaryRef, titleKey); in initFromDictionaryRepresentation()
228 keys[keyCount] = titleKey; in dictionaryRepresentation()
/external/webkit/WebKit/mac/History/
DWebHistoryItem.mm61 static NSString *titleKey = @"title";
347 NSString *title = [dict _webkit_stringForKey:titleKey];
453 [dict setObject:(NSString*)coreItem->title() forKey:titleKey];
/external/proguard/src/proguard/gui/
DProGuardGUI.java812 private void addBorder(JComponent component, String titleKey) in addBorder() argument
815 Border newBorder = BorderFactory.createTitledBorder(BORDER, msg(titleKey)); in addBorder()