/external/deqp/scripts/khr_util/ |
D | gen_str_util.py | 46 for groupName, values in enumGroups: 48 yield "const char*\tget%sName\t(int value);" % groupName 50 print("Warning: Empty value set for %s, skipping" % groupName) 53 for groupName, values in bitfieldGroups: 55 yield "tcu::Format::Bitfield<16>\tget%sStr\t(int value);" % groupName 57 print("Warning: Empty value set for %s, skipping" % groupName) 60 for groupName, values in enumGroups: 62 …\t(int value)\t{ return tcu::Format::Enum<int, 2>(get%(name)sName, value); }" % {"name": groupName} 70 def genEnumStrImpl (groupName, values, definitions): argument 75 yield "const char* get%sName (int value)" % groupName [all …]
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/ |
D | CSVGroupHandler.java | 29 private final String groupName; field in CSVGroupHandler 35 private CSVGroupHandler(final ClassRowWriter writer, final String groupName) { in CSVGroupHandler() argument 37 this.groupName = groupName; in CSVGroupHandler() 58 return groupName == null ? name : (groupName + "/" + name); in appendName()
|
/external/llvm-project/mlir/tools/mlir-tblgen/ |
D | PassCAPIGen.cpp | 27 groupName("prefix", variable 62 os << "MLIR_CAPI_EXPORTED void mlirRegister" << groupName << "Passes();\n\n"; in emitCAPIHeader() 66 os << llvm::formatv(passDecl, groupName, defName); in emitCAPIHeader() 95 os << llvm::formatv(passGroupRegistrationCode, groupName); in emitCAPIImpl() 100 os << llvm::formatv(passCreateDef, groupName, defName, in emitCAPIImpl()
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
D | keyframe-interpolations.js | 57 for (var groupName in propertySpecificKeyframeGroups) { 58 var group = propertySpecificKeyframeGroups[groupName]; 73 for (var groupName in propertySpecificKeyframeGroups) { 74 var keyframes = propertySpecificKeyframeGroups[groupName]; 104 property: groupName, 105 interpolation: scope.propertyInterpolation(groupName,
|
/external/fonttools/Lib/fontTools/ufoLib/ |
D | converters.py | 104 for groupName in list(groups.keys()): 106 if groupName.startswith(firstPrefix): 107 firstGroups.add(groupName) 110 if groupName.startswith(secondPrefix): 111 secondGroups.add(groupName)
|
D | validators.py | 877 for groupName, glyphList in value.items(): 878 if not isinstance(groupName, (str)): 882 if not groupName: 884 if groupName.startswith("public."): 885 if not groupName.startswith("public.kern1.") and not groupName.startswith("public.kern2."): 889 if len("public.kernN.") == len(groupName): 891 if groupName.startswith("public.kern1."): 897 return False, "The group data %s contains an invalid member." % groupName 900 d[glyphName] = groupName
|
/external/deqp/scripts/ |
D | testset.py | 129 for groupName in groupNames: 130 group = Group(groupName) 133 prefix = groupName + "." 150 groupName = string.join(parts[:-1], ".") 152 if not groupName in groupMap: 153 group = Group(groupName) 155 groupMap[groupName] = group 157 group = groupMap[groupName]
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
D | ThreadGroupTest.java | 68 String groupName, threadName; in testThreadGroup001() local 85 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testThreadGroup001() 91 + "; groupName=" + groupName); in testThreadGroup001() 94 if (!groupName.equals(ThreadGroupDebuggee.TESTED_GROUP)) { in testThreadGroup001()
|
/external/capstone/bindings/vb6/ |
D | Module1.bas | 630 Function groupName(hEngine As Long, groupID As Long) As String function 633 groupName = cstr2vb(lpStr) 634 If Len(groupName) = 0 Or DEBUG_DUMP Then groupName = groupName & " (" & Hex(groupID) & ")"
|
/external/icu/android_icu4j/libcore_bridge/src/java/com/android/icu/util/regex/ |
D | PatternNative.java | 57 /* package */ int getMatchedGroupIndex(String groupName) { in getMatchedGroupIndex() argument 58 return getMatchedGroupIndexImpl(address, groupName); in getMatchedGroupIndex() 86 private static native int getMatchedGroupIndexImpl(long addr, String groupName); in getMatchedGroupIndexImpl() argument
|
/external/vulkan-headers/registry/ |
D | generator.py | 428 def buildEnumCDecl(self, expand, groupinfo, groupName): argument 445 …d value for bitwidth attribute (', groupElem.get('bitwidth'), ') for ', groupName, ' - must be an … 455 …itwidth attribute (', groupElem.get('bitwidth'), ') for bitmask type ', groupName, ' - must be les… 458 return self.buildEnumCDecl_Bitmask(groupinfo, groupName) 460 return self.buildEnumCDecl_Enum(expand, groupinfo, groupName) 465 …r bitwidth attribute (', groupElem.get('bitwidth'), ') for enum type ', groupName, ' - must be les… 468 return self.buildEnumCDecl_Enum(expand, groupinfo, groupName) 470 def buildEnumCDecl_Bitmask(self, groupinfo, groupName): argument 503 def buildEnumCDecl_Enum(self, expand, groupinfo, groupName): argument 509 expandName = re.sub(r'([0-9a-z_])([A-Z0-9])', r'\1_\2', groupName).upper() [all …]
|
D | reg.py | 506 groupName = enum.get('extends') 507 if groupName is not None: 513 if groupName in self.groupdict: 516 gi = self.groupdict[groupName] 520 groupName, 'for enum', enum.get('name'), 'found.') 545 groupName = enum.get('extends') 546 if groupName is not None: 560 if groupName in self.groupdict: 563 gi = self.groupdict[groupName] 567 groupName, 'for enum', enum.get('name'), 'found.') [all …]
|
/external/testng/src/test/java/test/dataprovider/ |
D | TestContextTest.java | 26 private void verify(String groupName, String passed, int passedCount, int failedCount) { in verify() argument 30 if (groupName != null) { in verify() 31 tng.setGroups(groupName); in verify()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/ |
D | NameTest.java | 63 String groupName; in testName001() local 75 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testName001() 80 + "; groupName=" + groupName); in testName001() 83 NameDebuggee.CHILD_GROUP, groupName); in testName001()
|
D | ParentTest.java | 64 String groupName; in testParent001() local 87 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testParent001() 90 + "; groupName=" + groupName); in testParent001() 93 NameDebuggee.PARENT_GROUP, groupName); in testParent001()
|
D | ChildrenTest.java | 68 String groupName; in testChildren001() local 124 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testChildren001() 126 logWriter.println("\n==> group: groupID = " + groupID + "; groupName = " + groupName); in testChildren001() 128 assertString("Invalid group name,", NameDebuggee.CHILD_GROUP, groupName); in testChildren001()
|
/external/autotest/frontend/client/src/autotest/afe/ |
D | RadioChooser.java | 8 public IRadioButton generateRadioButton(String groupName, String choice); in generateRadioButton() argument 12 private String groupName = getFreshGroupName(); field in RadioChooser 28 IRadioButton button = display.generateRadioButton(groupName, choice); in addChoice()
|
D | RadioChooserDisplay.java | 17 public IRadioButton generateRadioButton(String groupName, String choice) { in generateRadioButton() argument 18 RadioButtonImpl radioButton = new RadioButtonImpl(groupName, choice); in generateRadioButton()
|
/external/ltp/testcases/network/nfsv4/acl/ |
D | random_gen.py | 121 groupName = splitedline[0] 123 NameOK = re.match("grp",groupName) 125 self.gList.append([groupName,gid]) 135 groupName = splitedline[0] 137 NameOK = re.match("grp",groupName) 139 self.gList.append([groupName,gid])
|
/external/angle/third_party/vulkan-deps/vulkan-headers/src/registry/ |
D | generator.py | 449 def buildEnumCDecl(self, expand, groupinfo, groupName): argument 466 …d value for bitwidth attribute (', groupElem.get('bitwidth'), ') for ', groupName, ' - must be an … 483 …itwidth attribute (', groupElem.get('bitwidth'), ') for bitmask type ', groupName, ' - must be les… 486 … return self.buildEnumCDecl_BitmaskOrDefine(groupinfo, groupName, bitwidth, usedefine) 490 …r bitwidth attribute (', groupElem.get('bitwidth'), ') for enum type ', groupName, ' - must be les… 493 return self.buildEnumCDecl_Enum(expand, groupinfo, groupName) 495 def buildEnumCDecl_BitmaskOrDefine(self, groupinfo, groupName, bitwidth, usedefine): argument 574 def buildEnumCDecl_Enum(self, expand, groupinfo, groupName): argument 580 expandName = re.sub(r'([0-9]+|[a-z_])([A-Z0-9])', r'\1_\2', groupName).upper() 583 expandSuffixMatch = re.search(r'[A-Z][A-Z]+$', groupName) [all …]
|
/external/vulkan-validation-layers/scripts/ |
D | helper_file_generator.py | 193 def genGroup(self, groupinfo, groupName, alias): argument 194 OutputGenerator.genGroup(self, groupinfo, groupName, alias) 203 self.enum_output += self.GenerateEnumStringConversion(groupName, value_set) 205 if groupName == 'VkDebugReportObjectTypeEXT': 212 elif groupName == 'VkObjectType': 372 def GenerateEnumStringConversion(self, groupName, value_list): argument 376 … outstring += 'static inline const char* string_%s(%s input_value)\n' % (groupName, groupName) 378 outstring += ' switch ((%s)input_value)\n' % groupName 386 outstring += ' return "Unhandled %s";\n' % groupName 390 bitsIndex = groupName.find('Bits') [all …]
|
/external/libxml2/xstc/ |
D | xstc.py | 155 def __init__(self, isSchema, groupName, name, accepted, file, val, descr): argument 162 self.groupName = groupName 195 self.group = runner.getGroup(self.groupName) 213 tokens = self.groupName.split("-") 343 def __init__(self, groupName, name, accepted, file, val, descr): argument 344 XSTCTestCase.__init__(self, 1, groupName, name, accepted, file, val, descr) 379 def __init__(self, groupName, name, accepted, file, val, descr): argument 380 XSTCTestCase.__init__(self, 0, groupName, name, accepted, file, val, descr) 489 def getGroup(self, groupName): argument 490 return self.groups[groupName]
|
/external/deqp/modules/gles2/functional/ |
D | es2fShaderExecuteTest.cpp | 44 ShaderExecuteTest::ShaderExecuteTest (Context& context, const char* groupName, const char* descript… in ShaderExecuteTest() argument 45 : TestCaseGroup(context, groupName, description) in ShaderExecuteTest()
|
/external/deqp/scripts/opengl/ |
D | gen_query_util.py | 66 …return [(groupName, [(prefix + queryName, querySize) for queryName, querySize in groupQueries]) fo…
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/tar/ |
D | TarArchiveEntry.java | 188 private String groupName = ""; field in TarArchiveEntry 611 return groupName; in getGroupName() 619 public void setGroupName(final String groupName) { in setGroupName() argument 620 this.groupName = groupName; in setGroupName() 640 public void setNames(final String userName, final String groupName) { in setNames() argument 642 setGroupName(groupName); in setNames() 1206 offset = TarUtils.formatNameBytes(groupName, outbuf, offset, GNAMELEN, in writeEntryHeader() 1300 groupName = oldStyle ? TarUtils.parseName(header, offset, GNAMELEN) in parseTarHeader()
|