HomeSort by relevance Sort by last modified time
    Searched full:groupname (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/PerformanceTests/inspector/
performance-test.js 46 done: function(groupName)
60 this._dump(groupName);
81 _dump: function(groupName)
84 InspectorTest.dumpTestStats(groupName, testName, this._times[testName], "ms");
87 InspectorTest.dumpTestStats(groupName, testName, this._sizes[testName], "kB", 1024);
129 InspectorTest.dumpTestStats = function(groupName, testName, samples, units, divider)
137 InspectorTest.addResult("RESULT " + groupName + ': ' + testName + "= " + Math.floor(sum / (samples.length - stripNResults * 2) / divider) + " " + units);
  /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>");
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcnsi.h 37 RPCNSAPI RPC_STATUS RPC_ENTRY RpcNsGroupDeleteA(unsigned __LONG32 GroupNameSyntax,RPC_CSTR GroupName);
38 RPCNSAPI RPC_STATUS RPC_ENTRY RpcNsGroupMbrAddA(unsigned __LONG32 GroupNameSyntax,RPC_CSTR GroupName,unsigned __LONG32 MemberNameSyntax,RPC_CSTR MemberName);
39 RPCNSAPI RPC_STATUS RPC_ENTRY RpcNsGroupMbrRemoveA(unsigned __LONG32 GroupNameSyntax,RPC_CSTR GroupName,unsigned __LONG32 MemberNameSyntax,RPC_CSTR MemberName);
40 RPCNSAPI RPC_STATUS RPC_ENTRY RpcNsGroupMbrInqBeginA(unsigned __LONG32 GroupNameSyntax,RPC_CSTR GroupName,unsigned __LONG32 MemberNameSyntax,RPC_NS_HANDLE *InquiryContext);
42 RPCNSAPI RPC_STATUS RPC_ENTRY RpcNsGroupDeleteW(unsigned __LONG32 GroupNameSyntax,RPC_WSTR GroupName);
43 RPCNSAPI RPC_STATUS RPC_ENTRY RpcNsGroupMbrAddW(unsigned __LONG32 GroupNameSyntax,RPC_WSTR GroupName,unsigned __LONG32 MemberNameSyntax,RPC_WSTR MemberName);
44 RPCNSAPI RPC_STATUS RPC_ENTRY RpcNsGroupMbrRemoveW(unsigned __LONG32 GroupNameSyntax,RPC_WSTR GroupName,unsigned __LONG32 MemberNameSyntax,RPC_WSTR MemberName);
45 RPCNSAPI RPC_STATUS RPC_ENTRY RpcNsGroupMbrInqBeginW(unsigned __LONG32 GroupNameSyntax,RPC_WSTR GroupName,unsigned __LONG32 MemberNameSyntax,RPC_NS_HANDLE *InquiryContext);
lmaccess.h 508 NET_API_STATUS WINAPI NetGroupAddUser(LPCWSTR servername,LPCWSTR GroupName,LPCWSTR username);
510 NET_API_STATUS WINAPI NetGroupGetInfo(LPCWSTR servername,LPCWSTR groupname,DWORD level,LPBYTE *bufptr);
511 NET_API_STATUS WINAPI NetGroupSetInfo(LPCWSTR servername,LPCWSTR groupname,DWORD level,LPBYTE buf,LPDWORD parm_err);
512 NET_API_STATUS WINAPI NetGroupDel(LPCWSTR servername,LPCWSTR groupname);
513 NET_API_STATUS WINAPI NetGroupDelUser(LPCWSTR servername,LPCWSTR GroupName,LPCWSTR Username);
514 NET_API_STATUS WINAPI NetGroupGetUsers(LPCWSTR servername,LPCWSTR groupname,DWORD level,LPBYTE *bufptr,DWORD prefmaxlen,LPDWORD entriesread,LPDWORD totalentries,PDWORD_PTR ResumeHandle);
515 NET_API_STATUS WINAPI NetGroupSetUsers(LPCWSTR servername,LPCWSTR groupname,DWORD level,LPBYTE buf,DWORD totalentries);
579 NET_API_STATUS WINAPI NetLocalGroupAddMember(LPCWSTR servername,LPCWSTR groupname,PSID membersid);
581 NET_API_STATUS WINAPI NetLocalGroupGetInfo(LPCWSTR servername,LPCWSTR groupname,DWORD level,LPBYTE *bufptr);
582 NET_API_STATUS WINAPI NetLocalGroupSetInfo(LPCWSTR servername,LPCWSTR groupname,DWORD level,LPBYTE buf,LPDWORD parm_err)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
ThreadGroupTest.java 67 String groupName, threadName;
84 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
90 + "; groupName=" + groupName);
93 if (!groupName.equals(ThreadGroupDebuggee.TESTED_GROUP)) {
  /external/clang/test/TableGen/
DiagnosticBase.inc 16 string GroupName = Name;
  /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...]
  /external/deqp/scripts/
