Home
last modified time | relevance | path

Searched refs:nameStream (Results 1 – 4 of 4) sorted by relevance

/external/angle/src/compiler/translator/tree_ops/vulkan/
DReplaceForShaderFramebufferFetch.cpp458 std::stringstream nameStream = sh::InitializeStream<std::stringstream>(); in getInputAttachmentArrayName() local
459 nameStream << sh::vk::kInputAttachmentName << suffix << mInputAttachmentArrayIdSeq++; in getInputAttachmentArrayName()
460 return ImmutableString(nameStream.str()); in getInputAttachmentArrayName()
465 std::stringstream nameStream = sh::InitializeStream<std::stringstream>(); in getInputAttachmentName() local
466 nameStream << sh::vk::kInputAttachmentName << index; in getInputAttachmentName()
467 return ImmutableString(nameStream.str()); in getInputAttachmentName()
/external/angle/util/windows/win32/
DWin32Window.cpp511 std::ostringstream nameStream; in initializeImpl() local
512 nameStream << name << "_" << windowIdx++; in initializeImpl()
514 mParentClassName = nameStream.str(); in initializeImpl()
/external/angle/src/tests/test_utils/runner/
DTestSuite.cpp843 std::stringstream nameStream; in PrintTestOutputSnippet() local
844 nameStream << id; in PrintTestOutputSnippet()
845 std::string fullName = nameStream.str(); in PrintTestOutputSnippet()
/external/llvm-project/mlir/lib/IR/
DAsmPrinter.cpp859 llvm::raw_svector_ostream nameStream(nameStr); in shadowRegionArgs() local
860 printValueID(nameToUse, /*printResultNo=*/true, nameStream); in shadowRegionArgs()
866 auto name = StringRef(nameStream.str()).drop_front(); in shadowRegionArgs()