List of all members.
Detailed Description
Definition at line 62 of file Types.py.
Member Function Documentation
def Types::int64::_isValid |
( |
|
value | ) |
[private] |
Definition at line 64 of file Types.py.
00065 :
00066 return isinstance(value,int) or (
00067 isinstance(value,long) and
(-0x7FFFFFFFFFFFFFFF < value <= 0x7FFFFFFFFFFFFFFF) )
def Types::int64::_valueFromString |
( |
|
value | ) |
[private] |
only used for cfg-parsing
Definition at line 69 of file Types.py.
00070 :
00071 """only used for cfg-parsing"""
00072 if len(value) >1 and '0x' == value[:2]:
00073 return uint32(long(value,16))
return int64(long(value))
def Types::int64::insertInto |
( |
|
self, |
|
|
|
parameterSet, |
|
|
|
myname |
|
) |
| |
Definition at line 74 of file Types.py.
00075 :
00076 parameterSet.addInt64(self.isTracked(), myname, self.value())
00077
00078