Lines Matching refs:std

36   PropertyBase(std::string name, std::string type,
37 std::string decompressed_type)
46 std::string name_;
47 std::string type_;
48 std::string decompressed_type_;
54 StructProperty(std::string name, std::string type,
55 std::string decompressed_type, size_t offset, uint8_t num_bits,
57 : PropertyBase(std::move(name), std::move(type),
58 std::move(decompressed_type)),
82 ObjectProperty(std::string name, std::string type,
83 std::string decompressed_type, uintptr_t address,
85 std::vector<std::unique_ptr<StructProperty>> struct_fields,
87 : PropertyBase(std::move(name), std::move(type),
88 std::move(decompressed_type)),
92 struct_fields_(std::move(struct_fields)),
114 std::vector<std::unique_ptr<StructProperty>> struct_fields_;
118 std::vector<d::StructProperty*> struct_fields_raw_;
131 std::string brief, std::string type)
134 d::TypeCheckResult type_check_result, std::string brief, std::string type,
135 std::vector<std::unique_ptr<ObjectProperty>> properties,
136 std::vector<std::string> guessed_types)
138 properties_ = std::move(properties);
139 guessed_types_ = std::move(guessed_types);
166 std::string brief_;
167 std::string type_;
168 std::vector<std::unique_ptr<ObjectProperty>> properties_;
169 std::vector<std::string> guessed_types_;
172 std::vector<d::ObjectProperty*> properties_raw_;
173 std::vector<const char*> guessed_types_raw_;
185 StackFrameResult(std::vector<std::unique_ptr<ObjectProperty>> properties) {
186 properties_ = std::move(properties);
201 std::vector<std::unique_ptr<ObjectProperty>> properties_;
204 std::vector<d::ObjectProperty*> properties_raw_;
215 virtual std::vector<std::unique_ptr<ObjectProperty>> GetProperties(