Lines Matching full:path
10 from pathlib import Path
22 help='input lib file path')
26 help='input head file path')
27 parse.add_argument('-m', type=str, help='input macros file path')
28 parse.add_argument('-b', type=str, help='input blacklist file path')
29 parse.add_argument('-o', type=str, help='result file output path')
52 my_file = Path(INPUT_LIB_PATH)
54 print('please input correct lib file path')
56 my_file = Path(INPUT_HEAD_PATH)
58 print('please input correct head file path')
62 my_file = Path(INPUT_BLACK_PATH)
64 print('warring:input correct blacklist file path is error')
68 my_file = Path(INPUT_MACROS_PATH)
70 print('warring:input correct macros file path is error')
74 my_file = Path(OUTPUT_RESULT_PATH)
76 print('warring:input correct output file path is error')
94 Get the list of contents in the file based on the path parameter
315 INPUT_LIB_PATH = '' #The path to the entered library file
316 INPUT_HEAD_PATH = '' #The path to the entered header file
317 INPUT_BLACK_PATH = '' #The path to the entered blacklist file
318 INPUT_MACROS_PATH = '' #The path to the entered macro definition file
319 OUTPUT_RESULT_PATH = '' #The output path of the result file