Searched refs:input_path (Results 1 – 5 of 5) sorted by relevance
/frameworks/layoutlib/rename_font/ |
D | build_font_single.py | 73 input_path = argv[0] 74 extension = os.path.splitext(input_path)[1].lower() 77 convert_font(input_path, dest_path) 79 shutil.copy(input_path, dest_path) 82 def convert_font(input_path, dest_path): argument 83 filename = os.path.basename(input_path) 90 ttx_args = ['-q', '-o', ttx_path, input_path] 110 shutil.copy(input_path, dest_path)
|
D | build_font.py | 83 input_path = os.path.join(dirname, filename) 86 input_fonts.append(input_path) 88 shutil.copy(input_path, dest_dir) 97 def convert_font(input_path): argument 98 filename = os.path.basename(input_path) 106 ttx_args = ['-q', '-d', dest_dir, input_path] 126 shutil.copy(input_path, dest_dir)
|
/frameworks/compile/mclinker/lib/LD/ |
D | GNUArchiveReader.cpp | 217 sys::fs::Path input_path(pArchiveFile.path().parent_path()); in readMemberHeader() local 218 if (!input_path.empty()) in readMemberHeader() 219 input_path.append(sys::fs::Path(member_name)); in readMemberHeader() 221 input_path.assign(member_name); in readMemberHeader() 224 pArchiveFile, isThinAR, member_name, input_path); in readMemberHeader()
|
/frameworks/compile/libbcc/tools/bcc_compat/ |
D | Main.cpp | 226 const std::string &input_path = OptInputFilenames[0]; in DetermineOutputFilename() local 227 llvm::SmallString<200> output_path(input_path); in DetermineOutputFilename() 231 llvm::errs() << "Failed to determine the absolute path of `" << input_path in DetermineOutputFilename()
|
/frameworks/base/tools/aapt2/cmd/ |
D | Compile.cpp | 361 static bool IsValidFile(IAaptContext* context, const std::string& input_path) { in IsValidFile() argument 362 const file::FileType file_type = file::GetFileType(input_path); in IsValidFile() 365 context->GetDiagnostics()->Error(DiagMessage(input_path) in IsValidFile() 368 context->GetDiagnostics()->Error(DiagMessage(input_path) << "file not found"); in IsValidFile() 370 context->GetDiagnostics()->Error(DiagMessage(input_path) in IsValidFile()
|