Lines Matching defs:IdDefinedParser
24 const int64_t IdDefinedParser::START_SYS_ID = 0x07800000;
25 IdDefinedParser::IdDefinedParser(const PackageParser &packageParser, const ResourceIdCluster &type)
30 IdDefinedParser::~IdDefinedParser()
37 uint32_t IdDefinedParser::Init()
84 uint32_t IdDefinedParser::Init(const string &filePath, bool isSystem)
125 void IdDefinedParser::InitParser()
128 handles_.emplace("type", bind(&IdDefinedParser::ParseType, this, _1, _2));
129 handles_.emplace("name", bind(&IdDefinedParser::ParseName, this, _1, _2));
130 handles_.emplace("id", bind(&IdDefinedParser::ParseId, this, _1, _2));
131 handles_.emplace("order", bind(&IdDefinedParser::ParseOrder, this, _1, _2));
134 uint32_t IdDefinedParser::IdDefinedToResourceIds(const std::string &filePath, const cJSON *record,
161 bool IdDefinedParser::PushResourceId(const std::string &filePath, const ResourceId &resourceId, bool isSystem)
193 bool IdDefinedParser::ParseId(const cJSON *origId, ResourceId &resourceId)
219 bool IdDefinedParser::ParseType(const cJSON *type, ResourceId &resourceId)
238 bool IdDefinedParser::ParseName(const cJSON *name, ResourceId &resourceId)
260 bool IdDefinedParser::ParseOrder(const cJSON *order, ResourceId &resourceId)
280 int64_t IdDefinedParser::GetStartId() const