Lines Matching defs:flag
1957 // Read a mutability flag
2067 // The mask for the bit in the flag which indicates if the segment is
2070 // The mask for the bit in the flag which indicates:
2074 // The mask for the bit in the flag which indicates if the functions of this
2081 uint32_t flag = consume_u32v("flag");
2082 if ((flag & kFullMask) != flag) {
2083 errorf(pos, "illegal flag value %u. Must be between 0 and 7", flag);
2088 (flag & kNonActiveMask) ? (flag & kHasTableIndexOrIsDeclarativeMask)
2095 flag & kExpressionsAsElementsMask
2100 is_active && (flag & kHasTableIndexOrIsDeclarativeMask);
2119 is_active && !(flag & kHasTableIndexOrIsDeclarativeMask);
2173 uint32_t flag = consume_u32v("flag");
2175 // Some flag values are only valid for specific proposals.
2176 if (flag != SegmentFlags::kActiveNoIndex &&
2177 flag != SegmentFlags::kPassive &&
2178 flag != SegmentFlags::kActiveWithIndex) {
2179 errorf(pos, "illegal flag value %u. Must be 0, 1, or 2", flag);
2183 // We know now that the flag is valid. Time to read the rest.
2185 if (flag == SegmentFlags::kActiveNoIndex) {
2191 if (flag == SegmentFlags::kPassive) {
2195 if (flag == SegmentFlags::kActiveWithIndex) {