Home | History | Annotate | Download | only in jsoncpp

Lines Matching defs:path

7 import os.path
14 @return: the full path of the filename if found, or '' if filename could not be found
16 paths = os.environ.get('PATH', '').split(os.pathsep)
21 full_path = os.path.join(directory, name)
22 if os.path.isfile(full_path):
50 config_file = os.path.abspath( config_file )
88 if not os.path.isdir( output_dir ):
90 top_dir = os.path.abspath( '.' )
92 tarball_path = os.path.join( 'dist', html_output_dirname + '.tar.gz' )
93 warning_log_path = os.path.join( output_dir, '../jsoncpp-doxygen-warning.log' )
94 html_output_path = os.path.join( output_dir, html_output_dirname )
101 '%HTML_OUTPUT%': os.path.join( '..', output_dir, html_output_dirname ),
103 '%DOT_PATH%': os.path.split(options.dot_path)[0],
106 '%WARNING_LOG_PATH%': os.path.join( '..', warning_log_path )
109 if os.path.isdir( output_dir ):
112 if not os.path.isdir( output_dir ):
119 index_path = os.path.abspath(os.path.join('doc', subst_keys['%HTML_OUTPUT%'], 'index.html'))
134 tarball_basedir = os.path.join( output_dir, html_output_dirname )
151 help="""Path to GraphViz dot tool. Must be full qualified path. [Default: %default]""")
153 help="""Path to Doxygen tool. [Default: %default]""")