Home
last modified time | relevance | path

Searched refs:braceCount (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Pass/
H A DPassRegistry.cpp253 size_t braceCount = 1; in parseNextArg() local
259 ++braceCount; in parseNextArg()
260 else if (options[argEndIt] == '}' && --braceCount == 0) in parseNextArg()
557 for (unsigned i = 0, e = text.size(), braceCount = 1; i < e; ++i) { in parsePipelineText() local
559 ++braceCount; in parsePipelineText()
562 if (text[i] == '}' && --braceCount == 0) { in parsePipelineText()
/llvm-project-15.0.7/clang/unittests/Format/
H A DFormatTestCSharp.cpp584 verifyFormat(R"(string str2 = $"{{{braceCount} braces";)", Style); in TEST_F()
585 verifyFormat(R"(string str3 = $"{braceCount}}} braces";)", Style); in TEST_F()