Lines Matching full:that
35 StringResource::StringResource(const StringResource& that)
36 :pos(that.pos),
37 file(that.file),
38 config(that.config),
39 id(that.id),
40 index(that.index),
41 value(that.value),
42 version(that.version),
43 versionString(that.versionString),
44 comment(that.comment)
49 StringResource::Compare(const StringResource& that) const
51 if (file != that.file) {
52 return file < that.file ? -1 : 1;
54 if (id != that.id) {
55 return id < that.id ? -1 : 1;
57 if (index != that.index) {
58 return index - that.index;
60 if (config != that.config) {
61 return config < that.config ? -1 : 1;
63 if (version != that.version) {
64 return version < that.version ? -1 : 1;