Lines Matching defs:word
14751 /// Parse a word containing one integral type modifier.
14753 /// A word is considered to be a string of characters that doesn't
14756 /// @param word the word to parse. It is considered to be a string of
14762 /// @return true iff @word was successfully parsed.
14764 parse_integral_type_modifier(const string& word,
14767 if (word == "signed")
14769 else if (word == "unsigned")
14771 else if (word == "short")
14773 else if (word == "long")
14775 else if (word == "long long")