Home
last modified time | relevance | path

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

12

/development/tools/external_crates/crate_health/src/
Dversion_match.rs27 pub dest: Option<&'a T>, field
33 pub dest: &'a T, field
38 self.dest.map(|dest| CompatibleVersionPair { source: self.source, dest }) in to_compatible()
44 dest: CollectionType, field
49 pub fn new(source: CollectionType, dest: CollectionType) -> Result<Self> { in new()
50 let mut vm = VersionMatch { source, dest, compatibility: BTreeMap::new() }; in new()
52 for nv in vm.dest.map_field().keys() { in new()
57 let compatibility = if let Some(dest_nv) = vm.dest.get_version_upgradable_from(nv) { in new()
72 pub fn is_superfluous(&self, dest: &dyn NamedAndVersioned) -> bool { in is_superfluous()
73 self.dest.map_field().contains_key(dest) in is_superfluous()
[all …]
Dmigration.rs36 let dest_dir_absolute = self.dest.staging_path().abs(); in copy_customizations()
54 self.dest.staging_path() in copy_customizations()
72 let dest = read_link(src_path.abs())?; in copy_customizations() localVariable
73 if dest.exists() { in copy_customizations()
77 dest.display(), in copy_customizations()
80 symlink(dest, dest_dir_absolute.join(link))?; in copy_customizations()
88 &self.dest.staging_path().join(&"Android.bp").rel(), in diff_android_bps()
115 let mut dest = CrateCollection::new(source.repo_root()); in migrate() localVariable
116 dest.add_from(&pseudo_crate.get_path().join(&"vendor").rel())?; in migrate()
118 let mut version_match = VersionMatch::new(source, dest)?; in migrate()
Dmain.rs205 if pair.source.version() != pair.dest.version() { in main()
209 pair.dest.version() in main()
212 if !pair.dest.is_migratable() { in main()
213 if !pair.dest.patch_success() { in main()
217 if !pair.dest.generate_android_bp_success() { in main()
219 } else if pair.dest.android_bp_unchanged() { in main()
225 .dest in main()
238 .arg(pair.dest.staging_path().rel()) in main()
246 pair.dest.staging_path() in main()
253 .arg(pair.dest.staging_path().rel()) in main()
[all …]
Dreports.rs142 let dest = crate_pair.dest; in migratable_table() localVariable
143 let dest_version = if source.version() == dest.version() { in migratable_table()
146 dest.version().to_string() in migratable_table()
204 let maybe_dest = crate_pair.dest; in migration_eligible_table()
211 maybe_dest.map_or(&"None", |dest| { in migration_eligible_table()
212 if dest.version() != source.version() { in migration_eligible_table()
213 dest.version() in migration_eligible_table()
218 &prefer_yes(!maybe_dest.is_some_and(|dest| !dest.patch_success())), in migration_eligible_table()
220 !maybe_dest.is_some_and(|dest| !dest.generate_android_bp_success()), in migration_eligible_table()
222 .map_or("Error".to_string(), |dest| { in migration_eligible_table()
[all …]
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DNode.java242 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/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/python-packages/gdbrunner/gdbrunner/
D__init__.py35 "--adb", dest="adb_path",
41 "-a", action="store_const", dest="device", const="-a",
44 "-d", action="store_const", dest="device", const="-d",
47 "-e", action="store_const", dest="device", const="-e",
50 "-s", metavar="SERIAL", action="store", dest="serial",
/development/vndk/tools/header-checker/utils/
Dcreate_reference_dumps.py183 dest='libs', metavar='LIB',
186 dest='products', metavar='PRODUCT',
193 parser.add_argument('--lib-variant', action='append', dest='include_tags',
/development/samples/ApiDemos/src/com/example/android/apis/app/
DPresentationActivity.java566 public void writeToParcel(Parcel dest, int flags) { in writeToParcel() argument
567 dest.writeInt(photo); in writeToParcel()
568 dest.writeInt(colors[0]); in writeToParcel()
569 dest.writeInt(colors[1]); in writeToParcel()
570 dest.writeInt(displayModeId); in writeToParcel()
/development/tools/winscope/protos/protolog/udc/
Dprotolog.proto27 option (.android.msg_privacy).dest = DEST_LOCAL;
50 option (.android.msg_privacy).dest = DEST_LOCAL;
/development/scripts/
Dlldbclient.py85 "-p", dest="target_pid", metavar="PID", type=int,
88 "-n", dest="target_name", metavar="NAME",
91 "-r", dest="run_cmd", metavar="CMD", nargs=argparse.REMAINDER,
109 dest="vscode_launch_props",
114 dest="vscode_launch_file",
Dgdbclient.py85 "-p", dest="target_pid", metavar="PID", type=int,
88 "-n", dest="target_name", metavar="NAME",
91 "-r", dest="run_cmd", metavar="CMD", nargs=argparse.REMAINDER,
109 dest="vscode_launch_props",
114 dest="vscode_launch_file",
Dacov-llvm.py216 subparsers = parser.add_subparsers(dest='command', required=True)
Dget_rust_pkg.py70 dest="pkgs",
/development/tools/winscope/protos/test/
Dintdef_translation_test.proto16 option (.android.msg_privacy).dest = DEST_AUTOMATIC;
/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/tools/compare_cts_reports/
Dcompare_cts_reports.py258 dest='cts_reports', action='append',
262 dest='cts_reports', action='append',
/development/tools/repo_pull/
Drepo_review.py105 help='Remove hashtag', dest='remove_hashtag')
111 help='Delete topic name', dest='delete_topic')
/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/tools/winscope/src/adb/
Dwinscope_proxy.py55 parser.add_argument('--verbose', '-v', dest='loglevel', action='store_const', const=INFO)
56 parser.add_argument('--debug', '-d', dest='loglevel', action='store_const', const=DEBUG)
/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/tools/cargo_embargo/src/
Dmain.rs620 let dest = out_dir.join(f.file_name().unwrap()); in write_build_files() localVariable
621 std::fs::copy(f, dest).expect("failed to copy out file"); in write_build_files()
/development/samples/training/testingfun/gradle/wrapper/
Dgradle-wrapper.jar ... .io.File zip java.io.File dest java.util.Enumeration entries java.util. ...
/development/samples/devbytes/telephony/SmsSampleProject/gradle/wrapper/
Dgradle-wrapper.jar ... .io.File zip java.io.File dest java.util.Enumeration entries java.util. ...

12