Home
last modified time | relevance | path

Searched refs:target (Results 1 – 25 of 85) sorted by relevance

1234

/development/testrunner/coverage/
Dcoverage_targets.py76 target = coverage_target.CoverageTarget()
77 self._ParseCoverageTarget(target, target_element)
78 self._AddTarget(target)
80 def _AddTarget(self, target): argument
81 self._target_map[target.GetName()] = target
86 for target in self:
87 build_targets.append(target.GetName())
101 def _ParseCoverageTarget(self, target, target_element): argument
108 target.SetName(target_element.getAttribute(self._NAME_ATTR))
109 target.SetType(target_element.getAttribute(self._TYPE_ATTR))
[all …]
Dcoverage.py70 target, argument
95 target.GetName(),
106 return self._GenerateReport(report_path, coverage_local_path, [target],
149 for target in targets:
150 input_metadata = os.path.join(self._GetBuildIntermediatePath(target),
155 def _GetBuildIntermediatePath(self, target): argument
157 self._out_path, self._TARGET_INTERMEDIATES_BASE_PATH, target.GetType(),
158 "%s_intermediates" % target.GetName())
169 for target in targets:
170 target_srcs = target.GetPaths()
[all …]
/development/tools/repo_diff/service/repodiff/controllers/
Ddenormalize.go21 for _, target := range config.DiffTargets {
22 err := denormalizeViewRecentProjectForTarget(target)
30 func denormalizeViewRecentProjectForTarget(target e.DiffTarget) error {
31 mappedTarget, err := getMappedTarget(target)
35 denormalizeRepo, err := repositories.NewScopedDenormalizerRepository(target, mappedTarget)
53 for _, target := range config.DiffTargets {
54 if err := denormalizeDiffRowsForTarget(target); err != nil {
61 func denormalizeDiffRowsForTarget(target e.DiffTarget) error {
62 mappedTarget, err := getMappedTarget(target)
66 denormalizeRepo, err := repositories.NewScopedDenormalizerRepository(target, mappedTarget)
[all …]
Dreporter.go17 for _, target := range appConfig.DiffTargets {
18 if err := generateCommitReport(appConfig, target); err != nil {
25 func generateCommitReport(appConfig ent.ApplicationConfig, target ent.DiffTarget) error {
26 …ating commit report for (upstream) %s vs (downstream) %s\n", target.Upstream.Branch, target.Downst…
31 mappedTarget, err := sourceRepo.DiffTargetToMapped(target)
47 fname := filepath.Join(dir, filenameForTarget(target))
61 func filenameForTarget(target ent.DiffTarget) string {
67 target.Upstream.Branch,
68 target.Downstream.Branch,
Ddifferential.go40 for _, target := range config.DiffTargets {
41 …fmt.Printf("Processing differential from %s to %s\n", target.Upstream.Branch, target.Downstream.Br…
43 commitCSV, projectCSV, err := runPyScript(config, target)
47 err = TransferScriptOutputToDownstream(config, target, projectCSV, commitCSV, commonManifest)
99 func setupCommand(pyScript string, config ent.ApplicationConfig, target ent.DiffTarget) *exec.Cmd {
104 target.Downstream.URL,
106 target.Downstream.Branch,
108 target.Upstream.URL,
110 target.Upstream.Branch,
116 func runPyScript(config ent.ApplicationConfig, target ent.DiffTarget) (projectCSV string, commitCSV…
[all …]
Dcontract.go14 func MaybeNullObjectCommitRepository(target ent.MappedDiffTarget) Committer {
15 c, err := repositories.NewCommitRepository(target)
/development/vndk/tools/header-checker/utils/
Dcreate_reference_dumps.py38 def get_lib_arch_str(target): argument
39 assert target.primary_arch != ''
43 if target.arch_variant != target.arch:
44 target_arch_variant_str = '_' + target.arch_variant
45 return target.arch + target_arch_variant_str
48 def find_and_copy_lib_lsdumps(target, ref_dump_dir_stem, ref_dump_dir_insertion, argument
52 target.arch, target.arch_variant, target.cpu_variant,
62 get_lib_arch_str(target), compress)
109 for target in targets:
110 if target.arch == '' or target.arch_variant == '':
[all …]
/development/tools/repo_diff/service/repodiff/repositories/
Dcommon.go8 func cleanedDiffTarget(target e.DiffTarget) e.DiffTarget {
11 URL: protocolStrippedURL(target.Upstream.URL),
12 Branch: target.Upstream.Branch,
15 URL: protocolStrippedURL(target.Downstream.URL),
16 Branch: target.Downstream.Branch,
Dproject.go18 target e.MappedDiffTarget member
43 p.target,
58 p.target.UpstreamTarget,
59 p.target.DownstreamTarget,
60 p.target.UpstreamTarget,
61 p.target.DownstreamTarget,
120 p.target.UpstreamTarget,
121 p.target.DownstreamTarget,
134 func NewProjectRepository(target e.MappedDiffTarget) (project, error) {
138 target: target,
Dcommit.go34 target e.MappedDiffTarget member
41 target: c.target,
63 c.target,
78 c.target.UpstreamTarget,
79 c.target.DownstreamTarget,
80 c.target.UpstreamTarget,
81 c.target.DownstreamTarget,
141 c.target.UpstreamTarget,
142 c.target.DownstreamTarget,
187 c.target.UpstreamTarget,
[all …]
Dsource.go109 func (s source) DiffTargetToMapped(target e.DiffTarget) (e.MappedDiffTarget, error) {
111 target.Upstream.URL,
112 target.Upstream.Branch,
115 target.Downstream.URL,
116 target.Downstream.Branch,
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
DMatrixTrackingGL.java93 public void glBindTexture(int target, int texture) { in glBindTexture() argument
94 mgl.glBindTexture(target, texture); in glBindTexture()
146 public void glCompressedTexImage2D(int target, int level, in glCompressedTexImage2D() argument
149 mgl.glCompressedTexImage2D(target, level, internalformat, width, in glCompressedTexImage2D()
153 public void glCompressedTexSubImage2D(int target, int level, int xoffset, in glCompressedTexSubImage2D() argument
156 mgl.glCompressedTexSubImage2D(target, level, xoffset, yoffset, width, in glCompressedTexSubImage2D()
160 public void glCopyTexImage2D(int target, int level, int internalformat, in glCopyTexImage2D() argument
162 mgl.glCopyTexImage2D(target, level, internalformat, x, y, width, in glCopyTexImage2D()
166 public void glCopyTexSubImage2D(int target, int level, int xoffset, in glCopyTexSubImage2D() argument
168 mgl.glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, in glCopyTexSubImage2D()
[all …]
/development/vndk/tools/definition-tool/tests/
Dtest_elfdump.py50 target = cls.targets[target_name]
60 target.compile(obj_file, src_file, [])
64 target.link(out_file, [obj_file], ['-ldl', '-lc', '-lstdc++'])
69 target.compile(obj_file, src_file, [])
73 target.link(out_file, [obj_file], ['-shared', '-lc'])
77 target.link(out_file, [obj_file],
83 target.link(out_file, [obj_file],
89 target.link(out_file, [obj_file],
95 target.link(out_file, [obj_file],
165 for target in ('arm', 'arm64', 'mips', 'mips64', 'x86', 'x86_64'):
[all …]
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DAnimateDrawable.java30 public AnimateDrawable(Drawable target) { in AnimateDrawable() argument
31 super(target); in AnimateDrawable()
34 public AnimateDrawable(Drawable target, Animation animation) { in AnimateDrawable() argument
35 super(target); in AnimateDrawable()
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DShowcaseFragment.java158 View target = mRoot.findViewById(current.targetViewRes); in executeStep() local
160 mRoot.findViewById(current.highlightTargetViewRes) : target; in executeStep()
161 target.getParent().requestChildFocus(target, target); in executeStep()
162 mScrollView.smoothScrollTo(0, Float.valueOf(target.getTop()).intValue() in executeStep()
183 private void highlightView(View target) { in highlightView() argument
186 mOldTarget = target; in highlightView()
187 mOldTargetBackground = target.getBackground(); in highlightView()
188 target.setBackground(res.getDrawable(R.drawable.showcase_background, null /* theme*/)); in highlightView()
189 target.setElevation(HIGHLIGHT_ELEVATION * mDisplayMetrics.density); in highlightView()
/development/samples/AppNavigation/src/com/example/android/appnavigation/app/
DPeerActivity.java44 Intent target = new Intent(this, PeerActivity.class); in onLaunchPeer() local
45 target.putExtra(EXTRA_PEER_COUNT, mPeerCount); in onLaunchPeer()
46 startActivity(target); in onLaunchPeer()
DContentCategoryActivity.java34 Intent target = new Intent(this, ContentViewActivity.class); in onViewContent() local
35 startActivity(target); in onViewContent()
DViewFromOtherTaskActivity.java34 Intent target = new Intent(this, OutsideTaskActivity.class) in onLaunchOtherTask() local
37 startActivity(target); in onLaunchOtherTask()
/development/samples/ApiDemos/src/com/example/android/apis/view/
DAnimation3.java54 final View target = findViewById(R.id.target); in onItemSelected() local
55 final View targetParent = (View) target.getParent(); in onItemSelected()
58 targetParent.getWidth() - target.getWidth() - targetParent.getPaddingLeft() - in onItemSelected()
96 target.startAnimation(a); in onItemSelected()
/development/vndk/tools/sourcedr/ninja/
Dlist_ninja_build_dep.py36 def collect_build_targets(graph, target): argument
40 build = graph[target]
76 builds = collect_build_targets(graph, args.target)
78 print('error: Failed to find the target {}'.format(arg.target),
/development/tools/winscope/loaders/
Dproto-loader.js32 root.resolvePath = function pbjsResolvePath(origin, target) { argument
34 var normTarget = protobuf.util.path.normalize(target);
43 var iresolved = protobuf.util.path.resolve(paths[i] + "/", target);
/development/samples/TtsEngine/src/com/example/android/ttsengine/
DRobotSpeakSettings.java35 public void onBuildHeaders(List<Header> target) { in onBuildHeaders() argument
36 loadHeadersFromResource(R.xml.preferences_headers, target); in onBuildHeaders()
/development/tools/repo_diff/service/repodiff/mappers/
Dmappers.go270 func PrependMappedDiffTarget(target e.MappedDiffTarget, rowsOfCols [][]interface{}) [][]interface{}…
273 target.UpstreamTarget,
274 target.DownstreamTarget,
285 func AppendDiffTarget(target e.DiffTarget, rowsOfCols [][]interface{}) [][]interface{} {
288 target.Upstream.URL,
289 target.Upstream.Branch,
290 target.Downstream.URL,
291 target.Downstream.Branch,
/development/samples/USB/MissileLauncher/
Ddefault.properties10 # Project target.
11 target=android-12 key
/development/samples/training/basic/ActivityLifecycle/
Dproject.properties10 # Project target.
11 target=android-14 key

1234