Searched refs:path (Results 1 – 25 of 53) sorted by relevance
123
/pdk/build/ |
D | pdk_utils.py | 28 if not os.path.isdir(dest_full_path): 38 if not os.path.isdir(dest_full_path): 43 if os.path.isfile(child_full_name): 56 if not os.path.isdir(dest_full_path): 66 if not os.path.isfile(src_full_name): 70 dest_dir = os.path.dirname(dest_file) 71 if not os.path.isdir(dest_dir): 81 if not os.path.isfile(src_full_name): 85 if not os.path.isdir(dest_dir): 101 if os.path.islink(item_full_path) or os.path.isfile(item_full_path): [all …]
|
D | prepare_pdk_tree.py | 71 [path, groupsAttrib] = handler.getAttribs(line) 73 subdirs.append(path) 116 sourceDir = os.path.abspath('.') 117 targetDir = os.path.abspath(targetDir) 128 if os.path.exists(targetDir + '/' + UMOUNT_FILE):
|
/pdk/apps/CameraITS/tools/ |
D | run_all_tests.py | 16 import os.path 34 tests += [(d,s[:-3],os.path.join("tests", d, s)) 35 for s in os.listdir(os.path.join("tests",d)) 42 os.mkdir(os.path.join(topdir, d)) 48 cmd = ['python', os.path.join(os.getcwd(),testpath)] + sys.argv[1:] 49 outdir = os.path.join(topdir,scene) 50 outpath = os.path.join(outdir,testname+"_stdout.txt") 51 errpath = os.path.join(outdir,testname+"_stderr.txt")
|
/pdk/util/ |
D | diff_products.py | 36 def removeTrailingParen(path): argument 37 if path.endswith(")"): 38 return path[:-1] 40 return path 42 def substPathVars(path, parentPath): argument 43 path_ = path.replace("$(SRC_TARGET_DIR)", "build/target") 44 path__ = path_.replace("$(LOCAL_PATH)", os.path.dirname(parentPath)) 76 if not os.path.exists(productPath): 108 for (k, path) in confList[key]: 109 print " " + k + ": " + path
|
/pdk/apps/HelloPDK/src/com/example/android/helloPDK/ |
D | MainActivity.java | 46 String path = intent.getStringExtra("com.example.android.helloPDK.Path"); in onCreate() local 48 if (path == null) { in onCreate() 49 path = ""; in onCreate() 52 setListAdapter(new SimpleAdapter(this, getData(path), in onCreate() 130 protected Intent browseIntent(String path) { in browseIntent() argument 133 result.putExtra("com.example.android.helloPDK.Path", path); in browseIntent()
|
/pdk/apps/CameraITS/tests/inprog/ |
D | test_faces.py | 18 import os.path 23 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_test_patterns.py | 18 import os.path 23 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_param_edge_mode.py | 19 import os.path 26 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_3a_remote.py | 18 import os.path 28 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_param_black_level_lock.py | 19 import os.path 30 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_ev_compensation.py | 18 import os.path 27 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_burst_sameness_fullres_auto.py | 18 import os.path 32 NAME = os.path.basename(__file__).split(".")[0]
|
/pdk/apps/CameraITS/tests/scene1/ |
D | test_yuv_plus_dng.py | 19 import os.path 24 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_param_flash_mode.py | 20 import os.path 25 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_yuv_plus_raw.py | 20 import os.path 26 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_yuv_plus_raw10.py | 20 import os.path 26 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_yuv_plus_jpeg.py | 20 import os.path 26 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_param_exposure_time.py | 21 import os.path 28 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_jpeg.py | 20 import os.path 26 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_param_sensitivity.py | 21 import os.path 28 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_raw_sensitivity.py | 19 import os.path 27 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_locked_burst.py | 18 import os.path 31 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_tonemap_sequence.py | 19 import os.path 25 NAME = os.path.basename(__file__).split(".")[0]
|
/pdk/apps/CameraITS/tests/scene0/ |
D | test_jitter.py | 19 import os.path 27 NAME = os.path.basename(__file__).split(".")[0]
|
D | test_gyro_bias.py | 22 import os.path 30 NAME = os.path.basename(__file__).split(".")[0]
|
123