Home
last modified time | relevance | path

Searched refs:key_compare_with_value (Results 1 – 13 of 13) sorted by relevance

/external/flatbuffers/tests/rust_reflection_test/src/
Dlib.rs44 .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/
Dreferrable_generated.rs68 pub fn key_compare_with_value(&self, val: u64) -> ::core::cmp::Ordering { in key_compare_with_value() method
Dability_generated.rs119 pub fn key_compare_with_value(&self, val: u32) -> ::core::cmp::Ordering { in key_compare_with_value() method
Dstat_generated.rs92 pub fn key_compare_with_value(&self, val: u16) -> ::core::cmp::Ordering { in key_compare_with_value() method
Dmonster_generated.rs431 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/
Dreferrable_generated.rs70 pub fn key_compare_with_value(&self, val: u64) -> ::core::cmp::Ordering { in key_compare_with_value() method
Dability_generated.rs133 pub fn key_compare_with_value(&self, val: u32) -> ::core::cmp::Ordering { in key_compare_with_value() method
Dstat_generated.rs94 pub fn key_compare_with_value(&self, val: u16) -> ::core::cmp::Ordering { in key_compare_with_value() method
Dmonster_generated.rs433 pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { in key_compare_with_value() method
/external/flatbuffers/rust/reflection/src/
Dsafe_buffer.rs78 field.key_compare_with_value(key) in find_field_by_name()
Dreflection_generated.rs467 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
Dlib.rs1087 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/
Dintegration_test.rs1941 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()