Searched defs:target (Results 76 - 100 of 242) sorted by relevance

12345678910

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DRedEyeFilter.java95 public void initProgram(FilterContext context, int target) { argument
96 switch (target) {
105 "target " + target + "!");
107 mTarget = target;
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DCountedDataInputStream.java75 public void skipTo(long target) throws IOException { argument
77 long diff = target - cur;
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncQueue.java62 final SyncStorageEngine.EndPoint info = op.target;
72 Log.v(TAG, "Missing sync adapter info for authority " + op.target);
91 Log.w(TAG, "Missing sync service for authority " + op.target);
160 if (op.target.userId == userId) {
199 public void onBackoffChanged(SyncStorageEngine.EndPoint target, long backoff) { argument
200 // For each op that matches the target of the changed op, update its
203 if (op.target.matchesSpec(target)) {
210 public void onDelayUntilTimeChanged(SyncStorageEngine.EndPoint target, long delayUntil) { argument
211 // for each op that matches the target inf
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DRampAnimator.java25 * a given variable rate until it reaches a particular target value.
54 * the value jumps directly to the target.
56 * @param target The target value.
58 * @return True if the target differs from the previous target.
60 public boolean animateTo(int target, int rate) { argument
61 // Immediately jump to the target the first time.
63 if (mFirstTime || target != mCurrentValue) {
66 mTargetValue = target;
[all...]
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DDeviceSelectAction.java31 * Triggered by {@link HdmiTvClient}, attempts to select the given target device
32 * for a new active source. It does its best to wake up the target in standby mode
44 // The number of times we try to wake up the target device before we give up
71 * @param target target logical device that will be a new active source
75 HdmiDeviceInfo target, IHdmiControlCallback callback) {
78 mTarget = target;
74 DeviceSelectAction(HdmiCecLocalDeviceTv source, HdmiDeviceInfo target, IHdmiControlCallback callback) argument
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGLToolbox.java76 public static void readTarget(RenderTarget target, ByteBuffer pixels, int width, int height) { argument
77 target.focus();
103 public static void allocateTexturePixels(int texId, int target, int width, int height) { argument
104 setTexturePixels(texId, target, (ByteBuffer)null, width, height);
107 public static void setTexturePixels(int texId, int target, Bitmap bitmap) { argument
108 GLES20.glBindTexture(target, texId);
109 GLUtils.texImage2D(target, 0, bitmap, 0);
114 public static void setTexturePixels(int texId, int target, ByteBuffer pixels, argument
116 GLES20.glBindTexture(target, texId);
122 GLES20.glTexImage2D(target,
[all...]
H A DOutputPort.java28 * be consumed by the target filter before a new frame can be pushed on the output port. If the
44 * Returns true, if this port is connected to a target port.
45 * @return true, if this port is connected to a target port.
151 void setTarget(InputPort target) { argument
152 mTarget = target;
H A DTextureSource.java32 public static TextureSource fromTexture(int texId, int target) { argument
33 return new TextureSource(texId, target, false);
108 return "TextureSource(id=" + mTexId + ", target=" + mTarget + ")";
115 private TextureSource(int texId, int target, boolean isOwner) { argument
117 mTarget = target;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTransformsAndAnimationsActivity.java167 private void startAnimator(View target) { argument
168 ObjectAnimator anim1b = ObjectAnimator.ofFloat(target, View.ALPHA, 0);
/frameworks/compile/libbcc/lib/Support/
H A DDisassembler.cpp84 const llvm::Target* target = local
87 if (target == NULL) {
88 ALOGE("Invalid target triple for disassembler: %s (%s)!",
94 target->createMCSubtargetInfo(pTriple, /* CPU */"", /* Features */"");;
101 disassembler = target->createMCDisassembler(*subtarget_info);
103 mc_inst_info = target->createMCInstrInfo();
105 mc_reg_info = target->createMCRegInfo(pTriple);
107 asm_info = target->createMCAsmInfo(pTriple);
115 inst_printer = target->createMCInstPrinter(asm_info->getAssemblerDialect(),
/frameworks/compile/mclinker/include/mcld/Support/
H A DTargetRegistry.h45 /// RegisterTarget - Register the given target. Attempts to register a
46 /// target which has already been registered will be ignored.
52 /// @param T - The target being registered.
58 /// given target.
60 /// @param T - The target being registered.
61 /// @param Fn - A function to construct a TargetMachine for the target.
70 /// target.
72 /// @param T - the target being registered
73 /// @param Fn - A function to create MCLinker for the target
80 /// RegisterEmulation - Register a emulation function for the target
149 TargetRegistry::iterator target, ie = TargetRegistry::end(); local
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp70 LDSection* target = m_Module.getSection(output_name); local
72 if (NULL == target) {
73 target = LDSection::Create(output_name,
77 target->setAlign(pInputSection.align());
78 m_Module.getSectionTable().push_back(target);
81 switch (target->kind()) {
84 if (target->hasEhFrame())
85 eh_frame = target->getEhFrame();
87 eh_frame = IRBuilder::CreateEhFrame(*target);
90 UpdateSectionAlign(*target, pInputSectio
[all...]
/frameworks/ex/common/java/com/android/common/
H A DNetworkConnectivityListener.java101 Handler target = it.next();
102 Message message = Message.obtain(target, mHandlers.get(target));
103 target.sendMessage(message);
167 * @param target The target handler.
170 public void registerHandler(Handler target, int what) { argument
171 mHandlers.put(target, what);
176 * @param target
178 public void unregisterHandler(Handler target) { argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DKeyEventCompat.java38 Object target);
113 Object target) {
136 Object target) {
137 return KeyEventCompatEclair.dispatch(event, receiver, state, target);
208 Object target) {
209 return IMPL.dispatch(event, receiver, state, target);
37 dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, Object target) argument
112 dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, Object target) argument
135 dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, Object target) argument
207 dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, Object target) argument
/frameworks/av/media/libmedia/
H A DCharacterEncodingDetector.cpp227 char* target = buffer; local
229 ucnv_convertEx(mUtf8Conv, conv, &target, target + targetLength,
238 *target = 0;
240 while (--target > buffer && *target == ' ') {
241 *target = 0;
H A DIAudioTrack.cpp151 int target) {
158 data.writeInt32(target);
263 int target = data.readInt32(); local
264 reply->writeInt32(setMediaTimeTransform(xform, target));
150 setMediaTimeTransform(const LinearTransform& xform, int target) argument
/frameworks/base/cmds/idmap/
H A Dscan.cpp94 String16 target; local
102 target = String16(p, len);
114 if (target == String16(target_package_name)) {
229 ALOGE("error: failed to create idmap for target=%s overlay=%s idmap=%s\n",
/frameworks/base/core/java/android/animation/
H A DAnimator.java388 * ObjectAnimator object will use the information it has about its target object
391 * information (such as a target object) to gather these values.
400 * ObjectAnimator object will use the information it has about its target object
403 * information (such as a target object) to gather these values.
409 * Sets the target object whose property will be animated by this animation. Not all subclasses
410 * operate on target objects (for example, {@link ValueAnimator}, but this method
414 * @param target The object being animated
416 public void setTarget(Object target) { argument
H A DObjectAnimator.java30 * This subclass of {@link ValueAnimator} provides support for animating properties on target objects.
31 * The constructors of this class take parameters to define the target object that will be animated
52 * A weak reference to the target object on which the property exists, set
67 * in a call to the function <code>setFoo()</code> on the target object. If either
100 // New property/values/target should cause re-initialization prior to starting
125 // New property/values/target should cause re-initialization prior to starting
133 * in a call to the function <code>setFoo()</code> on the target object. If either
179 * Private utility constructor that initializes the target object and name of the
182 * @param target The object whose property is to be animated. This object should
187 private ObjectAnimator(Object target, Strin argument
198 ObjectAnimator(T target, Property<T, ?> property) argument
217 ofInt(Object target, String propertyName, int... values) argument
240 ofInt(Object target, String xPropertyName, String yPropertyName, Path path) argument
262 ofInt(T target, Property<T, Integer> property, int... values) argument
281 ofInt(T target, Property<T, Integer> xProperty, Property<T, Integer> yProperty, Path path) argument
307 ofMultiInt(Object target, String propertyName, int[][] values) argument
327 ofMultiInt(Object target, String propertyName, Path path) argument
351 ofMultiInt(Object target, String propertyName, TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) argument
372 ofArgb(Object target, String propertyName, int... values) argument
390 ofArgb(T target, Property<T, Integer> property, int... values) argument
411 ofFloat(Object target, String propertyName, float... values) argument
434 ofFloat(Object target, String xPropertyName, String yPropertyName, Path path) argument
456 ofFloat(T target, Property<T, Float> property, float... values) argument
476 ofFloat(T target, Property<T, Float> xProperty, Property<T, Float> yProperty, Path path) argument
502 ofMultiFloat(Object target, String propertyName, float[][] values) argument
523 ofMultiFloat(Object target, String propertyName, Path path) argument
547 ofMultiFloat(Object target, String propertyName, TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) argument
571 ofObject(Object target, String propertyName, TypeEvaluator evaluator, Object... values) argument
598 ofObject(Object target, String propertyName, @Nullable TypeConverter<PointF, ?> converter, Path path) argument
620 ofObject(T target, Property<T, V> property, TypeEvaluator<V> evaluator, V... values) argument
648 ofObject(T target, Property<T, P> property, TypeConverter<V, P> converter, TypeEvaluator<V> evaluator, V... values) argument
675 ofObject(T target, @NonNull Property<T, V> property, @Nullable TypeConverter<PointF, V> converter, Path path) argument
699 ofPropertyValuesHolder(Object target, PropertyValuesHolder... values) argument
894 setTarget(@ullable Object target) argument
[all...]
/frameworks/base/core/java/android/content/
H A DIntentSender.java35 * A description of an Intent and target action to perform with it.
142 * @param code Result code to supply back to the IntentSender's target.
168 * @param code Result code to supply back to the IntentSender's target.
322 IBinder target = in.readStrongBinder();
323 return target != null ? new IntentSender(target) : null;
366 public IntentSender(IIntentSender target) { argument
367 mTarget = target;
371 public IntentSender(IBinder target) { argument
372 mTarget = IIntentSender.Stub.asInterface(target);
[all...]
/frameworks/base/core/java/android/hardware/
H A DLegacySensorManager.java211 LegacyListener(SensorListener target) { argument
212 mTarget = target;
/frameworks/base/core/java/android/net/
H A DBaseNetworkStateTracker.java81 public void startMonitoring(Context context, Handler target) { argument
83 mTarget = Preconditions.checkNotNull(target);
H A DDnsPinger.java120 Handler target, int connectionType) {
124 mTarget = target;
119 DnsPinger(Context context, String TAG, Looper looper, Handler target, int connectionType) argument
H A DNetworkStateTracker.java97 * @param target is the Hander to which to return the events.
99 public void startMonitoring(Context context, Handler target); argument
/frameworks/base/core/java/android/net/http/
H A DAndroidHttpClient.java278 public HttpResponse execute(HttpHost target, HttpRequest request) argument
280 return delegate.execute(target, request);
283 public HttpResponse execute(HttpHost target, HttpRequest request, argument
285 return delegate.execute(target, request, context);
300 public <T> T execute(HttpHost target, HttpRequest request, argument
303 return delegate.execute(target, request, responseHandler);
306 public <T> T execute(HttpHost target, HttpRequest request, argument
309 return delegate.execute(target, request, responseHandler, context);

Completed in 981 milliseconds

12345678910