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

1 2 3

  /external/webkit/Tools/Scripts/
update-sources-list.py 39 (groupName, groupFiles).
48 groupName = ""
50 groupName = sourceGroup.attributes["var"].value
51 groupName = groupName.replace(sources_prefix, "")
59 assert(groupName != "")
62 sources[groupName] = sourcesList
  /external/webkit/Source/WebCore/dom/
CheckedRadioButtons.h 37 HTMLInputElement* checkedButtonForGroup(const AtomicString& groupName) const;
  /external/webkit/Source/WebKit/chromium/src/
StorageEventDispatcherImpl.h 47 StorageEventDispatcherImpl(const String& groupName);
StorageEventDispatcherImpl.cpp 47 StorageEventDispatcherImpl::StorageEventDispatcherImpl(const String& groupName)
48 : m_pageGroup(PageGroup::pageGroup(groupName))
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofData.java 56 public final String groupName;
60 String groupName, String parentGroupName) {
62 threadName, groupName, parentGroupName);
70 String threadName, String groupName, String parentGroupName) {
78 this.groupName = groupName;
87 this.groupName = null;
96 result = 31 * result + hashCode(groupName);
114 && equal(this.groupName, event.groupName)
    [all...]
SamplingProfiler.java 465 String groupName = group == null ? null : group.getName();
471 threadName, groupName, parentGroupName);
BinaryHprofReader.java 327 String groupName = readString();
334 System.out.println("\tgroupName=" + groupName);
339 threadName, groupName, parentGroupName);
  /external/smack/src/org/jivesoftware/smack/packet/
