Home
last modified time | relevance | path

Searched refs:formatPart (Results 1 – 10 of 10) sorted by relevance

/external/kotlinpoet/kotlinpoet/src/main/java/com/squareup/kotlinpoet/
DCodeBlock.kt86 prefix.formatParts.forEachIndexed { index, formatPart -> in <lambda>() method
87 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>()
DFunSpec.kt256 for ((i, formatPart) in formatParts.withIndex()) { in <lambda>() variable
257 if (formatPart.startsWith(returnWithSpace)) { in <lambda>()
260 builder.formatParts[i] = formatPart.replaceFirst(returnWithSpace, returnWithNbsp) in <lambda>()
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesTestsUtil.cpp455 …std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getShaderImageType() local
474 return formatPart + "image" + imageTypePart; in getShaderImageType()
479 std::string formatPart; in getShaderImageType() local
486 formatPart = "i"; in getShaderImageType()
489 formatPart = "u"; in getShaderImageType()
501 formatPart += "64"; in getShaderImageType()
518 return formatPart + "image" + imageTypePart; in getShaderImageType()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp554 std::string formatPart = getFormatPrefix(format); in getShaderImageType() local
586 return formatPart + "image" + imageTypePart; in getShaderImageType()
659 …const char* formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getGlslSamplerType() local
677 return std::string(formatPart) + typePart; in getGlslSamplerType()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMultisampleTestsUtil.cpp246 …std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getShaderImageType() local
265 return formatPart + "image" + imageTypePart; in getShaderImageType()
DvktPipelineMultisampleImageTests.cpp912 …const std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLAS… in getShaderMultisampledImageType() local
916 str << formatPart << "image2DMS" << (numLayers > 1 ? "Array" : ""); in getShaderMultisampledImageType()
/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
DvktYCbCrStorageImageWriteTests.cpp428 std::string formatPart; in getShaderImageType() local
434 formatPart = "i"; in getShaderImageType()
437 formatPart = "u"; in getShaderImageType()
448 return formatPart + "image2D"; in getShaderImageType()
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
DvktProtectedMemShaderImageAccessTests.cpp234 …const std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLAS… in getShaderSamplerOrImageType() local
237 return formatPart + (isSampler ? "sampler2D" : "image2D"); in getShaderSamplerOrImageType()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationOperation.cpp415 …const std::string formatPart = tcu::getTextureChannelClass(texFormat.type) == tcu::TEXTURECHANNE… in getShaderImageType() local
419 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()
/external/deqp/modules/gles31/functional/
Des31fShaderImageLoadStoreTests.cpp239 const char* const formatPart = isFormatTypeUnsignedInteger(formatType) ? "u" in getShaderSamplerOrImageType() local
250 return string() + formatPart + (isSampler ? "sampler" : "image") + imageTypePart; in getShaderSamplerOrImageType()