testset.py 109 for groupName in groupNames:
110 group = Group(groupName)
113 prefix = groupName + "."
130 groupName = string.join(parts[:-1], ".")
132 if not groupName in groupMap:
133 group = Group(groupName)
135 groupMap[groupName] = group
137 group = groupMap[groupName]
  /external/deqp/android/scripts/
GenAndroidCTSXML.py 24 def hasGroup(self, groupName):
25 return groupName in self.testGroups
27 def getGroup(self, groupName):
28 return self.testGroups[groupName]
98 groupName = line[len("GROUP: "):-1]
99 rootGroup = TestGroup(groupName)
GenAndroidCTSXMLFromTestList.py 24 def hasGroup(self, groupName):
26 if group.getName() == groupName:
30 def getGroup(self, groupName):
32 if group.getName() == groupName:
96 groupName = packageName
97 rootGroup = TestGroup(groupName)
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
NameTest.java 62 String groupName;
74 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
79 + "; groupName=" + groupName);
82 NameDebuggee.CHILD_GROUP, groupName);
ParentTest.java 63 String groupName;
86 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
89 + "; groupName=" + groupName);
92 NameDebuggee.PARENT_GROUP, groupName);
ChildrenTest.java 67 String groupName;
123 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
125 logWriter.println("\n==> group: groupID = " + groupID + "; groupName = " + groupName);
127 assertString("Invalid group name,", NameDebuggee.CHILD_GROUP, groupName);
  /external/chromium_org/chrome/browser/resources/net_internals/
socket_pool_wrapper.js 103 for (var groupName in origPool.groups) {
104 var group = origPool.groups[groupName];
137 for (var groupName in this.origPool.groups) {
138 var group = this.origPool.groups[groupName];
141 tablePrinter.addCell(groupName);
  /external/deqp/modules/gles2/functional/
es2fShaderExecuteTest.cpp 44 ShaderExecuteTest::ShaderExecuteTest (Context& context, const char* groupName, const char* description)
45 : TestCaseGroup(context, groupName, description)
  /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/smack/src/org/jivesoftware/smackx/
RemoteRosterEntry.java 106 for (String groupName : groupNames) {
107 buf.append("<group>").append(groupName).append("</group>");
  /external/chromium_org/chrome/browser/resources/google_now/
cards_unittest.gtestjs 105 groupName: groupNameA
150 groupName: groupNameA
217 groupName: groupNameA
257 groupName: groupNameA
315 groupName: groupNameA
327 groupName: groupNameB
375 groupName: groupNameA
449 groupName: groupNameA
462 groupName: groupNameB
519 groupName: groupName
    [all...]
background.js 442 for (var groupName in groups) {
443 var group = groups[groupName];
493 for (var groupName in notificationGroups)
494 combineGroup(combinedCards, notificationGroups[groupName]);
543 var group = receivedGroups[card.groupName];
553 for (var groupName in receivedGroups) {
554 var receivedGroup = receivedGroups[groupName];
555 var storedGroup = items.notificationGroups[groupName] || {
585 updatedGroups[groupName] = storedGroup;
632 groupNames.forEach(function(groupName) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
RadioButtonGroupScope.h 45 HTMLInputElement* checkedButtonForGroup(const AtomicString& groupName) const;
  /external/dnsmasq/contrib/Suse/
dnsmasq-SuSE.patch 5 .B \-g, --group=<groupname>
  /external/clang/include/clang/StaticAnalyzer/Checkers/
CheckerBase.td 15 string GroupName = name;
  /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/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 177 std::string GroupName = DI->getDef()->getValueAsString("GroupName");
178 DiagsInGroup[GroupName].DiagsInGroup.push_back(R);
188 GroupInfo &GI = DiagsInGroup[Group->getValueAsString("GroupName")];
201 GI.SubGroups.push_back(SubGroups[j]->getValueAsString("GroupName"));
228 std::string Name = (*I)->ExplicitDef->getValueAsString("GroupName");
265 std::string Name = NextDiagGroup->getValueAsString("GroupName");
342 const std::string &GroupName = Group->getValueAsString("GroupName");
343 if (GName == GroupName)
    [all...]
  /external/chromium_org/components/variations/
active_field_trials.h 47 // has a chosen group. The strings are formatted as "<TrialName>-<GroupName>",

Completed in 1422 milliseconds

1 2 3 4 5