/ndk/build/tools/ |
build-docs.sh | 23 IN_DIR= 45 IN_DIR=$1 67 if [ -z "$IN_DIR" ]; then 68 IN_DIR=$ANDROID_NDK_ROOT/docs/text 70 IN_DIR=${IN_DIR%%/} 71 log "Input directory: $IN_DIR" 83 SRC_FILES=$(find "$IN_DIR" -name "*.text") 87 DST_FILE=$OUT_DIR${DST_FILE##$IN_DIR}
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/ |
dynamodb_load | 72 def dynamodb_load(tables, in_dir, create_tables): 75 metadata_file = os.path.join(in_dir, "%s.metadata" % t) 76 data_file = os.path.join(in_dir, "%s.data" % t) 109 dynamodb_load(namespace.tables, namespace.in_dir, namespace.create_tables)
|
/build/tools/releasetools/ |
build_image.py | 307 def BuildImage(in_dir, prop_dict, out_file, target_out=None): 308 """Build an image to out_file from in_dir with property prop_dict. 311 in_dir: path of input directory. 321 origin_in = in_dir 326 in_dir = tempfile.mkdtemp() 370 build_command.extend([in_dir, out_file, fs_type, 393 build_command.extend([in_dir, out_file]) 418 build_command.append(in_dir) 424 if in_dir != origin_in: 428 shutil.rmtree(in_dir) [all...] |
/system/core/adb/ |
test_device.py | 607 def make_random_host_files(in_dir, num_files): 613 file_handle = tempfile.NamedTemporaryFile(dir=in_dir, delete=False) 626 def make_random_device_files(device, in_dir, num_files, prefix='device_tmpfile'): 635 full_path = posixpath.join(in_dir, base_name) 688 temp_files = make_random_host_files(in_dir=host_dir, num_files=32) 740 temp_files = make_random_host_files(in_dir=host_dir, num_files=4) 744 subdir_temp_files = make_random_host_files(in_dir=subdir, 833 self.device, in_dir=self.DEVICE_TEMP_DIR, num_files=32) [all...] |
/system/tools/aidl/ |
aidl_language.cpp | 61 direction_(AidlArgument::IN_DIR), 71 case AidlArgument::IN_DIR:
|
aidl_language.h | 100 enum Direction { IN_DIR = 1, OUT_DIR = 2, INOUT_DIR = 3 }; 109 bool IsIn() const { return direction_ & IN_DIR; }
|
type_namespace.cpp | 137 if (a.GetDirection() != AidlArgument::IN_DIR &&
|
aidl_language_y.yy | 291 { $$ = AidlArgument::IN_DIR; }
|
generate_java_binder.cpp | 322 if (arg->GetDirection() & AidlArgument::IN_DIR) { 444 } else if (dir & AidlArgument::IN_DIR) {
|
generate_cpp.cpp | 99 if (a.GetDirection() & AidlArgument::IN_DIR) {
|
/external/libcxx/test/libcxx/android/test/ |
format.py | 90 def _run(self, exec_path, _, in_dir=None):
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/android/test/ |
format.py | 92 def _run(self, exec_path, _, in_dir=None):
|
/external/freetype/src/autofit/ |
afhints.c | 717 point->in_dir = (FT_Char)AF_DIR_NONE; 873 curr->in_dir = (FT_Char)out_dir; 876 next->in_dir = (FT_Char)out_dir; 901 if ( point->in_dir == AF_DIR_NONE && 949 else if ( point->out_dir == point->in_dir ) 979 else if ( point->in_dir == -point->out_dir ) [all...] |
afhints.h | 241 FT_Char in_dir; /* direction of inwards vector */ member in struct:AF_PointRec_
|
aflatin2.c | 767 if ( FT_ABS( point->in_dir ) == major_dir ) 771 while ( point->in_dir == start->in_dir ) 794 point->in_dir != point->out_dir ); [all...] |
/external/skia/tests/ |
SkpSkGrTest.cpp | 37 #define IN_DIR "D:\\9-30-13\\" 42 #define IN_DIR "/usr/local/google/home/caryclark" PATH_SLASH "9-30-13-skp" 194 SkString dirName(IN_DIR); 385 SkString path = make_filepath(fDirNo, IN_DIR, fFilename);
|