/external/flatbuffers/tests/rust_reflection_test/src/ |
D | lib.rs | 44 .lookup_by_key("TableA", |object, key| object.key_compare_with_value(key)) in test_schema_correct_object() 54 .key_compare_with_value(key)) in test_schema_correct_object() 72 .key_compare_with_value(key)) in test_schema_correct_enum() 120 fields.lookup_by_key("hp", |field, key| field.key_compare_with_value(key)); in test_schema_correct_table_field() 128 fields.lookup_by_key("friendly", |field, key| field.key_compare_with_value(key)); in test_schema_correct_table_field() 136 .key_compare_with_value(key)) in test_schema_correct_table_field() 152 .lookup_by_key("hp", |field, key| field.key_compare_with_value(key)) in test_schema_correct_table_field_nullability() 159 .lookup_by_key("pos", |field, key| field.key_compare_with_value(key)) in test_schema_correct_table_field_nullability() 166 .lookup_by_key("name", |field, key| field.key_compare_with_value(key)) in test_schema_correct_table_field_nullability() 182 fields.lookup_by_key("pos", |field, key| field.key_compare_with_value(key)); in test_schema_correct_child_table_index() [all …]
|
/external/flatbuffers/tests/monster_test/my_game/example/ |
D | referrable_generated.rs | 68 pub fn key_compare_with_value(&self, val: u64) -> ::core::cmp::Ordering { in key_compare_with_value() method
|
D | ability_generated.rs | 119 pub fn key_compare_with_value(&self, val: u32) -> ::core::cmp::Ordering { in key_compare_with_value() method
|
D | stat_generated.rs | 92 pub fn key_compare_with_value(&self, val: u16) -> ::core::cmp::Ordering { in key_compare_with_value() method
|
D | monster_generated.rs | 431 pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { in key_compare_with_value() method
|
/external/flatbuffers/tests/monster_test_serialize/my_game/example/ |
D | referrable_generated.rs | 70 pub fn key_compare_with_value(&self, val: u64) -> ::core::cmp::Ordering { in key_compare_with_value() method
|
D | ability_generated.rs | 133 pub fn key_compare_with_value(&self, val: u32) -> ::core::cmp::Ordering { in key_compare_with_value() method
|
D | stat_generated.rs | 94 pub fn key_compare_with_value(&self, val: u16) -> ::core::cmp::Ordering { in key_compare_with_value() method
|
D | monster_generated.rs | 433 pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { in key_compare_with_value() method
|
/external/flatbuffers/rust/reflection/src/ |
D | safe_buffer.rs | 78 field.key_compare_with_value(key) in find_field_by_name()
|
D | reflection_generated.rs | 467 pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { in key_compare_with_value() method 605 pub fn key_compare_with_value(&self, val: i64) -> ::core::cmp::Ordering { in key_compare_with_value() method 778 pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { in key_compare_with_value() method 1005 pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { in key_compare_with_value() method 1325 pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { in key_compare_with_value() method 1548 pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { in key_compare_with_value() method 1726 pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { in key_compare_with_value() method 1901 pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { in key_compare_with_value() method
|
D | lib.rs | 1087 field.key_compare_with_value(key) in update_offset() 1097 value.key_compare_with_value(*key) in update_offset()
|
/external/flatbuffers/tests/rust_usage_test/tests/ |
D | integration_test.rs | 1941 assert_eq!(a.key_compare_with_value(0), ::core::cmp::Ordering::Greater); in struct_key_compare_with_value() 1942 assert_eq!(a.key_compare_with_value(1), ::core::cmp::Ordering::Equal); in struct_key_compare_with_value() 1943 assert_eq!(a.key_compare_with_value(2), ::core::cmp::Ordering::Less); in struct_key_compare_with_value() 1977 assert_eq!(a.key_compare_with_value("AAA"), ::core::cmp::Ordering::Greater); in table_key_compare_with_value() 1978 assert_eq!(a.key_compare_with_value("MyMonster"), ::core::cmp::Ordering::Equal); in table_key_compare_with_value() 1979 assert_eq!(a.key_compare_with_value("ZZZ"), ::core::cmp::Ordering::Less); in table_key_compare_with_value()
|