Searched defs:target (Results 101 - 125 of 242) sorted by relevance

12345678910

/frameworks/base/core/java/android/os/
H A DMessage.java103 /*package*/ Handler target; field in class:Message
138 * message (including its target) into the new one.
153 m.target = orig.target;
160 * Same as {@link #obtain()}, but sets the value for the <em>target</em> member on the Message returned.
161 * @param h Handler to assign to the returned Message object's <em>target</em> member.
166 m.target = h;
174 * @param h Handler to assign to the returned Message object's <em>target</em> member.
180 m.target = h;
187 * Same as {@link #obtain()}, but sets the values for both <em>target</e
343 setTarget(Handler target) argument
[all...]
/frameworks/base/core/java/android/util/
H A DPathParser.java93 * @param nodesTo The target path represented in an array of PathDataNode
115 * Update the target's data to match the source.
116 * Before calling this, make sure canMorph(target, source) is true.
118 * @param target The target path represented in an array of PathDataNode
121 public static void updateNodes(PathDataNode[] target, PathDataNode[] source) { argument
123 target[i].mType = source[i].mType;
125 target[i].mParams[j] = source[i].mParams[j];
280 * @param path The target Path object.
624 * @param p The target fo
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnectionWrapper.java30 public InputConnectionWrapper(InputConnection target, boolean mutable) { argument
32 mTarget = target;
36 * Change the target of the input connection.
38 public void setTarget(InputConnection target) { argument
42 mTarget = target;
/frameworks/base/libs/hwui/
H A DAnimator.cpp85 void BaseRenderNodeAnimator::attach(RenderNode* target) { argument
86 mTarget = target;
230 float RenderPropertyAnimator::getValue(RenderNode* target) const {
231 return (target->properties().*mPropertyAccess->getter)();
234 void RenderPropertyAnimator::setValue(RenderNode* target, float value) { argument
235 (target->animatorProperties().*mPropertyAccess->setter)(value);
248 float CanvasPropertyPrimitiveAnimator::getValue(RenderNode* target) const {
252 void CanvasPropertyPrimitiveAnimator::setValue(RenderNode* target, float value) { argument
271 float CanvasPropertyPaintAnimator::getValue(RenderNode* target) const {
287 void CanvasPropertyPaintAnimator::setValue(RenderNode* target, floa argument
315 setValue(RenderNode* target, float value) argument
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterGraph.java84 Filter target,
86 if (source == null || target == null) {
88 } else if (!containsFilter(source) || !containsFilter(target)) {
93 InputPort inPort = target.getInputPort(inputName);
99 target + "!");
110 Filter target = getFilter(targetName);
114 } else if (target == null) {
116 "Attempting to connect unknown target filter '" + targetName + "'!");
118 connect(source, outputName, target, inputName);
210 Filter target
82 connect(Filter source, String outputName, Filter target, String inputName) argument
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_frame.cpp35 // target for shaders.
196 GLFrame* target = new GLFrame(gl_env_); local
197 target->Init(width_, height_);
198 target->CopyPixelsFrom(this);
199 return target;
380 // Create target frame
381 GLFrame target(gl_env_);
382 target.Init(width_, height_);
384 // Render the texture to the target
385 GetIdentity()->Process(sources, &target);
[all...]
/frameworks/base/native/android/
H A Dstorage_manager.cpp106 ObbCallback* target = NULL; local
113 target = cb;
120 if (target != NULL) {
121 target->cb(filename, state, target->data);
122 delete target;
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11Ext.java40 void glTexParameterfv(int target, int pname, float[] param, int offset); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationTemplateViewWrapper.java168 private void fadeIconColorFilter(final ImageView target, boolean dark, long delay) { argument
172 updateIconColorFilter(target, (Float) animation.getAnimatedValue());
177 private void fadeIconAlpha(final ImageView target, boolean dark, long delay) { argument
182 target.setImageAlpha((int) (255 * (1f - t) + mIconDarkAlpha * t));
187 protected void fadeGrayscale(final ImageView target, final boolean dark, long delay) { argument
192 target.setColorFilter(new ColorMatrixColorFilter(mGrayscaleColorMatrix));
198 target.setColorFilter(null);
204 private void updateIconColorFilter(ImageView target, boolean dark) { argument
205 updateIconColorFilter(target, dark ? 1f : 0f);
208 private void updateIconColorFilter(ImageView target, floa argument
220 updateIconAlpha(ImageView target, boolean dark) argument
224 updateGrayscale(ImageView target, boolean dark) argument
237 interpolateColor(int source, int target, float t) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeScrimController.java72 startScrimAnimation(false /* inFront */, 0f /* target */,
74 startScrimAnimation(true /* inFront */, 0f /* target */,
139 private void startScrimAnimation(final boolean inFront, float target, long duration, argument
141 startScrimAnimation(inFront, target, duration, interpolator, 0 /* delay */,
145 private void startScrimAnimation(final boolean inFront, float target, long duration, argument
150 if (currentTarget == target) {
155 ValueAnimator anim = ValueAnimator.ofFloat(getDozeAlpha(inFront), target);
177 setCurrentTarget(inFront, target);
184 private void setCurrentTarget(boolean inFront, float target) { argument
186 mInFrontTarget = target;
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DScriptGroup.java186 private void validateCycle(Node target, Node original) { argument
187 for (int ct = 0; ct < target.mOutputs.size(); ct++) {
188 final ConnectLine cl = target.mOutputs.get(ct);
/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingHelper.java281 public int indexOf(ArrayList<NotificationRecord> notificationList, NotificationRecord target) { argument
282 return Collections.binarySearch(notificationList, target, mFinalComparator);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
H A DQuad.java130 * Returns the transformation matrix to transform the source Quad to the target Quad.
133 * @param target the target quad
134 * @return the transformation matrix to map source to target.
136 public static Matrix getTransform(Quad source, Quad target) { argument
139 transform.setPolyToPoly(source.asCoords(), 0, target.asCoords(), 0, 3);
/frameworks/base/tools/split-select/
H A DMain.cpp40 "split-select --target <config> --base <path/to/apk> [--split <path/to/apk> [...]]\n"
44 " --target <config> Performs the Split APK selection on the given configuration.\n"
59 " Generates the logic for selecting a Split APK given some target Android device configuration.\n"
61 " to install the given Split APK. Using the flag --target along with the device configuration\n"
66 Vector<SplitDescription> select(const SplitDescription& target, const Vector<SplitDescription>& splits) { argument
68 return selector.getBestSplits(target);
251 if (arg == "--target") {
255 fprintf(stderr, "error: missing parameter for --target.\n");
319 fprintf(stderr, "error: invalid --target config: '%s'.\n",
/frameworks/ml/bordeaux/learning/multiclass_pa/native/
H A Dmulticlass_pa.cpp55 int MulticlassPA::PickAClassExcept(int target) { argument
60 } while (target == picked);
106 float MulticlassPA::TrainOneExample(const vector<float>& inputs, int target) { argument
107 //CHECK_GE(target, 0);
108 //CHECK_LT(target, num_classes_);
109 float target_class_score = Score(inputs, parameters_[target]);
110 // VLOG(1) << "target class " << target << " score " << target_class_score;
111 int other_class = PickAClassExcept(target);
129 parameters_[target][
138 SparseTrainOneExample( const vector<pair<int, float> >& inputs, int target) argument
[all...]
/frameworks/native/opengl/tools/glgen2/registry/
H A Dgenheaders.py32 # target - string name of target header, or all targets if None
39 target = None variable
78 target = arg variable
79 write('Using target', target, file=sys.stderr)
554 if (target and target != genOpts.filename):
567 if (target and generated == 0):
568 write('Failed to generate target
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES11RenderEngine.cpp183 GLuint target = texture.getTextureTarget(); local
184 glBindTexture(target, texture.getTextureName());
189 glTexParameterx(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
190 glTexParameterx(target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
191 glTexParameterx(target, GL_TEXTURE_MAG_FILTER, filter);
192 glTexParameterx(target, GL_TEXTURE_MIN_FILTER, filter);
H A DGLES20RenderEngine.cpp157 GLuint target = texture.getTextureTarget(); local
158 glBindTexture(target, texture.getTextureName());
163 glTexParameteri(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
164 glTexParameteri(target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
165 glTexParameteri(target, GL_TEXTURE_MAG_FILTER, filter);
166 glTexParameteri(target, GL_TEXTURE_MIN_FILTER, filter);
278 // activate the previous render target
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
H A DEthernetNetworkFactory.java348 public synchronized void start(Context context, Handler target) { argument
359 mFactory = new LocalNetworkFactory(NETWORK_TYPE, context, target.getLooper());
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneStateIntentReceiver.java64 public PhoneStateIntentReceiver(Context context, Handler target) { argument
67 setTarget(target);
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicColorMatrix.cpp377 static uint8_t * addBranch(uint8_t *buf, const uint8_t *target, uint32_t condition) { argument
378 size_t off = (target - buf - 8) >> 2;
/frameworks/rs/
H A DrsScriptC_Lib.cpp229 Script *target,
233 target->runForEach(rsc, /* root slot */ 0, in, out, usr, usrBytes, call);
228 rsrForEach(Context *rsc, Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrBytes, const RsScriptCall *call) argument
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptGroup.java193 private void validateCycle(Node target, Node original) { argument
194 for (int ct = 0; ct < target.mOutputs.size(); ct++) {
195 final ConnectLine cl = target.mOutputs.get(ct);
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp39 AMessage::AMessage(uint32_t what, ALooper::handler_id target) argument
41 mTarget(target),
61 ALooper::handler_id AMessage::target() const { function in class:android::AMessage
441 tmp = StringPrintf(", target = %d", mTarget);
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java225 * Sets the target object for all current {@link #getChildAnimations() child animations}
229 * @param target The object being animated
232 public void setTarget(Object target) { argument
236 ((AnimatorSet)animation).setTarget(target);
238 ((ObjectAnimator)animation).setTarget(target);

Completed in 2395 milliseconds

12345678910