OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testfNinf
(Results
1 - 3
of
3
) sorted by null
/external/flatbuffers/tests/MyGame/
MonsterExtra.java
21
public float
testfNinf
() { int o = __offset(8); return o != 0 ? bb.getFloat(o + bb_pos) : Float.NEGATIVE_INFINITY; }
50
public static void addTestfNinf(FlatBufferBuilder builder, float
testfNinf
) { builder.addFloat(2,
testfNinf
, Float.NEGATIVE_INFINITY); }
MonsterExtra.py
36
def
TestfNinf
(self):
66
def MonsterExtraAddTestfNinf(builder,
testfNinf
): builder.PrependFloat32Slot(2,
testfNinf
, float('-inf'))
MonsterExtra.cs
24
public float
TestfNinf
{ get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)Single.NegativeInfinity; } }
53
public static void AddTestfNinf(FlatBufferBuilder builder, float
testfNinf
) { builder.AddFloat(2,
testfNinf
, Single.NegativeInfinity); }
Completed in 727 milliseconds