/development/testrunner/ |
D | runtest.py | 106 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 …]
|
D | adb_interface.py | 104 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/ |
D | build.py | 70 def _create_dirs_and_copy_file(dest, src): argument 71 dir_path = os.path.dirname(dest) 78 logging.debug('copy(): %s %s', src, dest) 79 shutil.copy(src, dest) 88 print 'Copy {}...'.format(item.dest) 90 _create_dirs_and_copy_file(item.dest, full_src) 114 print ' {:20} <== {}'.format(item.dest, item.src)
|
/development/samples/IntentPlayground/src/com/example/android/intentplayground/ |
D | Node.java | 242 public void writeToParcel(Parcel dest, int flags) { in writeToParcel() argument 243 dest.writeInt( mIsTaskNode ? 1 : 0); in writeToParcel() 245 dest.writeInt(mTaskId); in writeToParcel() 247 mName.writeToParcel(dest, 0); in writeToParcel() 250 dest.writeInt(0); in writeToParcel() 252 dest.writeInt(1); in writeToParcel() 253 dest.writeTypedList(mChildren); in writeToParcel() 255 dest.writeInt(mOptionFlags); in writeToParcel() 256 dest.writeInt(mIntent == null ? 0 : 1); in writeToParcel() 257 if (mIntent != null) mIntent.writeToParcel(dest, 0 /* flags */); in writeToParcel()
|
/development/gsi/gsi_util/gsi_util/commands/ |
D | pull.py | 27 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/ |
D | M4.java | 38 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/ |
D | test_dex_file.py | 66 def _assemble_smali(self, dest, source): argument 70 subprocess.check_call(['smali', 'a', source, '-o', dest]) 75 def _create_zip_file(self, dest, paths): argument 77 with zipfile.ZipFile(dest, 'w') as zip_file:
|
/development/python-packages/gdbrunner/ |
D | __init__.py | 33 "--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/zlib/ |
D | zlib.h | 631 ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest, 861 ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest, 1143 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, 1157 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen, 1180 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | PresentationActivity.java | 565 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/scripts/ |
D | gdbclient.py | 54 "-p", dest="target_pid", metavar="PID", type=int, 57 "-n", dest="target_name", metavar="NAME", 60 "-r", dest="run_cmd", metavar="CMD", nargs=argparse.REMAINDER,
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
D | MatrixStack.java | 152 public void getMatrix(float[] dest, int offset) { in getMatrix() argument 153 System.arraycopy(mMatrix, mTop, dest, offset, MATRIX_SIZE); in getMatrix()
|
/development/tools/repo_pull/ |
D | repo_review.py | 108 help='Remove hashtag', dest='remove_hashtag') 114 help='Delete topic name', dest='delete_topic')
|
/development/testrunner/coverage/ |
D | coverage.py | 320 "-c", "--combine-coverage", dest="combine_coverage", default=False, 324 "-t", "--tidy", dest="tidy", default=False, action="store_true",
|
/development/tools/ |
D | monkey | 197 parser.add_argument("-p", action="append", dest="packages",
|
/development/build/tools/ |
D | mk_sdk_repo_xml.sh | 26 Usage: $0 output.xml xml-schema [type [os zip[:dest]]*...]*
|
/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/ |
D | InteractiveLineGraphView.java | 625 private boolean hitTest(float x, float y, PointF dest) { in hitTest() argument 630 dest.set( in hitTest()
|
/development/vndk/tools/definition-tool/ |
D | vndk_definition_tool.py | 3283 '--no-unzip-files', action='store_false', dest='unzip_files', 3958 dest='check_apk', 3969 dest='check_dt_needed_ordering', 4235 subparsers = parser.add_subparsers(dest='subcmd')
|
/development/vndk/tools/sourcedr/ninja/ |
D | ninja.py | 989 subparsers = parser.add_subparsers(dest='command')
|