Home
last modified time | relevance | path

Searched refs:input_root (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/testing/tools/
Dtest_runner.py48 input_root, _ = os.path.splitext(input_filename)
49 expected_txt_path = os.path.join(source_dir, input_root + '_expected.txt')
51 pdf_path = os.path.join(self.working_dir, input_root + '.pdf')
62 raised_exception = self.Generate(source_dir, input_filename, input_root,
71 raised_exception = self.TestText(input_root, expected_txt_path, pdf_path)
73 raised_exception, results = self.TestPixel(input_root, pdf_path)
85 def Generate(self, source_dir, input_filename, input_root, pdf_path): argument
87 input_path = os.path.join(source_dir, input_root + '.in')
89 input_event_path = os.path.join(source_dir, input_root + ".evt")
106 def TestText(self, input_root, expected_txt_path, pdf_path): argument
[all …]
Dpngdiffer.py79 input_root, _ = os.path.splitext(input_filename)
80 actual_path = os.path.join(working_dir, input_root + self.ACTUAL_TEMPLATE)
82 source_dir, input_root + self.EXPECTED_TEMPLATE)
84 source_dir, input_root + self.PLATFORM_EXPECTED_TEMPLATE)
/external/v8/src/compiler/
Dnode.h335 InputEdges(Node** input_root, Use* use_root, int count) in InputEdges() argument
336 : input_root_(input_root), use_root_(use_root), count_(count) {} in InputEdges()
357 explicit Inputs(Node* const* input_root, int count) in Inputs() argument
358 : input_root_(input_root), count_(count) {} in Inputs()