Home
last modified time | relevance | path

Searched refs:groupName (Results 1 - 25 of 148) sorted by relevance

123456

/third_party/vk-gl-cts/scripts/khr_util/
H A Dgen_str_util.py46 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 yield "inline tcu::Format::Enum<int, 2>\tget%(name)sStr\t(int value)\t{ return tcu::Format::Enum<int, 2>(get%(name)sName, value); }" % {"name": groupName}
70 def genEnumStrImpl (groupName, values, definitions):
75 yield "const char* get%sName (int value)" % groupName
[all...]
H A Dregistry.py191 groupName = eEnum.get('group')
192 if groupName is not None:
193 self.groups[groupName] = eEnum
320 groupName = elem.get('group')
321 if groupName is None:
323 return groups[groupName]
/third_party/icu/tools/unicodetools/com/ibm/rbm/
H A DBundle.java173 public void removeUntranslatedItemsByGroup(String groupName) { in removeUntranslatedItemsByGroup() argument
179 if (item != null && item.getParentGroup().getName().equals(groupName)) { in removeUntranslatedItemsByGroup()
208 public boolean hasGroup(String groupName) { in hasGroup() argument
212 if (group.getName().equals(groupName)) in hasGroup()
223 public void addBundleGroup(String groupName, String groupComment) { in addBundleGroup() argument
224 BundleGroup bg = new BundleGroup(this, groupName); in addBundleGroup()
233 public void removeGroup(String groupName) { in removeGroup() argument
237 if (tempGroup.getName().equals(groupName)) { in removeGroup()
243 removeUntranslatedItemsByGroup(groupName); in removeGroup()
249 if (item.getParentGroup().getName().equals(groupName)) { in removeGroup()
352 getBundleGroup(String groupName) getBundleGroup() argument
[all...]
H A DRBManager.java467 public boolean editItem(BundleItem item, String name, String value, String groupName, String comment, Hashtable lookups) { in editItem() argument
468 if (name == null || name.equals("") || groupName == null || groupName.equals("") || item == null) return false; in editItem()
487 if (!oldItem.getParentGroup().getName().equals(groupName)) { in editItem()
490 BundleGroup bg = bundle.getBundleGroup(groupName); in editItem()
504 * @param groupName The group name, should all ready exist in the base class
509 public boolean createItem(String name, String value, String groupName, String comment, Hashtable lookups) { in createItem() argument
510 if (name == null || name.equals("") || groupName == null || groupName.equals("")) return false; in createItem()
516 if (bg.getName().equals(groupName)) {mainGrou in createItem()
560 createGroup(String groupName, String groupComment) createGroup() argument
587 deleteGroup(String groupName) deleteGroup() argument
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Ddocgenerator.py404 def genEnumTable(self, groupinfo, groupName):
455 self.logMsg('warn', 'The following values for', groupName,
460 if groupName == self.result_type:
462 self.writeEnumTable(groupName + '.success',
465 self.writeEnumTable(groupName + '.error',
469 self.writeFlagBox(groupName, values)
471 self.writeEnumTable(groupName, values)
472 self.writeEnumBox(groupName, values)
476 def genGroup(self, groupinfo, groupName, alias):
478 OutputGenerator.genGroup(self, groupinfo, groupName, alia
[all...]
H A Dgenerator.py565 def buildEnumCDecl(self, expand, groupinfo, groupName):
587 self.logMsg('error', 'Invalid value for bitwidth attribute (', groupElem.get('bitwidth'), ') for ', groupName, ' - must be an integer value\n')
604 self.logMsg('error', 'Invalid value for bitwidth attribute (', groupElem.get('bitwidth'), ') for bitmask type ', groupName, ' - must be less than or equal to 64\n')
607 return self.buildEnumCDecl_BitmaskOrDefine(groupinfo, groupName, bitwidth, usedefine)
611 self.logMsg('error', 'Invalid value for bitwidth attribute (', groupElem.get('bitwidth'), ') for enum type ', groupName, ' - must be less than or equal to 32\n')
614 return self.buildEnumCDecl_Enum(expand, groupinfo, groupName)
616 def buildEnumCDecl_BitmaskOrDefine(self, groupinfo, groupName, bitwidth, usedefine):
698 def buildEnumCDecl_Enum(self, expand, groupinfo, groupName):
704 expandName = re.sub(r'([0-9]+|[a-z_])([A-Z0-9])', r'\1_\2', groupName).upper()
707 expandSuffixMatch = re.search(r'[A-Z][A-Z]+$', groupName)
[all...]
H A Djson_parser.py983 def genGroup(self, groupinfo, groupName, alias=None):
984 OutputGenerator.genGroup(self, groupinfo, groupName, alias)
990 if groupName in self.featureDict and self.featureDict[groupName] != "VK_VERSION_1_0":
993 body += "#ifdef %s\n" %(self.featureDict[groupName])
995 if groupName == "VkPipelineStageFlagBits2KHR" or groupName == "VkAccessFlagBits2KHR" or groupName == "VkFormatFeatureFlagBits2KHR":
996 body += "static std::map<std::string, %s> %s_map = {\n" %(self.baseTypeListMap["uint64_t"],groupName)
998 body += "static std::map<std::string, int> %s_map = {\n" %(groupName)
[all...]
H A Dscriptgenerator.py287 def genGroup(self, groupinfo, groupName, alias):
296 OutputGenerator.genGroup(self, groupinfo, groupName, alias)
300 self.addName(self.typeCategory, groupName, 'group')
304 self.addName(self.alias, groupName, alias)
312 self.addName(self.consts, name, groupName)
315 self.enums[groupName] = sorted(enumerants)
H A Dreg.py688 groupName = enum.get('extends')
689 if groupName is not None:
694 # Look up the GroupInfo with matching groupName
695 if groupName in self.groupdict:
697 # groupName, 'found, adding element...')
698 gi = self.groupdict[groupName]
702 groupName, 'for enum', enum.get('name'), 'found.')
703 if groupName == "VkFormat":
735 groupName = enum.get('extends')
736 if groupName i
[all...]
/third_party/node/deps/v8/src/inspector/
H A Dinjected-script.h79 v8::Local<v8::Object>, const String16& groupName, bool ownProperties,
87 v8::Local<v8::Value>, const String16& groupName,
98 Response wrapObject(v8::Local<v8::Value>, const String16& groupName,
101 Response wrapObject(v8::Local<v8::Value>, const String16& groupName,
107 const ValueMirror& mirror, const String16& groupName, WrapMode wrapMode,
127 const v8::TryCatch&, const String16& groupName,
131 const String16& groupName,
221 String16 bindObject(v8::Local<v8::Value>, const String16& groupName);
229 const String16& groupName, protocol::Runtime::RemoteObject* remoteObject);
H A Dinjected-script.cc362 v8::Local<v8::Object> object, const String16& groupName, bool ownProperties, in getProperties()
378 return createExceptionDetails(tryCatch, groupName, exceptionDetails); in getProperties()
391 *mirror.value, groupName, wrapMode, v8::MaybeLocal<v8::Value>(), in getProperties()
403 groupName, remoteObject.get()); in getProperties()
413 groupName, remoteObject.get()); in getProperties()
423 groupName, remoteObject.get()); in getProperties()
433 groupName, remoteObject.get()); in getProperties()
444 v8::Local<v8::Value> value, const String16& groupName, in getInternalAndPrivateProperties()
471 groupName, remoteObject.get()); in getInternalAndPrivateProperties()
499 groupName, remoteObjec in getInternalAndPrivateProperties()
361 getProperties( v8::Local<v8::Object> object, const String16& groupName, bool ownProperties, bool accessorPropertiesOnly, bool nonIndexedPropertiesOnly, WrapMode wrapMode, std::unique_ptr<Array<PropertyDescriptor>>* properties, Maybe<protocol::Runtime::ExceptionDetails>* exceptionDetails) getProperties() argument
443 getInternalAndPrivateProperties( v8::Local<v8::Value> value, const String16& groupName, bool accessorPropertiesOnly, std::unique_ptr<protocol::Array<InternalPropertyDescriptor>>* internalProperties, std::unique_ptr<protocol::Array<PrivatePropertyDescriptor>>* privateProperties) getInternalAndPrivateProperties() argument
537 wrapObject( v8::Local<v8::Value> value, const String16& groupName, WrapMode wrapMode, std::unique_ptr<protocol::Runtime::RemoteObject>* result) wrapObject() argument
544 wrapObject( v8::Local<v8::Value> value, const String16& groupName, WrapMode wrapMode, v8::MaybeLocal<v8::Value> customPreviewConfig, int maxCustomPreviewDepth, std::unique_ptr<protocol::Runtime::RemoteObject>* result) wrapObject() argument
556 wrapObjectMirror( const ValueMirror& mirror, const String16& groupName, WrapMode wrapMode, v8::MaybeLocal<v8::Value> customPreviewConfig, int maxCustomPreviewDepth, std::unique_ptr<protocol::Runtime::RemoteObject>* result) wrapObjectMirror() argument
1020 bindObject(v8::Local<v8::Value> value, const String16& groupName) bindObject() argument
1035 bindRemoteObjectIfNeeded( int sessionId, v8::Local<v8::Context> context, v8::Local<v8::Value> value, const String16& groupName, protocol::Runtime::RemoteObject* remoteObject) bindRemoteObjectIfNeeded() argument
[all...]
H A Dcustom-preview.cc66 bool substituteObjectTags(int sessionId, const String16& groupName, in substituteObjectTags() argument
122 injectedScript->wrapObject(originValue, groupName, WrapMode::kNoPreview, in substituteObjectTags()
150 !substituteObjectTags(sessionId, groupName, context, in substituteObjectTags()
220 if (!bodyConfig->Get(context, toV8String(isolate, "groupName")) in bodyCallback()
226 reportError(context, tryCatch, "groupName should be a string"); in bodyCallback()
253 void generateCustomPreview(int sessionId, const String16& groupName, in generateCustomPreview() argument
331 if (jsonML->Length() && !substituteObjectTags(sessionId, groupName, context, in generateCustomPreview()
360 ->CreateDataProperty(context, toV8String(isolate, "groupName"), in generateCustomPreview()
361 toV8String(isolate, groupName)) in generateCustomPreview()
396 injectedScript->bindObject(bodyFunction, groupName)); in generateCustomPreview()
[all...]
/third_party/vk-gl-cts/scripts/
H A Dtestset.py129 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]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
H A DvktSynchronizationTests.cpp99 const char* groupName[] { "synchronization", "synchronization2" }; in getGroupName()
102 return std::pair<std::string, std::string>(groupName[isSynchronization2], groupDescription[isSynchronization2]); in getGroupName()
122 const std::pair<std::string, std::string> groupName = getGroupName(type, videoCodecOperation); in createTestsInternal() local
124 de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, groupName.first.c_str(), groupName.second.c_str())); in createTestsInternal()
/third_party/vulkan-loader/scripts/
H A Dhelper_file_generator.py202 def genGroup(self, groupinfo, groupName, alias):
203 OutputGenerator.genGroup(self, groupinfo, groupName, alias)
211 self.enum_output += self.GenerateEnumStringConversion(groupName, value_set)
213 if groupName == 'VkDebugReportObjectTypeEXT':
218 elif groupName == 'VkObjectType':
361 def GenerateEnumStringConversion(self, groupName, value_list):
363 outstring += 'static inline const char* string_%s(%s input_value)\n' % (groupName, groupName)
365 outstring += ' switch ((%s)input_value)\n' % groupName
371 outstring += ' return "Unhandled %s";\n' % groupName
[all...]
/third_party/vulkan-headers/registry/
H A Dgenerator.py565 def buildEnumCDecl(self, expand, groupinfo, groupName):
587 self.logMsg('error', 'Invalid value for bitwidth attribute (', groupElem.get('bitwidth'), ') for ', groupName, ' - must be an integer value\n')
604 self.logMsg('error', 'Invalid value for bitwidth attribute (', groupElem.get('bitwidth'), ') for bitmask type ', groupName, ' - must be less than or equal to 64\n')
607 return self.buildEnumCDecl_BitmaskOrDefine(groupinfo, groupName, bitwidth, usedefine)
611 self.logMsg('error', 'Invalid value for bitwidth attribute (', groupElem.get('bitwidth'), ') for enum type ', groupName, ' - must be less than or equal to 32\n')
614 return self.buildEnumCDecl_Enum(expand, groupinfo, groupName)
616 def buildEnumCDecl_BitmaskOrDefine(self, groupinfo, groupName, bitwidth, usedefine):
698 def buildEnumCDecl_Enum(self, expand, groupinfo, groupName):
704 expandName = re.sub(r'([0-9]+|[a-z_])([A-Z0-9])', r'\1_\2', groupName).upper()
707 expandSuffixMatch = re.search(r'[A-Z][A-Z]+$', groupName)
[all...]
H A Dreg.py688 groupName = enum.get('extends')
689 if groupName is not None:
694 # Look up the GroupInfo with matching groupName
695 if groupName in self.groupdict:
697 # groupName, 'found, adding element...')
698 gi = self.groupdict[groupName]
702 groupName, 'for enum', enum.get('name'), 'found.')
703 if groupName == "VkFormat":
735 groupName = enum.get('extends')
736 if groupName i
[all...]
/third_party/ltp/testcases/network/nfsv4/acl/
H A Drandom_gen.py121 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])
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/
H A DBundleItemCreationDialog.java22 String groupName; field in BundleItemCreationDialog
68 groupName = null; in BundleItemCreationDialog()
73 public BundleItemCreationDialog(String groupName, RBManager rbm, JFrame frame, String title, boolean modal) { in BundleItemCreationDialog() argument
76 this.groupName = groupName; in BundleItemCreationDialog()
85 groupName = item.getParentGroup().getName(); in BundleItemCreationDialog()
177 if (groupName != null) { in initComponents()
180 if (bg.getName().equals(groupName)) { in initComponents()
/third_party/vk-gl-cts/scripts/opengl/
H A Dgen_query_util.py66 return [(groupName, [(prefix + queryName, querySize) for queryName, querySize in groupQueries]) for groupName, groupQueries in groups]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fShaderExecuteTest.cpp44 ShaderExecuteTest::ShaderExecuteTest (Context& context, const char* groupName, const char* description) in ShaderExecuteTest() argument
45 : TestCaseGroup(context, groupName, description) in ShaderExecuteTest()
/third_party/vk-gl-cts/framework/common/
H A DtcuTestCase.cpp77 void TestNode::addRootChild (const std::string& groupName, const CaseListFilter* caseListFilter, TestCaseGroup* (*createTestGroup)(tcu::TestContext& testCtx, const std::string& name)) in addRootChild() argument
80 if (caseListFilter && !caseListFilter->checkTestGroupName((m_name + "." + groupName).c_str())) in addRootChild()
83 return addChild(createTestGroup(m_testCtx, groupName)); in addRootChild()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/protected_memory/
H A DvktProtectedMemFillUpdateCopyBufferTests.cpp401 const std::string groupName = getCmdBufferTypeStr(cmdBufferType); in createFillUpdateCopyBufferFloatTests() local
402 de::MovePtr<tcu::TestCaseGroup> primaryGroup (new tcu::TestCaseGroup(testCtx, groupName.c_str(), (desc + " using " + groupName.c_str() + " command buffer").c_str())); in createFillUpdateCopyBufferFloatTests()
512 const std::string groupName = getCmdBufferTypeStr(cmdBufferType); in createFillUpdateCopyBufferIntegerTests() local
513 de::MovePtr<tcu::TestCaseGroup> primaryGroup (new tcu::TestCaseGroup(testCtx, groupName.c_str(), (desc + " using " + groupName.c_str() + " command buffer").c_str())); in createFillUpdateCopyBufferIntegerTests()
616 const std::string groupName = getCmdBufferTypeStr(cmdBufferType); in createFillUpdateCopyBufferUnsignedTests() local
617 de::MovePtr<tcu::TestCaseGroup> testGroup (new tcu::TestCaseGroup(testCtx, groupName.c_str(), (desc + " using " + groupName.c_str() + " command buffer").c_str())); in createFillUpdateCopyBufferUnsignedTests()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderDiscardTests.cpp396 ShaderDiscardTests (tcu::TestContext& textCtx, const char *groupName);
407 ShaderDiscardTests::ShaderDiscardTests (tcu::TestContext& testCtx, const char *groupName) in ShaderDiscardTests() argument
408 : TestCaseGroup(testCtx, groupName) in ShaderDiscardTests()
409 , m_groupName(groupName) in ShaderDiscardTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderDiscardTests.cpp431 ShaderDiscardTests (tcu::TestContext& textCtx, const char *groupName);
442 ShaderDiscardTests::ShaderDiscardTests (tcu::TestContext& testCtx, const char *groupName) in ShaderDiscardTests() argument
443 : TestCaseGroup(testCtx, groupName, "Discard statement tests") in ShaderDiscardTests()
444 , m_groupName(groupName) in ShaderDiscardTests()

Completed in 19 milliseconds

123456