Home
last modified time | relevance | path

Searched refs:typeString (Results 1 – 25 of 36) sorted by relevance

12

/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DShaderStorageBlockFunctionHLSL.cpp47 out << " " << ssboFunction.typeString << " result"; in OutputSSBOLoadFunctionBody()
206 out << " " << ssboFunction.typeString << " original_value;\n"; in OutputSSBOAtomicMemoryFunctionBody()
256 ssboFunction.typeString = TypeString(type); in registerShaderStorageBlockFunction()
272 ssboFunction.functionName = "_ssbo_atomicAdd_" + ssboFunction.typeString; in registerShaderStorageBlockFunction()
276 ssboFunction.functionName = "_ssbo_atomicMin_" + ssboFunction.typeString; in registerShaderStorageBlockFunction()
280 ssboFunction.functionName = "_ssbo_atomicMax_" + ssboFunction.typeString; in registerShaderStorageBlockFunction()
284 ssboFunction.functionName = "_ssbo_atomicAnd_" + ssboFunction.typeString; in registerShaderStorageBlockFunction()
288 ssboFunction.functionName = "_ssbo_atomicOr_" + ssboFunction.typeString; in registerShaderStorageBlockFunction()
292 ssboFunction.functionName = "_ssbo_atomicXor_" + ssboFunction.typeString; in registerShaderStorageBlockFunction()
296 ssboFunction.functionName = "_ssbo_atomicExchange_" + ssboFunction.typeString; in registerShaderStorageBlockFunction()
[all …]
DResourcesHLSL.cpp834 TString hlsl, typeString; in uniformBlockWithOneLargeArrayMemberString() local
838 typeString = InterfaceBlockFieldTypeString(field, blockStorage, true); in uniformBlockWithOneLargeArrayMemberString()
844 hlsl += "struct pack" + Decorate(interfaceBlock.name()) + " { " + typeString + " " + in uniformBlockWithOneLargeArrayMemberString()
847 typeString = "pack" + Decorate(interfaceBlock.name()); in uniformBlockWithOneLargeArrayMemberString()
855 hlsl += "struct pack" + Decorate(interfaceBlock.name()) + " { " + typeString + " " + in uniformBlockWithOneLargeArrayMemberString()
859 typeString = "pack" + Decorate(interfaceBlock.name()); in uniformBlockWithOneLargeArrayMemberString()
865 hlsl += "StructuredBuffer <" + typeString + "> " + in uniformBlockWithOneLargeArrayMemberString()
871 hlsl += "StructuredBuffer <" + typeString + "> " + Decorate(field.name()) + in uniformBlockWithOneLargeArrayMemberString()
DShaderStorageBlockFunctionHLSL.h71 TString typeString; member
/third_party/node/deps/v8/tools/turbolizer/src/
Dnode.ts102 let typeString = this.nodeLabel.type;
103 if (typeString == undefined) return "";
104 if (typeString.length > 24) {
105 typeString = typeString.substr(0, 25) + "...";
107 return typeString;
/third_party/typescript/src/harness/
DtypeWriter.ts130 let typeString: string; variable
141 typeString = (type as ts.IntrinsicType).intrinsicName;
144typeString = this.checker.typeToString(type, node.parent, ts.TypeFormatFlags.NoTruncation | ts.Typ…
145 …ts.isTypeAliasDeclaration(node.parent) && node.parent.name === node && typeString === ts.idText(no…
148typeString = this.checker.typeToString(type, node.parent, ts.TypeFormatFlags.NoTruncation | ts.Typ…
155 type: typeString
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DDebugUtilitiesTest.java36 … logln("Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - enumCount "+enumCount); in TestStrings()
43 …errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCou… in TestStrings()
46 …errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCou… in TestStrings()
DDebugUtilities.java35 public static String typeString(int type) { in typeString() method in DebugUtilities
DFieldsSet.java238 +(fEnum!=NO_ENUM?DebugUtilities.typeString(fEnum):Integer.toString(fEnum))+"]: "; in toString()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DDebugUtilitiesTest.java33 … logln("Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - enumCount "+enumCount); in TestStrings()
40 …errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCou… in TestStrings()
43 …errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCou… in TestStrings()
DDebugUtilities.java31 public static String typeString(int type) { in typeString() method in DebugUtilities
DFieldsSet.java235 +(fEnum!=NO_ENUM?DebugUtilities.typeString(fEnum):Integer.toString(fEnum))+"]: "; in toString()
/third_party/vk-gl-cts/modules/gles2/scripts/
Dgen-conversions.py178 inType = inValues[0].typeString()
179 outType = outValues[0].typeString()
195 inType = inValue.typeString()
196 outType = outValue.typeString()
213 self.outType = self.outValues[0].typeString()
214 inTypes = [values[0].typeString() for values in inComps]
216 …self.inputs = [("%s in%s" % (comp[0].typeString(), ndx), comp) for (comp, ndx) in zip(inComps, in…
Dgenutil.py240 def typeString(self): member in Scalar
354 def typeString(self): member in Vec2
440 def typeString(self): member in Vec3
533 def typeString(self): member in Vec4
637 def typeString(self): member in Mat
644 return "%s(%s)" % (self.typeString(), ", ".join([str(s) for s in self.scalars]))
Dgen-swizzles.py261 outType = outputs[0].typeString()
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
DUniformsPerf.cpp271 std::string typeString; in initShaders() local
276 typeString = "vec4"; in initShaders()
280 typeString = "mat3"; in initShaders()
285 typeString = "mat3x4"; in initShaders()
290 typeString = "mat4"; in initShaders()
304 vstrstr << "uniform " << typeString << " " << GetUniformLocationName(i, true) << ";\n"; in initShaders()
330 fstrstr << "uniform " << typeString << " " << GetUniformLocationName(i, false) << ";\n"; in initShaders()
/third_party/vk-gl-cts/modules/gles3/scripts/
Dgen-conversions.py191 inType = inValues[0].typeString()
192 outType = outValues[0].typeString()
208 inType = inValue.typeString()
209 outType = outValue.typeString()
226 self.outType = self.outValues[0].typeString()
227 inTypes = [values[0].typeString() for values in inComps]
229 …self.inputs = [("%s in%s" % (comp[0].typeString(), ndx), comp) for (comp, ndx) in zip(inComps, in…
Dgen-large-constant-arrays.py89 .format(TYPE=elements[0].typeString(), LENGTH=len(elements)))
105 outType = outputs[0].typeString()
Dgenutil.py263 def typeString(self): member in Scalar
341 def typeString(self): member in Uint
422 def typeString(self): member in Vec2
496 def typeString(self): member in UVec2
533 def typeString(self): member in Vec3
614 def typeString(self): member in UVec3
653 def typeString(self): member in Vec4
728 def typeString(self): member in UVec4
784 def typeString(self): member in Mat
791 return "%s(%s)" % (self.typeString(), ", ".join(["%s" % s for s in self.scalars]))
Dgen-swizzle-math-operations.py178 outType = outputs[0].typeString()
Dgen-swizzles.py265 outType = outputs[0].typeString()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceTypes.h84 const char *typeString(Type Ty);
85 inline std::string typeStdString(Type Ty) { return typeString(Ty); } in typeStdString()
151 Str << typeString(Ty);
/third_party/skia/modules/particles/include/
DSkParticleSerialization.h101 const skjson::StringValue* typeString = get("Type"); in visit() local
102 const char* type = typeString ? typeString->begin() : "Null"; in visit()
/third_party/vk-gl-cts/modules/gles31/scripts/
Dgenutil.py263 def typeString(self): member in Scalar
343 def typeString(self): member in Uint
424 def typeString(self): member in Vec2
498 def typeString(self): member in UVec2
535 def typeString(self): member in Vec3
616 def typeString(self): member in UVec3
655 def typeString(self): member in Vec4
730 def typeString(self): member in UVec4
786 def typeString(self): member in Mat
793 return "%s(%s)" % (self.typeString(), ", ".join(["%s" % s for s in self.scalars]))
/third_party/glslang/glslang/Include/
DTypes.h2108 TString typeString; variable
2110 const auto appendStr = [&](const char* s) { typeString.append(s); };
2111 … const auto appendUint = [&](unsigned int u) { typeString.append(std::to_string(u).c_str()); };
2112 … const auto appendInt = [&](int i) { typeString.append(std::to_string(i).c_str()); };
2327typeString.append((*structure)[i].type->getCompleteString(syntactic, getQualifiers, getPrecision, …
2438 typeString.append(getBasicTypeString());
2453 typeString.append((*structure)[i].type->getCompleteString());
2454 typeString.append(" ");
2455 typeString.append((*structure)[i].type->getFieldName());
2464 return typeString;
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/breakiter/
DLSTMBreakEngine.java84 String typeString = rb.get("type").getString(); in LSTMData() local
85 if (typeString.equals("codepoints")) { in LSTMData()
87 } else if (typeString.equals("graphclust")) { in LSTMData()

12