Class: Babeltrace::CTF::IntegerDecl
Instance Attribute Summary
Attributes inherited from Declaration
#declaration
Instance Method Summary
collapse
Methods inherited from Declaration
create, #field_type, #initialize
Instance Method Details
#base ⇒ Object
492
493
494
|
# File 'lib/babeltrace/ctf/events.rb', line 492
def base
@declaration.get_int_base
end
|
#byte_order ⇒ Object
496
497
498
|
# File 'lib/babeltrace/ctf/events.rb', line 496
def byte_order
@declaration.get_int_byte_order
end
|
#def_class ⇒ Object
484
485
486
|
# File 'lib/babeltrace/ctf/events.rb', line 484
def def_class
IntegerDef
end
|
#encoding ⇒ Object
504
505
506
|
# File 'lib/babeltrace/ctf/events.rb', line 504
def encoding
@declaration.get_encoding
end
|
#len ⇒ Object
500
501
502
|
# File 'lib/babeltrace/ctf/events.rb', line 500
def len
@declaration.get_int_len
end
|
#signed? ⇒ Boolean
488
489
490
|
# File 'lib/babeltrace/ctf/events.rb', line 488
def signed?
@declaration.int_signed?
end
|