/build/tools/releasetools/ |
build_image.py | 41 def BuildImage(in_dir, prop_dict, out_file): 42 """Build an image to out_file from in_dir with property prop_dict. 45 in_dir: path of input directory. 60 build_command.extend([in_dir, out_file, fs_type, 70 build_command.append(in_dir) 157 in_dir = argv[0] 177 if not BuildImage(in_dir, image_properties, out_file): 178 print >> sys.stderr, "error: failed to build %s from %s" % (out_file, in_dir)
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
update_webgl_conformance_tests.py | 91 def update_directory(in_dir, out_dir): 92 for filename in glob.glob(os.path.join(in_dir, '*.html')): 93 update_file(os.path.join(in_dir, filename), out_dir)
|
/ndk/sources/cxx-stl/llvm-libc++/test/ |
lit.cfg | 29 def execute_command(self, command, in_dir=None): 35 if in_dir: 36 kwargs['cwd'] = in_dir
|
/external/freetype/src/autofit/ |
afhints.c | 719 AF_Direction in_dir = AF_DIR_NONE; local 733 in_dir = af_direction_compute( in_x, in_y ); 737 point->in_dir = (FT_Char)in_dir; 743 in_dir = af_direction_compute( out_x, out_y ); 744 point->out_dir = (FT_Char)in_dir; 753 else if ( point->out_dir == point->in_dir ) 761 else if ( point->in_dir == -point->out_dir )
|
afhints.h | 253 FT_Char in_dir; /* direction of inwards vector */ member in struct:AF_PointRec_
|
aflatin2.c | 738 if ( FT_ABS( point->in_dir ) == major_dir ) 742 while ( point->in_dir == start->in_dir ) 765 point->in_dir != point->out_dir ); [all...] |