Searched refs:formatPart (Results 1 – 10 of 10) sorted by relevance
86 prefix.formatParts.forEachIndexed { index, formatPart -> in <lambda>() method87 if (formatParts[index] != formatPart) { in <lambda>()90 if (index == prefix.formatParts.size - 1 && formatParts[index].startsWith(formatPart)) { in <lambda>()91 firstFormatPart = formatParts[index].substring(formatPart.length) in <lambda>()98 if (formatPart.startsWith("%") && !formatPart[1].isMultiCharNoArgPlaceholder) { in <lambda>()
256 for ((i, formatPart) in formatParts.withIndex()) { in <lambda>() variable257 if (formatPart.startsWith(returnWithSpace)) { in <lambda>()260 builder.formatParts[i] = formatPart.replaceFirst(returnWithSpace, returnWithNbsp) in <lambda>()
455 …std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getShaderImageType() local474 return formatPart + "image" + imageTypePart; in getShaderImageType()479 std::string formatPart; in getShaderImageType() local486 formatPart = "i"; in getShaderImageType()489 formatPart = "u"; in getShaderImageType()501 formatPart += "64"; in getShaderImageType()518 return formatPart + "image" + imageTypePart; in getShaderImageType()
554 std::string formatPart = getFormatPrefix(format); in getShaderImageType() local586 return formatPart + "image" + imageTypePart; in getShaderImageType()659 …const char* formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getGlslSamplerType() local677 return std::string(formatPart) + typePart; in getGlslSamplerType()
246 …std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getShaderImageType() local265 return formatPart + "image" + imageTypePart; in getShaderImageType()
912 …const std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLAS… in getShaderMultisampledImageType() local916 str << formatPart << "image2DMS" << (numLayers > 1 ? "Array" : ""); in getShaderMultisampledImageType()
428 std::string formatPart; in getShaderImageType() local434 formatPart = "i"; in getShaderImageType()437 formatPart = "u"; in getShaderImageType()448 return formatPart + "image2D"; in getShaderImageType()
234 …const std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLAS… in getShaderSamplerOrImageType() local237 return formatPart + (isSampler ? "sampler2D" : "image2D"); in getShaderSamplerOrImageType()
415 …const std::string formatPart = tcu::getTextureChannelClass(texFormat.type) == tcu::TEXTURECHANNE… in getShaderImageType() local419 case VK_IMAGE_TYPE_1D: return formatPart + "image1D"; in getShaderImageType()420 case VK_IMAGE_TYPE_2D: return formatPart + "image2D"; in getShaderImageType()421 case VK_IMAGE_TYPE_3D: return formatPart + "image3D"; in getShaderImageType()
239 const char* const formatPart = isFormatTypeUnsignedInteger(formatType) ? "u" in getShaderSamplerOrImageType() local250 return string() + formatPart + (isSampler ? "sampler" : "image") + imageTypePart; in getShaderSamplerOrImageType()