Lines Matching refs:child

87     for (const auto &child : entry.GetChilds()) {
88 if (!child->IsFile()) {
89 cerr << "Error:" << child->GetFilePath().GetPath() << " not file" << endl;
92 if (child->GetFilePath().GetFilename() == ID_DEFINED_FILE) {
95 if (!LoadResourceItem(child->GetFilePath().GetPath())) {
144 for (const auto &child : entry.GetChilds()) {
145 if (!ResourceUtil::IslegalPath(child->GetFilePath().GetFilename())) {
148 if (!ScanIegalResources(child->GetFilePath().GetPath(), outputPath)) {
165 for (const auto &child : entry.GetChilds()) {
166 string limitKey = child->GetFilePath().GetFilename();
167 if (ResourceUtil::IsIgnoreFile(limitKey, child->IsFile())) {
172 if (!ScanRawFilesOrResFiles(child->GetFilePath().GetPath(), outputPath, limitKey)) {
178 if (child->IsFile()) {
179 cerr << "Error: " << child->GetFilePath().GetPath() << " not directory" << endl;
183 if (!ScanLimitKey(child, limitKey, outputPath)) {
196 for (const auto &child : entry.GetChilds()) {
197 if (!ScanSingleFile(child->GetFilePath().GetPath(), outputPath)) {
213 for (const auto &child : entry->GetChilds()) {
214 string fileCuster = child->GetFilePath().GetFilename();
215 if (ResourceUtil::IsIgnoreFile(fileCuster, child->IsFile())) {
219 if (child->IsFile()) {
220 cerr << "Error: " << child->GetFilePath().GetPath() << " not directory" << endl;
226 cerr << "Error: invalid resType." << NEW_LINE_PATH << child->GetFilePath().GetPath() << endl;
230 DirectoryInfo directoryInfo = { limitKey, fileCuster, child->GetFilePath().GetPath(), keyParams, resType};
231 if (!ScanFiles(child, directoryInfo, outputPath)) {
242 for (const auto &child : entry->GetChilds()) {
243 string filename = child->GetFilePath().GetFilename();
244 if (ResourceUtil::IsIgnoreFile(filename, child->IsFile())) {
248 if (!child->IsFile()) {
249 cerr << "Error: '" << child->GetFilePath().GetPath() << "' not file." << endl;
253 FileInfo fileInfo = {directoryInfo, child->GetFilePath().GetPath(), filename};
419 for (const auto &child : entry.GetChilds()) {
420 string filename = child->GetFilePath().GetFilename();
421 if (ResourceUtil::IsIgnoreFile(filename, child->IsFile())) {
426 if (child->IsFile()) {
427 ret = WriteRawFilesOrResFiles(child->GetFilePath().GetPath(), outputPath, limit);
429 ret = ScanRawFilesOrResFiles(child->GetFilePath().GetPath(), outputPath, limit);