Searched defs:target (Results 26 - 50 of 242) sorted by relevance

12345678910

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DNegativeFilter.java61 public void initProgram(FilterContext context, int target) { argument
62 switch (target) {
71 "target " + target + "!");
73 mTarget = target;
H A DPosterizeFilter.java64 public void initProgram(FilterContext context, int target) { argument
65 switch (target) {
74 "target " + target + "!");
76 mTarget = target;
H A DRotateFilter.java61 public void initProgram(FilterContext context, int target) { argument
62 switch (target) {
72 "target " + target + "!");
74 mTarget = target;
H A DSepiaFilter.java62 public void initProgram(FilterContext context, int target) { argument
63 switch (target) {
72 "target " + target + "!");
74 mTarget = target;
H A DSimpleImageFilter.java84 protected void updateProgramWithTarget(int target, FilterContext context) { argument
85 if (target != mCurrentTarget) {
86 switch (target) {
103 mCurrentTarget = target;
H A DStraightenFilter.java63 public void initProgram(FilterContext context, int target) { argument
64 switch (target) {
73 "target " + target + "!");
75 mTarget = target;
H A DBitmapOverlayFilter.java71 public void initProgram(FilterContext context, int target) { argument
72 switch (target) {
81 "target " + target + "!");
83 mTarget = target;
H A DBlackWhiteFilter.java101 public void initProgram(FilterContext context, int target) { argument
102 switch (target) {
112 "target " + target + "!");
114 mTarget = target;
H A DCropRectFilter.java65 public void initProgram(FilterContext context, int target) { argument
66 switch (target) {
75 "target " + target + "!");
77 mTarget = target;
H A DDocumentaryFilter.java96 public void initProgram(FilterContext context, int target) { argument
97 switch (target) {
106 "target " + target + "!");
108 mTarget = target;
H A DFisheyeFilter.java85 public void initProgram(FilterContext context, int target) { argument
86 switch (target) {
95 "target " + target + "!");
97 mTarget = target;
H A DImageCombineFilter.java72 int target = getInputFormat(mInputNames[0]).getTarget();
74 if (target != getInputFormat(inputName).getTarget()) {
76 + ". All input frames must have the same target!");
106 protected void updateProgramWithTarget(int target, FilterContext context) { argument
107 if (target != mCurrentTarget) {
108 switch (target) {
126 mCurrentTarget = target;
H A DLomoishFilter.java136 public void initProgram(FilterContext context, int target) { argument
137 switch (target) {
146 "target " + target + "!");
148 mTarget = target;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DViewInvertHelper.java43 public ViewInvertHelper(View target, long fadeDuration) { argument
44 mTarget = target;
/frameworks/base/tools/split-select/
H A DSplitSelector.cpp38 const SplitDescription& target, Vector<SplitDescription>& splitsOut) {
44 if (!thisSplit.match(target)) {
48 if (!isSet || thisSplit.isBetterThan(bestSplit, target)) {
59 Vector<SplitDescription> SplitSelector::getBestSplits(const SplitDescription& target) const {
63 selectBestFromGroup(mGroups[i], target, bestSplits);
37 selectBestFromGroup(const SortedVector<SplitDescription>& splits, const SplitDescription& target, Vector<SplitDescription>& splitsOut) argument
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h88 /// target - the target data to relocate
89 const DWord& target() const { return m_TargetData; } function in class:mcld::Relocation
90 DWord& target() { return m_TargetData; } function in class:mcld::Relocation
92 /// targetRef - the reference of the target data
113 /// m_TargetData - target data of the place being relocated
116 /// m_pSymInfo - resolved symbol info of relocation target symbol
/frameworks/compile/mclinker/lib/ADT/GraphLite/
H A DDigraph.cpp35 Digraph::Node Digraph::Arc::target() const function in class:Digraph::Arc
/frameworks/ml/bordeaux/learning/multiclass_pa/java/android/bordeaux/learning/
H A DMulticlassPA.java36 int target) {
38 index_array, float_array, target, nativeClassifier);
63 int target, long classPtr);
34 sparseTrainOneExample(int[] index_array, float[] float_array, int target) argument
61 nativeSparseTrainOneExample(int[] index_array, float[] float_array, int target, long classPtr) argument
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxClassifier.java34 * is a float. Class label(target) for the training data is an integer.
78 public boolean update(final HashMap<Integer, Float> sample, int target) { argument
82 mClassifier.TrainOneSample(getArrayList(sample), target);
H A DLearning_MulticlassPA.java72 public void TrainOneSample(List<IntFloat> sample, int target) { argument
76 target);
/frameworks/native/cmds/servicemanager/
H A Dbctest.c10 uint32_t svcmgr_lookup(struct binder_state *bs, uint32_t target, const char *name) argument
21 if (binder_call(bs, &msg, &reply, target, SVC_MGR_CHECK_SERVICE))
34 int svcmgr_publish(struct binder_state *bs, uint32_t target, const char *name, void *ptr) argument
46 if (binder_call(bs, &msg, &reply, target, SVC_MGR_ADD_SERVICE))
/frameworks/rs/cpu_ref/linkloader/lib/
H A DStubLayout.cpp97 uint64_t *target = reinterpret_cast<uint64_t*>(stub + 4); local
98 *target = reinterpret_cast<uint64_t>(addr);
112 void **target = (void **)(stub + 4); local
113 *target = addr;
139 void **target = (void **)(stub + 1); local
140 *target = addr;
160 uint64_t *target = reinterpret_cast<uint64_t*>(stub + 6); local
161 *target = reinterpret_cast<uint64_t>(addr);
/frameworks/base/core/java/android/os/
H A DRemoteCallback.java47 RemoteCallbackProxy(IRemoteCallback target) { argument
48 super(target);
60 RemoteCallback(IRemoteCallback target) { argument
62 mTarget = target;
98 IBinder target = in.readStrongBinder();
99 return target != null ? new RemoteCallbackProxy(
100 IRemoteCallback.Stub.asInterface(target)) : null;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DMutableFrameFormat.java34 public MutableFrameFormat(int baseType, int target) { argument
35 super(baseType, target);
43 public void setTarget(int target) { argument
44 mTarget = target;
H A DOutputPort.java32 public void connectTo(InputPort target) { argument
36 mTargetPort = target;

Completed in 2256 milliseconds

12345678910