Searched defs:targets (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
H A DMain.java45 } else if ("--targets".equals(args[i].trim())) {
65 List<LockTarget> targets = null;
67 targets = Utils.getTargetsFromLegacyJackConfig(legacyTargets, legacyPreMethods,
70 targets = Collections.emptyList();
81 convert(bis, zos, targets);
95 private static void convert(InputStream in, OutputStream out, List<LockTarget> targets) argument
99 LockFindingClassVisitor cv = new LockFindingClassVisitor(targets, cw);
H A DLockFindingClassVisitor.java50 private final List<LockTarget> targets; field in class:LockFindingClassVisitor
52 public LockFindingClassVisitor(List<LockTarget> targets, ClassVisitor chain) { argument
54 this.targets = targets;
89 Analyzer a = new Analyzer(new LockTargetStateAnalysis(targets));
93 for (LockTarget t : targets) {
/frameworks/support/fragment/src/androidTest/java/androidx/fragment/app/
H A DTrackingVisibility.java28 * Visibility transition that tracks which targets are applied to it.
32 public final ArrayList<View> targets = new ArrayList<>(); field in class:TrackingVisibility
38 targets.add(endValues.view);
51 targets.add(startValues.view);
63 return targets;
68 targets.clear();
H A DTrackingTransition.java28 * A transition that tracks which targets are applied to it.
39 public final ArrayList<View> targets = new ArrayList<>(); field in class:TrackingTransition
63 targets.add(startValues.view);
66 targets.add(endValues.view);
79 return targets;
84 targets.clear();
/frameworks/av/camera/ndk/impl/
H A DACaptureRequest.h59 ACameraOutputTargets* targets; member in struct:ACaptureRequest
/frameworks/base/core/java/android/os/
H A DBroadcaster.java39 r.targets = new Handler[1];
41 r.targets[0] = target;
62 reg.targets = new Handler[1];
76 n = r.targets.length;
77 Handler[] oldTargets = r.targets;
85 r.targets = new Handler[n+1];
86 System.arraycopy(oldTargets, 0, r.targets, 0, n);
90 r.targets[n] = target;
117 Handler[] targets = r.targets;
208 Handler[] targets; field in class:Broadcaster.Registration
[all...]
/frameworks/base/core/java/android/service/resolver/
H A DResolverRankerService.java35 * A service to rank apps according to usage stats of apps, when the system is resolving targets for
88 * @param targets a list of {@link ResolverTarget}, for the list of apps to be ranked.
92 public void onPredictSharingProbabilities(final List<ResolverTarget> targets) {} argument
98 * @param targets a list of {@link ResolverTarget}, for the list of apps to be ranked.
104 final List<ResolverTarget> targets, final int selectedPosition) {}
137 private static void sendResult(List<ResolverTarget> targets, IResolverRankerResult result) { argument
139 result.sendResult(targets);
148 public void predict(final List<ResolverTarget> targets, final IResolverRankerResult result) argument
157 onPredictSharingProbabilities(targets);
158 sendResult(targets, resul
103 onTrainRankingModel( final List<ResolverTarget> targets, final int selectedPosition) argument
172 train(final List<ResolverTarget> targets, final int selectedPosition) argument
[all...]
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2RequestSettingsSet.java222 * @param targets The location(s) to draw the resulting image onto.
228 public CaptureRequest createRequest(CameraDevice camera, int template, Surface... targets) argument
238 for (Surface target : targets) {
/frameworks/base/packages/ExtServices/src/android/ext/services/resolver/
H A DLRResolverRankerService.java70 public void onPredictSharingProbabilities(List<ResolverTarget> targets) { argument
71 final int size = targets.size();
73 ResolverTarget target = targets.get(i);
80 public void onTrainRankingModel(List<ResolverTarget> targets, int selectedPosition) { argument
81 final int size = targets.size();
88 final ArrayMap<String, Float> positive = getFeatures(targets.get(selectedPosition));
89 final float positiveProbability = targets.get(selectedPosition).getSelectProbability();
90 final int targetSize = targets.size();
95 final ArrayMap<String, Float> negative = getFeatures(targets.get(i));
96 final float negativeProbability = targets
[all...]
/frameworks/compile/mclinker/include/mcld/
H A DLinkerConfig.h66 const TargetOptions& targets() const { return m_Targets; } function in class:mcld::LinkerConfig
67 TargetOptions& targets() { return m_Targets; } function in class:mcld::LinkerConfig
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DTouchAnimator.java44 private TouchAnimator(Object[] targets, KeyframeSet[] keyframeSets, argument
46 mTargets = targets;
/frameworks/base/core/java/com/android/internal/app/
H A DResolverComparator.java209 // compute features for each target according to usage stats of targets.
210 public void compute(List<ResolvedComponentInfo> targets) { argument
220 for (ResolvedComponentInfo target : targets) {
523 public void sendResult(List<ResolverTarget> targets) throws RemoteException {
525 Log.d(TAG, "Sending Result back to Resolver: " + targets);
530 msg.obj = targets;
574 private void predictSelectProbabilities(List<ResolverTarget> targets) { argument
584 mRanker.predict(targets, mConnection.resolverRankerResult);
H A DChooserActivity.java265 ChooserTarget[] targets = new ChooserTarget[pa.length];
269 targets = null;
272 targets[i] = (ChooserTarget) pa[i];
274 mCallerChooserTargets = targets;
627 Log.e(TAG, "Refinement result intent did not match any known targets; canceling");
661 void filterServiceTargets(String packageName, List<ChooserTarget> targets) { argument
662 if (targets == null) {
667 for (int i = targets.size() - 1; i >= 0; i--) {
668 final ChooserTarget target = targets.get(i);
686 targets
1125 addServiceResults(DisplayResolveInfo origTarget, List<ChooserTarget> targets) argument
[all...]
/frameworks/support/palette/src/main/java/androidx/palette/graphics/
H A DPalette.java158 Palette(List<Swatch> swatches, List<Target> targets) { argument
160 mTargets = targets;
177 * Returns the targets used to generate this palette.
353 // We need to make sure that the scored targets are generated first. This is so that
354 // inherited targets have something to inherit from
624 // Add the default targets
771 * Clear all added targets. This includes any default targets added automatically by
/frameworks/base/core/java/com/android/internal/graphics/palette/
H A DPalette.java158 Palette(List<Palette.Swatch> swatches, List<Target> targets) { argument
160 mTargets = targets;
177 * Returns the targets used to generate this palette.
353 // We need to make sure that the scored targets are generated first. This is so that
354 // inherited targets have something to inherit from
629 // Add the default targets
789 * Clear all added targets. This includes any default targets added automatically by
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.cpp193 std::vector<GLenum> targets; local
205 targets.push_back(target);
210 if (!RenderFrame(textures, targets)) {
420 const std::vector<GLenum>& targets) {
428 glBindTexture(targets[i], textures[i]);
460 const std::vector<GLenum>& targets) {
475 if (!BindInputTextures(textures, targets)) {
419 BindInputTextures(const std::vector<GLuint>& textures, const std::vector<GLenum>& targets) argument
459 RenderFrame(const std::vector<GLuint>& textures, const std::vector<GLenum>& targets) argument
/frameworks/base/tools/bit/
H A Dmain.cpp86 vector<Target*> targets; member in struct:Options
97 targets()
318 fprintf(out, " -i Install the targets\n");
326 fprintf(out, " One or more targets to build, install and test. The target\n");
395 fprintf(out, " Lists the targets in a format for tab completion. To get tab\n");
516 options->targets.push_back(target);
521 if (options->targets.size() == 0) {
612 run_phases(vector<Target*> targets, const Options& options) argument
633 // Get the modules for the targets
636 for (size_t i=0; i<targets
[all...]
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java2234 HashSet<String> targets = dataChangedTargets(packageName);
2235 dataChangedImpl(packageName, targets);
2238 private void dataChangedImpl(String packageName, HashSet<String> targets) { argument
2242 if (targets == null) {
2250 if (targets.contains(packageName)) {
2318 final HashSet<String> targets = dataChangedTargets(packageName);
2319 if (targets == null) {
2327 dataChangedImpl(packageName, targets);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 399 milliseconds