class AdLint::Cc1::StandardIntegerType

Public Instance Methods

arithmetic_type_with(type) click to toggle source
# File lib/adlint/cc1/type.rb, line 3599
def arithmetic_type_with(type)
  subclass_responsibility
end
bitfield?() click to toggle source
# File lib/adlint/cc1/type.rb, line 3587
def bitfield?
  false
end
corresponding_signed_type() click to toggle source
# File lib/adlint/cc1/type.rb, line 3603
def corresponding_signed_type
  subclass_responsibility
end
corresponding_unsigned_type() click to toggle source
# File lib/adlint/cc1/type.rb, line 3607
def corresponding_unsigned_type
  subclass_responsibility
end
dup() click to toggle source
# File lib/adlint/cc1/type.rb, line 3611
def dup
  self.class.new(type_table)
end
enum?() click to toggle source
# File lib/adlint/cc1/type.rb, line 3579
def enum?
  false
end
enumerators() click to toggle source
# File lib/adlint/cc1/type.rb, line 3591
def enumerators
  []
end
id() click to toggle source
# File lib/adlint/cc1/type.rb, line 3563
def id
  subclass_responsibility
end
incomplete?() click to toggle source
# File lib/adlint/cc1/type.rb, line 3571
def incomplete?
  false
end
integer_conversion_rank() click to toggle source
# File lib/adlint/cc1/type.rb, line 3595
def integer_conversion_rank
  subclass_responsibility
end
named?() click to toggle source
# File lib/adlint/cc1/type.rb, line 3567
def named?
  true
end
pointer?() click to toggle source
# File lib/adlint/cc1/type.rb, line 3575
def pointer?
  false
end
standard?() click to toggle source
# File lib/adlint/cc1/type.rb, line 3583
def standard?
  true
end