Home
last modified time | relevance | path

Searched refs:GetFloat (Results 1 – 18 of 18) sorted by relevance

/external/flatbuffers/tests/MyGame/Example/
DVec3.cs18 public float X { get { return __p.bb.GetFloat(__p.bb_pos + 0); } }
20 public float Y { get { return __p.bb.GetFloat(__p.bb_pos + 4); } }
22 public float Z { get { return __p.bb.GetFloat(__p.bb_pos + 8); } }
DMonster.cs76 …public float Testf { get { int o = __p.__offset(54); return o != 0 ? __p.bb.GetFloat(o + __p.bb_po…
78 …public float Testf2 { get { int o = __p.__offset(56); return o != 0 ? __p.bb.GetFloat(o + __p.bb_p…
80 …public float Testf3 { get { int o = __p.__offset(58); return o != 0 ? __p.bb.GetFloat(o + __p.bb_p…
DTypeAliases.cs36 …public float F32 { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos)…
/external/pdfium/fxjs/
Dcfxjse_arguments.h26 float GetFloat(int32_t index) const;
Dcfxjse_arguments.cpp38 float CFXJSE_Arguments::GetFloat(int32_t index) const { in GetFloat() function in CFXJSE_Arguments
/external/flatbuffers/net/FlatBuffers/
DByteBuffer.cs374 public unsafe float GetFloat(int offset) in GetFloat() method in FlatBuffers.ByteBuffer
439 public float GetFloat(int index) in GetFloat() method in FlatBuffers.ByteBuffer
/external/flatbuffers/tests/FlatBuffers.Test/
DTestTable.cs139 return t.bb.GetFloat(t.bb_pos + off); in GetSlot()
/external/toolchain-utils/cros_utils/
Dperf_diff.py43 def GetFloat(x): function
49 sorted_l = sorted(l, key=lambda x: GetFloat(x[1]))
/external/libmojo/third_party/catapult/devil/devil/android/sdk/
Dshared_prefs.py297 def GetFloat(self, key): member in SharedPrefs
/external/chromium-trace/catapult/devil/devil/android/sdk/
Dshared_prefs.py314 def GetFloat(self, key): member in SharedPrefs
/external/pdfium/core/fxcrt/
Dwidestring.h170 float GetFloat() const;
Dwidestring.cpp1060 float WideString::GetFloat() const { in GetFloat() function in fxcrt::WideString
/external/protobuf/src/google/protobuf/
Dmessage.h505 virtual float GetFloat (const Message& message,
Dgenerated_message_reflection.h243 float GetFloat (const Message& message,
Dmap_test_util.cc1185 float val = sub_message->GetReflection()->GetFloat( in ExpectMapFieldsSetViaReflection()
1732 EXPECT_EQ(0, sub_message->GetReflection()->GetFloat(*sub_message, in ExpectMapEntryClearViaReflection()
Dextension_set.h233 float GetFloat (int number, float default_value) const;
Dtest_util.cc2690 EXPECT_EQ(111 , reflection->GetFloat (message, F("optional_float" ))); in ExpectAllFieldsSetViaReflection1()
2901 EXPECT_EQ(411 , reflection->GetFloat (message, F("default_float" ))); in ExpectAllFieldsSetViaReflection3()
3024 EXPECT_EQ(0 , reflection->GetFloat (message, F("optional_float" ))); in ExpectClearViaReflection()
3128 EXPECT_EQ( 51.5 , reflection->GetFloat (message, F("default_float" ))); in ExpectClearViaReflection()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc2257 float value = reflection->GetFloat(*message, field_descriptor); in CheckAndGetInteger()