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

1 2 3 4 5

  /external/deqp/modules/gles2/functional/
es2fShaderExecuteTest.hpp 39 ShaderExecuteTest (Context& context, const char* groupName, const char* description);
es2fShaderExecuteTest.cpp 44 ShaderExecuteTest::ShaderExecuteTest (Context& context, const char* groupName, const char* description)
45 : TestCaseGroup(context, groupName, description)
  /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/chromium_org/third_party/WebKit/Source/core/html/forms/
RadioButtonGroupScope.h 45 HTMLInputElement* checkedButtonForGroup(const AtomicString& groupName) const;
  /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);
  /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/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/smack/src/org/jivesoftware/smackx/
RemoteRosterEntry.java 106 for (String groupName : groupNames) {
107 buf.append("<group>").append(groupName).append("</group>");
  /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/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)
  /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/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScript.h 97 PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapObject(const ScriptValue&, const String& groupName, bool generatePreview = false) const;
99 PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapNode(Node*, const String& groupName);
InjectedScript.cpp 265 PassRefPtr<TypeBuilder::Runtime::RemoteObject> InjectedScript::wrapObject(const ScriptValue& value, const String& groupName, bool generatePreview) const
270 wrapFunction.appendArgument(groupName);
299 PassRefPtr<TypeBuilder::Runtime::RemoteObject> InjectedScript::wrapNode(Node* node, const String& groupName)
301 return wrapObject(nodeAsScriptValue(node), 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/deqp/framework/common/
tcuCommandLine.hpp 178 bool checkTestGroupName (const char* groupName) const;
  /external/deqp/executor/tools/
xeBatchResultToJUnit.cpp 115 std::string groupName = result.casePath.substr(0, sepPos);
120 << Writer::Attribute("classname", groupName);
  /packages/apps/Browser/src/com/android/browser/view/
BookmarkExpandableView.java 408 String groupName = mGroups.get(groupPosition);
409 if (groupName == null) {
410 groupName = mContext.getString(R.string.local_bookmarks);
412 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...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-io/2.0.5/
plexus-io-2.0.5.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-io/2.0.4/
plexus-io-2.0.4.jar 

Completed in 674 milliseconds

1 2 3 4 5