Searched refs:GetLong (Results 1 – 8 of 8) sorted by relevance
181 LONG_PTR GetLong(int index) const { return ::GetWindowLong(_window, index); } in GetLong() function183 LONG_PTR GetUserDataLong() const { return GetLong(GWLP_USERDATA); } in GetUserDataLong()189 LONG_PTR GetLongPtr(int index) const { return GetLong(index); } in GetLongPtr()
252 Assert.AreEqual(0x010203040A0B0C0D, uut.GetLong(0)); in ByteBuffer_GetLongReturnsCorrectData()260 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetLong(8)); in ByteBuffer_GetLongChecksOffset()267 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetLong(0)); in ByteBuffer_GetLongChecksLength()
117 return t.bb.GetLong(t.bb_pos + off); in GetSlot()
27 …public long Val { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : …
32 …public long I64 { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) :…
75 …public long Testhashs64Fnv1 { get { int o = __p.__offset(40); return o != 0 ? __p.bb.GetLong(o + _…83 …public long Testhashs64Fnv1a { get { int o = __p.__offset(48); return o != 0 ? __p.bb.GetLong(o + …117 …public long VectorOfLongs(int j) { int o = __p.__offset(68); return o != 0 ? __p.bb.GetLong(__p.__… in VectorOfLongs()
689 public long GetLong(int offset) in GetLong() method in FlatBuffers.ByteBuffer773 public long GetLong(int index) in GetLong() method in FlatBuffers.ByteBuffer
362 def GetLong(self, key): member in SharedPrefs