Lines Matching refs:IS
76 bool DeserializeFirstWord(InputWordStream &IS, OpCode opcode) { in DeserializeFirstWord() argument
77 if (IS.empty()) { in DeserializeFirstWord()
81 OpCodeAndWordCount codeAndCount(*IS); in DeserializeFirstWord()
89 IS >> &mCodeAndCount; in DeserializeFirstWord()
97 bool DeserializeExactlyOne(InputWordStream &IS, T *operand) { in DeserializeExactlyOne() argument
98 if (IS.empty()) { in DeserializeExactlyOne()
102 IS >> operand; in DeserializeExactlyOne()
110 bool DeserializeOptionallyOne(InputWordStream &IS, T **operand) { in DeserializeOptionallyOne() argument
115 return DeserializeExactlyOne(IS, *operand); in DeserializeOptionallyOne()
119 bool DeserializeZeroOrMoreOperands(InputWordStream &IS, in DeserializeZeroOrMoreOperands() argument
123 if (!DeserializeExactlyOne(IS, &tmp)) { in DeserializeZeroOrMoreOperands()
131 bool DeserializeExtraOperands(InputWordStream &IS) { in DeserializeExtraOperands() argument
132 return DeserializeZeroOrMoreOperands(IS, &mExtraOperands); in DeserializeExtraOperands()