Home
last modified time | relevance | path

Searched refs:dest (Results 1 – 19 of 19) sorted by relevance

/development/testrunner/
Druntest.py106 parser.add_option("-l", "--list-tests", dest="only_list_tests",
109 parser.add_option("-b", "--skip-build", dest="skip_build", default=False,
111 parser.add_option("-j", "--jobs", dest="make_jobs",
114 parser.add_option("-n", "--skip_execute", dest="preview", default=False,
117 parser.add_option("-i", "--build-install-only", dest="build_install_only", default=False,
120 parser.add_option("-r", "--raw-mode", dest="raw_mode", default=False,
123 parser.add_option("-a", "--suite-assign", dest="suite_assign_mode",
127 parser.add_option("-v", "--verbose", dest="verbose", default=False,
130 parser.add_option("-w", "--wait-for-debugger", dest="wait_for_debugger",
133 parser.add_option("-c", "--test-class", dest="test_class",
[all …]
Dadb_interface.py104 def Push(self, src, dest): argument
111 self.SendCommand("push %s %s" % (src, dest), timeout_time=60)
113 def Pull(self, src, dest): argument
124 if not os.path.exists(os.path.dirname(dest)):
125 os.makedirs(os.path.dirname(dest))
128 self.SendCommand("pull %s %s" % (src, dest), timeout_time=60)
/development/gsi/gsi_util/
Dbuild.py68 def _create_dirs_and_copy_file(dest, src): argument
69 dir_path = os.path.dirname(dest)
76 logging.debug('copy(): %s %s', src, dest)
77 shutil.copy(src, dest)
86 print 'Copy {}...'.format(item.dest)
88 _create_dirs_and_copy_file(item.dest, full_src)
112 print ' {:20} <== {}'.format(item.dest, item.src)
/development/gsi/gsi_util/gsi_util/commands/
Dpull.py27 source, dest = args.SOURCE, args.DEST
35 logging.debug('Copy %s -> %s', filename, dest)
36 shutil.copy(filename, dest)
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
DM4.java38 public void multiply(GLVertex src, GLVertex dest) { in multiply() argument
39 dest.x = src.x * m[0][0] + src.y * m[1][0] + src.z * m[2][0] + m[3][0]; in multiply()
40 dest.y = src.x * m[0][1] + src.y * m[1][1] + src.z * m[2][1] + m[3][1]; in multiply()
41 dest.z = src.x * m[0][2] + src.y * m[1][2] + src.z * m[2][2] + m[3][2]; in multiply()
/development/vndk/tools/definition-tool/tests/
Dtest_dex_file.py46 def _assemble_smali(self, dest, source): argument
50 subprocess.check_call(['smali', 'a', source, '-o', dest])
55 def _create_zip_file(self, dest, paths): argument
57 with zipfile.ZipFile(dest, 'w') as zip_file:
/development/samples/ApiDemos/src/com/example/android/apis/preference/
DMyPreference.java148 public void writeToParcel(Parcel dest, int flags) { in writeToParcel() argument
149 super.writeToParcel(dest, flags); in writeToParcel()
152 dest.writeInt(clickCounter); in writeToParcel()
/development/python-packages/gdbrunner/
D__init__.py33 "--adb", dest="adb_path",
39 "-a", action="store_const", dest="device", const="-a",
42 "-d", action="store_const", dest="device", const="-d",
45 "-e", action="store_const", dest="device", const="-e",
48 "-s", metavar="SERIAL", action="store", dest="serial",
/development/ndk/platforms/android-14/include/
Dzlib.h577 ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
773 ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
1009 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1024 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1047 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
/development/vndk/tools/sourcedr/sourcedr/commands/
D__init__.py15 subparsers = parser.add_subparsers(dest='subcmd')
/development/scripts/
Dgdbclient.py52 "-p", dest="target_pid", metavar="PID", type=int,
55 "-n", dest="target_name", metavar="NAME",
58 "-r", dest="run_cmd", metavar="CMD", nargs=argparse.REMAINDER,
/development/samples/ApiDemos/src/com/example/android/apis/app/
DPresentationActivity.java565 public void writeToParcel(Parcel dest, int flags) { in writeToParcel() argument
566 dest.writeInt(photo); in writeToParcel()
567 dest.writeInt(colors[0]); in writeToParcel()
568 dest.writeInt(colors[1]); in writeToParcel()
569 dest.writeInt(displayModeId); in writeToParcel()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
DMatrixStack.java152 public void getMatrix(float[] dest, int offset) { in getMatrix() argument
153 System.arraycopy(mMatrix, mTop, dest, offset, MATRIX_SIZE); in getMatrix()
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DShims.java65 public void writeToParcel(Parcel dest, int flags) {} in writeToParcel() argument
/development/testrunner/coverage/
Dcoverage.py320 "-c", "--combine-coverage", dest="combine_coverage", default=False,
324 "-t", "--tidy", dest="tidy", default=False, action="store_true",
/development/tools/
Dmonkey197 parser.add_argument("-p", action="append", dest="packages",
/development/build/tools/
Dmk_sdk_repo_xml.sh26 Usage: $0 output.xml xml-schema [type [os zip[:dest]]*...]*
/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
DInteractiveLineGraphView.java625 private boolean hitTest(float x, float y, PointF dest) { in hitTest() argument
630 dest.set( in hitTest()
/development/vndk/tools/definition-tool/
Dvndk_definition_tool.py3415 dest='check_apk',
3426 dest='check_dt_needed_ordering',
3718 subparsers = parser.add_subparsers(dest='subcmd')