Lines Matching refs:BaseName
405 auto BaseName = NamePair.second.empty() ? NamePair.first : NamePair.second; in ParseInstruction() local
410 if (BaseName == "block") { in ParseInstruction()
413 } else if (BaseName == "loop") { in ParseInstruction()
416 } else if (BaseName == "try") { in ParseInstruction()
419 } else if (BaseName == "if") { in ParseInstruction()
422 } else if (BaseName == "else") { in ParseInstruction()
423 if (pop(BaseName, If)) in ParseInstruction()
426 } else if (BaseName == "catch") { in ParseInstruction()
427 if (pop(BaseName, Try)) in ParseInstruction()
430 } else if (BaseName == "catch_all") { in ParseInstruction()
431 if (pop(BaseName, Try)) in ParseInstruction()
434 } else if (BaseName == "end_if") { in ParseInstruction()
435 if (pop(BaseName, If, Else)) in ParseInstruction()
437 } else if (BaseName == "end_try") { in ParseInstruction()
438 if (pop(BaseName, Try)) in ParseInstruction()
440 } else if (BaseName == "end_loop") { in ParseInstruction()
441 if (pop(BaseName, Loop)) in ParseInstruction()
443 } else if (BaseName == "end_block") { in ParseInstruction()
444 if (pop(BaseName, Block)) in ParseInstruction()
446 } else if (BaseName == "end_function") { in ParseInstruction()
447 if (pop(BaseName, Function) || ensureEmptyNestingStack()) in ParseInstruction()
479 if (parseOperandStartingWithInteger(true, Operands, BaseName)) in ParseInstruction()
483 if (parseOperandStartingWithInteger(false, Operands, BaseName)) in ParseInstruction()