Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 10 of 10) sorted by relevance

/development/scripts/
Dgdbclient_test.py172 dst = textwrap.dedent("""\
178 self.assertEqual(gdbclient.insert_commands_into_vscode_config(dst,
187 dst = textwrap.dedent("""\
194 self.assertEqual(gdbclient.insert_commands_into_vscode_config(dst,
204 dst = textwrap.dedent("""\
212 self.assertEqual(gdbclient.insert_commands_into_vscode_config(dst,
223 dst = textwrap.dedent("""\
230 self.assertEqual(gdbclient.insert_commands_into_vscode_config(dst,
240 dst = textwrap.dedent("""\
247 self.assertEqual(gdbclient.insert_commands_into_vscode_config(dst,
[all …]
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DBitmapPixels.java112 IntBuffer dst = IntBuffer.allocate(n*n); in makeBuffer() local
114 dst.put(src); in makeBuffer()
116 dst.rewind(); in makeBuffer()
117 return dst; in makeBuffer()
121 ShortBuffer dst = ShortBuffer.allocate(n*n); in makeBuffer() local
123 dst.put(src); in makeBuffer()
125 dst.rewind(); in makeBuffer()
126 return dst; in makeBuffer()
DBitmapMesh.java87 float[] dst = mVerts; in warp() local
101 dst[i+0] = cx; in warp()
102 dst[i+1] = cy; in warp()
104 dst[i+0] = x + dx * pull; in warp()
105 dst[i+1] = y + dy * pull; in warp()
DPolyToPoly.java41 private void doDraw(Canvas canvas, float src[], float dst[]) { in doDraw() argument
43 mMatrix.setPolyToPoly(src, 0, dst, 0, src.length >> 1); in doDraw()
/development/vndk/tools/header-checker/src/utils/
Dheader_abi_util.h55 inline void AddToMap(std::map<K, T> *dst, Iterable &src, KeyGetter get_key, in AddToMap() argument
58 dst->insert(std::make_pair(get_key(&element), get_value(&element))); in AddToMap()
63 inline void AddToSet(std::set<K> *dst, Iterable &src, KeyGetter get_key) { in AddToSet() argument
65 dst->insert(get_key(element)); in AddToSet()
/development/tools/winscope/src/common/
Dfunction_utils.ts33 const assignMethods = (dst: object, src: object) => {
38 (dst as any)[methodName] = method;
/development/tools/external_crates/crate_health/src/
Dlib.rs100 pub fn copy_dir(src: &impl AsRef<Path>, dst: &impl AsRef<Path>) -> Result<()> { in copy_dir()
102 Command::new("cp").arg("--archive").arg(src.as_ref()).arg(dst.as_ref()).output()?; in copy_dir()
107 dst.as_ref().display(), in copy_dir()
/development/vndk/tools/header-checker/src/repr/protobuf/
Dconverter.cpp68 google::protobuf::RepeatedPtrField<abi_dump::CXXBaseSpecifier> *dst, in CopyBaseSpecifiersDiffIRToProtobuf() argument
71 abi_dump::CXXBaseSpecifier *added_base = dst->Add(); in CopyBaseSpecifiersDiffIRToProtobuf()
201 google::protobuf::RepeatedPtrField<abi_dump::EnumFieldDecl> *dst, in AddEnumFields() argument
204 abi_dump::EnumFieldDecl *added_enum_field = dst->Add(); in AddEnumFields()
214 google::protobuf::RepeatedPtrField<abi_diff::EnumFieldDeclDiff> *dst, in AddEnumFieldDiffs() argument
217 abi_diff::EnumFieldDeclDiff *field_diff_protobuf = dst->Add(); in AddEnumFieldDiffs()
/development/tools/privapp_permissions/
Dprivapp_permissions.py105 def pull(self, src, dst=None): argument
114 if not dst:
116 dst = tempfile.mkdtemp()
117 temp_dirs.append(dst)
119 _, dst = tempfile.mkstemp()
120 temp_files.append(dst)
121 self.call('pull %s %s' % (src, dst), False, self.verbose)
122 return dst
/development/vndk/tools/header-checker/src/linker/
Dheader_abi_linker.cpp170 bool LinkDecl(repr::ModuleIR *dst,
322 repr::ModuleIR *dst, const repr::AbiElementMap<T> &src, in LinkDecl() argument
324 assert(dst != nullptr); in LinkDecl()
338 if (!dst->AddLinkableMessage(element.second)) { in LinkDecl()
387 bool HeaderAbiLinker::LinkExportedSymbols(repr::ModuleIR *dst, in LinkExportedSymbols() argument
393 if (!dst->AddElfSymbol(symbol.second)) { in LinkExportedSymbols()