Lines Matching refs:BraceNesting
386 unsigned BraceNesting = 0; in ParseMicrosoftAsmStatement() local
398 BraceNesting = 1; in ParseMicrosoftAsmStatement()
422 BraceNesting++; in ParseMicrosoftAsmStatement()
465 if (!BraceNesting) in ParseMicrosoftAsmStatement()
469 if (!InAsmComment && BraceNesting && Tok.is(tok::r_brace) && in ParseMicrosoftAsmStatement()
470 BraceCount == (savedBraceCount + BraceNesting)) { in ParseMicrosoftAsmStatement()
474 if (SingleLineMode || BraceNesting > 1) { in ParseMicrosoftAsmStatement()
479 BraceNesting--; in ParseMicrosoftAsmStatement()
482 if (BraceNesting == 0 && !SingleLineMode) in ParseMicrosoftAsmStatement()
510 if (BraceNesting && BraceCount != savedBraceCount) { in ParseMicrosoftAsmStatement()
512 for (unsigned i = 0; i < BraceNesting; ++i) { in ParseMicrosoftAsmStatement()