class AdLint::Cc1::SignedLongLongIntType

Public Class Methods

new(type_tbl) click to toggle source
Calls superclass method AdLint::Cc1::IntegerType::new
# File lib/adlint/cc1/type.rb, line 4749
def initialize(type_tbl)
  # FIXME: StandardTypesAccessor is not ready until @type_table is
  #        initialized.
  @type_table = type_tbl
  super(type_tbl, "signed long long int",
        long_long_size, long_long_alignment, true, true)
end

Public Instance Methods

arithmetic_type_with(type) click to toggle source
# File lib/adlint/cc1/type.rb, line 4765
def arithmetic_type_with(type)
  type._arithmetic_type_with_signed_long_long_int(self)
end
corresponding_signed_type() click to toggle source
# File lib/adlint/cc1/type.rb, line 4769
def corresponding_signed_type
  self
end
corresponding_unsigned_type() click to toggle source
# File lib/adlint/cc1/type.rb, line 4773
def corresponding_unsigned_type
  unsigned_long_long_int_t
end
id() click to toggle source
# File lib/adlint/cc1/type.rb, line 4757
def id
  @id ||= SignedLongLongIntTypeId.new
end
integer_conversion_rank() click to toggle source
# File lib/adlint/cc1/type.rb, line 4761
def integer_conversion_rank
  5
end