/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | StructureHLSL.cpp | 31 const TString &structName = QualifiedStructNameString(structure, useHLSLRowMajorPacking, in Define() local 33 const TString declareString = (isNameless ? "struct" : "struct " + structName); in Define() 258 const TString &structName = in postPaddingString() local 260 numComponents = mStructElementIndexes->find(structName)->second; in postPaddingString() 663 const TString &structName = in storeStd140ElementIndex() local 665 mStd140StructElementIndexes[structName] = padHelper.elementIndex(); in storeStd140ElementIndex()
|
D | ParseContext.h | 358 const ImmutableString &structName,
|
D | ParseContext.cpp | 5739 const ImmutableString &structName, in addStructure() argument 5743 if (structName.empty()) in addStructure() 5747 TStructure *structure = new TStructure(&symbolTable, structName, fieldList, structSymbolType); in addStructure() 5755 checkIsNotReserved(nameLine, structName); in addStructure() 5758 error(nameLine, "redefinition of a struct", structName); in addStructure()
|
D | OutputHLSL.cpp | 2450 ImmutableString structName = samplerNamePrefixFromStruct(typedArg); in visitAggregate() local 2452 namePrefix += structName.data(); in visitAggregate()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_xmp_sdk.h | 132 const char *structName, 185 const char *structName,
|
D | dng_xmp_sdk.cpp | 819 const char *structName, in ComposeStructFieldPath() argument 831 structName, in ComposeStructFieldPath() 1288 const char *structName, in DeleteStructField() argument 1299 fPrivate->fMeta->DeleteStructField (ns, structName, fieldNS, fieldName); in DeleteStructField()
|
D | dng_xmp.h | 290 const char *structName,
|
D | dng_xmp.cpp | 4341 const char *structName, in ComposeStructFieldPath() argument 4347 fSDK->ComposeStructFieldPath (ns, structName, fieldNS, fieldName, s); in ComposeStructFieldPath()
|
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
D | ohos_gen_framework.py | 1905 …structName = re.sub("[_0-9][a-z]", lambda match: match.group(0).upper(), sType.capitalize()).rep… 1906 …ptrnStructName = r'\s*typedef\s+struct\s+(VkPhysicalDevice' + structName + 'Features' + sSuffix.r… 1951 structName = sType 1953 …structName = re.sub("[_0-9][a-z]", lambda match: match.group(0).upper(), sType.capitalize()).repla… 1954 …ptrnStructName = r'\s*typedef\s+struct\s+(VkPhysicalDevice' + structName + 'Properties' + sSuffix… 2072 structName = structType.name 2074 if structName == 'VkPhysicalDeviceShaderDrawParameterFeatures': 2075 structName = 'VkPhysicalDeviceShaderDrawParametersFeatures' 2077 structDef = [s for s in dfDefs if s[3] == structName][0] 2240 structName = structType.name [all …]
|
D | gen_framework.py | 1886 …structName = re.sub("[_0-9][a-z]", lambda match: match.group(0).upper(), sType.capitalize()).rep… 1887 …ptrnStructName = r'\s*typedef\s+struct\s+(VkPhysicalDevice' + structName + 'Features' + sSuffix.r… 1932 structName = sType 1934 …structName = re.sub("[_0-9][a-z]", lambda match: match.group(0).upper(), sType.capitalize()).repla… 1935 …ptrnStructName = r'\s*typedef\s+struct\s+(VkPhysicalDevice' + structName + 'Properties' + sSuffix… 2053 structName = structType.name 2055 if structName == 'VkPhysicalDeviceShaderDrawParameterFeatures': 2056 structName = 'VkPhysicalDeviceShaderDrawParametersFeatures' 2058 structDef = [s for s in dfDefs if s[3] == structName][0] 2221 structName = structType.name [all …]
|
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
D | InitOutputVariables_test.cpp | 159 FindStructByName(const ImmutableString &structName) in FindStructByName() argument 160 : TIntermTraverser(true, false, false), mStructName(structName), mStructure(nullptr) in FindStructByName()
|
/third_party/glslang/glslang/HLSL/ |
D | hlslGrammar.cpp | 2117 TString structName = ""; in acceptStruct() local 2120 structName = *idString; in acceptStruct() 2122 structName = *token.string; in acceptStruct() 2134 …if (structName.size() > 0 && !postDeclsFound && parseContext.lookupUserType(structName, type) != n… in acceptStruct() 2149 parseContext.pushNamespace(structName); in acceptStruct() 2166 new(&type) TType(typeList, structName); in acceptStruct() 2170 new(&type) TType(typeList, structName, postDeclQualifier); // sets EbtBlock in acceptStruct() 2173 parseContext.declareStruct(token.loc, structName, type); in acceptStruct() 2186 parseContext.pushNamespace(structName); in acceptStruct()
|
D | hlslParseHelper.h | 146 void declareStruct(const TSourceLoc&, TString& structName, TType&);
|
D | hlslParseHelper.cpp | 7754 void HlslParseContext::declareStruct(const TSourceLoc& loc, TString& structName, TType& type) in declareStruct() argument 7759 if (type.getBasicType() == EbtBlock || structName.size() == 0) in declareStruct() 7762 TVariable* userTypeDef = new TVariable(&structName, type, true); in declareStruct() 7764 error(loc, "redefinition", structName.c_str(), "struct"); in declareStruct()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
D | ParseHelper.cpp | 2970 const TString *structName, TFieldList *fieldList) in addStructure() argument 2972 TStructure *structure = new TStructure(structName, fieldList); in addStructure() 2980 if(!structName->empty()) in addStructure() 2982 if(reservedErrorCheck(nameLine, *structName)) in addStructure() 2986 TVariable *userTypeDef = new TVariable(structName, *structureType, true); in addStructure() 2989 error(nameLine, "redefinition", structName->c_str(), "struct"); in addStructure()
|
D | ParseHelper.h | 206 …nst TSourceLoc &structLine, const TSourceLoc &nameLine, const TString *structName, TFieldList *fie…
|
/third_party/typescript/src/compiler/ |
D | parser.ts | 1175 const structStylesComponents = new Map<string, { structName: string, kind: SyntaxKind }>(); 7494 …structStylesComponents.set(methodName, { structName: currentStructName, kind: SyntaxKind.MethodDec…
|
/third_party/typescript/lib/ |
D | typingsInstaller.js | 38015 …structStylesComponents.set(methodName, { structName: currentStructName, kind: 172 /* SyntaxKind.Me… property
|
D | tsc.js | 30821 … structStylesComponents.set(methodName, { structName: currentStructName, kind: 172 }); property
|