RosterPacket.java 200 * @param groupName the group name.
202 public void addGroupName(String groupName) {
203 groupNames.add(groupName);
209 * @param groupName the group name.
211 public void removeGroupName(String groupName) {
212 groupNames.remove(groupName);
228 for (String groupName : groupNames) {
229 buf.append("<group>").append(StringUtils.escapeForXML(groupName)).append("</group>");
  /external/smack/src/org/jivesoftware/smackx/
RemoteRosterEntry.java 106 for (String groupName : groupNames) {
107 buf.append("<group>").append(groupName).append("</group>");
  /external/webkit/Source/WebKit/win/Interfaces/
IWebViewPrivate.idl 146 HRESULT standardUserAgentWithApplicationName([in] BSTR applicationName, [retval][out] BSTR* groupName);
187 HRESULT addUserScriptToGroup([in] BSTR groupName, [in] IWebScriptWorld*, [in] BSTR source, [in] BSTR url,
191 HRESULT addUserStyleSheetToGroup([in] BSTR groupName, [in] IWebScriptWorld*, [in] BSTR source, [in] BSTR url,
194 HRESULT removeUserScriptFromGroup([in] BSTR groupName, [in] IWebScriptWorld*, [in] BSTR url);
195 HRESULT removeUserStyleSheetFromGroup([in] BSTR groupName, [in] IWebScriptWorld*, [in] BSTR url);
196 HRESULT removeUserScriptsFromGroup([in] BSTR groupName, [in] IWebScriptWorld*);
197 HRESULT removeUserStyleSheetsFromGroup([in] BSTR groupName, [in] IWebScriptWorld*);
198 HRESULT removeAllUserContentFromGroup([in] BSTR groupName);
IWebView.idl 215 @method initWithFrame:frameName:groupName:
223 @param groupName The name of the webView set to which this webView will be added. May be nil.
225 - (id)initWithFrame:(NSRect)frame frameName:(NSString *)frameName groupName:(NSString *)groupName;
227 HRESULT initWithFrame([in] RECT frame, [in] BSTR frameName, [in] BSTR groupName);
566 @param groupName The name of the group for this WebView.
568 - (void)setGroupName:(NSString *)groupName;
570 HRESULT setGroupName([in] BSTR groupName);
573 @method groupName
575 - (NSString *)groupName;
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactsListFragment.java 112 public void setGroupMode(String groupName) {
113 boolean reload = (MODE_GROUP != mMode) || !groupName.equals(mGroupName);
115 mGroupName = groupName;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
TimeLineGraph.java 148 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp) {
149 addItem(groupName, name, description, value, col, display, timestamp,false);
152 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial) {
153 addItem(groupName, name,description, value, col, display,
157 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial,boolean drawBaseline) {
158 List items = (List) this.fItemGroups.get(groupName);
159 if (this.fItemGroups.get(groupName) == null) {
161 this.fItemGroups.put(groupName, items);
  /external/webkit/Source/WebKit/mac/WebView/
WebViewPrivate.h 472 - (id)_initWithFrame:(NSRect)f frameName:(NSString *)frameName groupName:(NSString *)groupName usesDocumentViews:(BOOL)usesDocumentViews;
522 + (void)_addUserScriptToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSString *)source url:(NSURL *)url whitelist:(NSArray *)whitelist blacklist:(NSArray *)blacklist injectionTime:(WebUserScriptInjectionTime)injectionTime;
523 + (void)_addUserStyleSheetToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSString *)source url:(NSURL *)url whitelist:(NSArray *)whitelist blacklist:(NSArray *)blacklist;
525 + (void)_addUserScriptToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSString *)source url:(NSURL *)url whitelist:(NSArray *)whitelist blacklist:(NSArray *)blacklist injectionTime:(WebUserScriptInjectionTime)injectionTime injectedFrames:(WebUserContentInjectedFrames)injectedFrames;
526 + (void)_addUserStyleSheetToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSString *)source url:(NSURL *)url whitelist:(NSArray *)whitelist blacklist:(NSArray *)blacklist injectedFrames:(WebUserContentInjectedFrames)injectedFrames;
527 + (void)_removeUserScriptFromGroup:(NSString *)groupName world:(WebScriptWorld *)world url:(NSURL *)url;
528 + (void)_removeUserStyleSheetFromGroup:(NSString *)groupName world:(WebScriptWorld *)world url:(NSURL *)url;
529 + (void)_removeUserScriptsFromGroup:(NSString *)groupName world:(WebScriptWorld *)world;
530 + (void)_removeUserStyleSheetsFromGroup:(NSString *)groupName world:(WebScriptWorld *)world
    [all...]
WebView.h 181 @method initWithFrame:frameName:groupName:
189 @param groupName The name of the webView set to which this webView will be added. May be nil.
192 - (id)initWithFrame:(NSRect)frame frameName:(NSString *)frameName groupName:(NSString *)groupName;
526 @param groupName The name of the group for this WebView.
529 - (void)setGroupName:(NSString *)groupName;
532 @method groupName
535 - (NSString *)groupName;
WebView.mm 674 - (void)_commonInitializationWithFrameName:(NSString *)frameName groupName:(NSString *)groupName usesDocumentViews:(BOOL)usesDocumentViews
761 [self setGroupName:groupName];
804 - (id)_initWithFrame:(NSRect)f frameName:(NSString *)frameName groupName:(NSString *)groupName usesDocumentViews:(BOOL)usesDocumentViews
823 [self _commonInitializationWithFrameName:frameName groupName:groupName usesDocumentViews:usesDocumentViews];
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
socketpoolwrapper.js 102 for (var groupName in origPool.groups) {
103 var group = origPool.groups[groupName];
136 for (var groupName in this.origPool.groups) {
137 var group = this.origPool.groups[groupName];
140 tablePrinter.addCell(groupName);
  /external/webkit/Source/WebCore/inspector/
InjectedScript.h 70 PassRefPtr<InspectorObject> wrapObject(ScriptValue, const String& groupName);
InjectedScript.cpp 146 PassRefPtr<InspectorObject> InjectedScript::wrapObject(ScriptValue value, const String& groupName)
151 wrapFunction.appendArgument(groupName);
  /external/webkit/Source/WebKit/win/
WebView.h 125 /* [in] */ BSTR groupName);
254 /* [in] */ BSTR groupName);
256 virtual HRESULT STDMETHODCALLTYPE groupName(
257 /* [retval][out] */ BSTR *groupName);
674 /* [retval][out] */ BSTR *groupName);
780 virtual HRESULT STDMETHODCALLTYPE addUserScriptToGroup(BSTR groupName, IWebScriptWorld*, BSTR source, BSTR url,
784 virtual HRESULT STDMETHODCALLTYPE addUserStyleSheetToGroup(BSTR groupName, IWebScriptWorld*, BSTR source, BSTR url,
787 virtual HRESULT STDMETHODCALLTYPE removeUserScriptFromGroup(BSTR groupName, IWebScriptWorld*, BSTR url);
788 virtual HRESULT STDMETHODCALLTYPE removeUserStyleSheetFromGroup(BSTR groupName, IWebScriptWorld*, BSTR url);
789 virtual HRESULT STDMETHODCALLTYPE removeUserScriptsFromGroup(BSTR groupName, IWebScriptWorld*)
    [all...]
  /external/webkit/Source/WebCore/page/
PageGroup.cpp 87 PageGroup* PageGroup::pageGroup(const String& groupName)
89 ASSERT(!groupName.isEmpty());
94 pair<PageGroupMap::iterator, bool> result = pageGroups->add(groupName, 0);
98 result.first->second = new PageGroup(groupName);
PageGroup.h 52 static PageGroup* pageGroup(const String& groupName);
  /packages/apps/Browser/src/com/android/browser/view/
BookmarkExpandableView.java 405 String groupName = mGroups.get(groupPosition);
406 if (groupName == null) {
407 groupName = mContext.getString(R.string.local_bookmarks);
409 name.setText(groupName);
  /external/smack/src/org/jivesoftware/smack/
Roster.java 391 for (String groupName : item.getGroupNames()) {
393 newGroupNames.add(groupName);
396 RosterGroup group = getGroup(groupName);
398 group = createGroup(groupName);
399 groups.put(groupName, group);
415 for (String groupName : currentGroupNames) {
416 RosterGroup group = getGroup(groupName);
419 groups.remove(groupName);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_PeopleTest.java 194 String groupName = "test_group_1";
195 mRowsAdded.add(People.addToGroup(mContentResolver, personId, groupName));
209 if (groupName.equals(cursor.getString(GROUPS_NAME_INDEX))) {

Completed in 290 milliseconds

1 2 3