/third_party/flatbuffers/tests/FlatBuffers.Test/ |
D | TestTable.cs | 31 public bool GetSlot(int slot, bool def) in GetSlot() method 42 public sbyte GetSlot(int slot, sbyte def) in GetSlot() method 53 public byte GetSlot(int slot, byte def) in GetSlot() method 64 public short GetSlot(int slot, short def) in GetSlot() method 75 public ushort GetSlot(int slot, ushort def) in GetSlot() method 86 public int GetSlot(int slot, int def) in GetSlot() method 97 public uint GetSlot(int slot, uint def) in GetSlot() method 108 public long GetSlot(int slot, long def) in GetSlot() method 119 public ulong GetSlot(int slot, ulong def) in GetSlot() method 130 public float GetSlot(int slot, float def) in GetSlot() method [all …]
|
D | FlatBuffersFuzzTests.cs | 748 Assert.AreEqual(FuzzTestData.BoolValue, table.GetSlot(f, false)); in CheckObjects() 753 Assert.AreEqual(FuzzTestData.Int8Value, table.GetSlot(f, (sbyte)0)); in CheckObjects() 758 Assert.AreEqual(FuzzTestData.UInt8Value, table.GetSlot(f, (byte)0)); in CheckObjects() 763 Assert.AreEqual(FuzzTestData.Int16Value, table.GetSlot(f, (short)0)); in CheckObjects() 768 Assert.AreEqual(FuzzTestData.UInt16Value, table.GetSlot(f, (ushort)0)); in CheckObjects() 773 Assert.AreEqual(FuzzTestData.Int32Value, table.GetSlot(f, (int)0)); in CheckObjects() 778 Assert.AreEqual(FuzzTestData.UInt32Value, table.GetSlot(f, (uint)0)); in CheckObjects() 783 Assert.AreEqual(FuzzTestData.Int64Value, table.GetSlot(f, (long)0)); in CheckObjects() 788 Assert.AreEqual(FuzzTestData.UInt64Value, table.GetSlot(f, (ulong)0)); in CheckObjects() 793 Assert.AreEqual(FuzzTestData.Float32Value, table.GetSlot(f, (float)0)); in CheckObjects() [all …]
|
/third_party/abseil-cpp/absl/container/internal/ |
D | btree_container.h | 298 this->tree_.insert_unique(params_type::key(CommonAccess::GetSlot(node)), in insert() 299 CommonAccess::GetSlot(node)); in insert() 310 iterator(hint), params_type::key(CommonAccess::GetSlot(node)), in insert() 311 CommonAccess::GetSlot(node)); in insert() 589 this->tree_.insert_multi(params_type::key(CommonAccess::GetSlot(node)), in insert() 590 CommonAccess::GetSlot(node)); in insert() 598 std::move(params_type::element(CommonAccess::GetSlot(node)))); in insert()
|
D | common.h | 169 static auto GetSlot(const Node& node) -> decltype(node.slot()) {
|
D | raw_hash_set.h | 1055 const auto& elem = PolicyTraits::element(CommonAccess::GetSlot(node)); 1057 InsertSlot<false>{*this, std::move(*CommonAccess::GetSlot(node))},
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | btree_container.h | 323 this->tree_.insert_unique(params_type::key(CommonAccess::GetSlot(node)), in insert() 324 CommonAccess::GetSlot(node)); in insert() 335 iterator(hint), params_type::key(CommonAccess::GetSlot(node)), in insert() 336 CommonAccess::GetSlot(node)); in insert() 609 this->tree_.insert_multi(params_type::key(CommonAccess::GetSlot(node)), in insert() 610 CommonAccess::GetSlot(node)); in insert() 618 std::move(params_type::element(CommonAccess::GetSlot(node)))); in insert()
|
D | common.h | 169 static auto GetSlot(const Node& node) -> decltype(node.slot()) {
|
D | raw_hash_set.h | 1170 const auto& elem = PolicyTraits::element(CommonAccess::GetSlot(node)); 1172 InsertSlot<false>{*this, std::move(*CommonAccess::GetSlot(node))},
|
/third_party/flatbuffers/tests/ |
D | py_test.py | 769 table.GetSlot(f, False, N.BoolFlags)) 772 table.GetSlot(f, 0, N.Int8Flags)) 775 table.GetSlot(f, 0, N.Uint8Flags)) 778 table.GetSlot(f, 0, N.Int16Flags)) 781 table.GetSlot(f, 0, N.Uint16Flags)) 784 table.GetSlot(f, 0, N.Int32Flags)) 787 table.GetSlot(f, 0, N.Uint32Flags)) 790 table.GetSlot(f, 0, N.Int64Flags)) 793 table.GetSlot(f, 0, N.Uint64Flags)) 796 table.GetSlot(f, 0, N.Float32Flags)) [all …]
|
/third_party/flatbuffers/python/flatbuffers/ |
D | table.py | 95 def GetSlot(self, slot, d, validator_flags): member in Table
|
/third_party/flatbuffers/lua/flatbuffers/ |
D | view.lua | 103 function mt:GetSlot(slot, d, validatorFlags) function
|
/third_party/mindspore/mindspore/ccsrc/debug/ |
D | tensor_load.h | 91 std::to_string(tensor->GetIsOutput()) + ":" + std::to_string(tensor->GetSlot())); in LoadNewTensor()
|
D | debug_services.cc | 181 …ertReadTensors(std::vector<std::string>{tensor->GetName()}, std::vector<size_t>{tensor->GetSlot()}, in GetPrevTensor() 187 …adDumpedTensor(std::vector<std::string>{tensor->GetName()}, std::vector<size_t>{tensor->GetSlot()}, in GetPrevTensor() 334 const auto tensor_slot = std::to_string(tensor->GetSlot()); in CheckWatchpointsForTensor() 348 …adDumpedTensor(std::vector<std::string>{tensor->GetName()}, std::vector<size_t>{tensor->GetSlot()}, in CheckWatchpointsForTensor() 417 … std::to_string(tensor->GetIsOutput()) + ":" + std::to_string(tensor->GetSlot()); in CheckWatchpointsForTensor()
|
D | tensor_data.h | 198 size_t GetSlot() const { return this->slot_; } in GetSlot() function
|
/third_party/mindspore/mindspore/ccsrc/debug/debugger/offline_debug/ |
D | dbg_services.cc | 267 std::to_string(result->GetSlot()); in ReadTensorsUtil()
|