Home | History | Annotate | Download | only in devtools

Lines Matching refs:full_path

114     def apply_filter( full_path, filter_rexs ):
115 """Return True if at least one of the filter regular expression match full_path."""
117 if rex.match( full_path ):
126 full_path = os.path.join( dir_path, entry )
127 ## print 'Testing:', full_path,
128 is_dir = os.path.isdir( full_path )
131 child_dirs.append( full_path )
132 included = apply_filter( full_path, include_filter )
133 rejected = apply_filter( full_path, exclude_filter )
137 link = os.path.islink( full_path )
138 is_file = os.path.isfile( full_path )