Lines Matching refs:process
2304 std::function<std::string(const char*)> process = DotToDescriptor; in ReadImageClassesFromFile() local
2305 return ReadCommentedInputFromFile(image_classes_filename, &process); in ReadImageClassesFromFile()
2313 std::function<std::string(const char*)> process = DotToDescriptor; in ReadImageClassesFromZip() local
2314 return ReadCommentedInputFromZip(zip_filename, image_classes_filename, &process, error_msg); in ReadImageClassesFromZip()
2320 const char* input_filename, std::function<std::string(const char*)>* process) { in ReadCommentedInputFromFile() argument
2327 ReadCommentedInputStream(*input_file, process)); in ReadCommentedInputFromFile()
2337 std::function<std::string(const char*)>* process, in ReadCommentedInputFromZip() argument
2360 return ReadCommentedInputStream(input_stream, process); in ReadCommentedInputFromZip()
2367 std::function<std::string(const char*)>* process) { in ReadCommentedInputStream() argument
2376 if (process != nullptr) { in ReadCommentedInputStream()
2377 std::string descriptor((*process)(dot.c_str())); in ReadCommentedInputStream()