Lines Matching refs:dict_struct
42 dict_struct = lldb.SBStructuredData()
43 dict_struct = example.GetValueForKey("key_dict")
49 self.string_struct_test(dict_struct)
52 self.int_struct_test(dict_struct)
55 self.double_struct_test(dict_struct)
58 self.bool_struct_test(dict_struct)
61 self.array_struct_test(dict_struct)
75 dict_struct = lldb.SBStructuredData()
76 dict_struct = example.GetValueForKey("key_dict")
77 if not dict_struct.IsValid():
81 if not dict_struct.GetType() == lldb.eStructuredDataTypeDictionary:
82 self.fail("Wrong type returned: " + str(dict_struct.GetType()))
85 if not dict_struct.GetSize() == 5:
87 str(dict_struct.GetSize()))
89 def string_struct_test(self, dict_struct): argument
91 string_struct = dict_struct.GetValueForKey("key_string")
113 def int_struct_test(self, dict_struct): argument
116 int_struct = dict_struct.GetValueForKey("key_int")
138 def double_struct_test(self, dict_struct): argument
140 floating_point_struct = dict_struct.GetValueForKey("key_float")
154 def bool_struct_test(self, dict_struct): argument
156 bool_struct = dict_struct.GetValueForKey("key_bool")
169 def array_struct_test(self, dict_struct): argument
172 array_struct = dict_struct.GetValueForKey("key_array")