Searched refs:target (Results 76 - 100 of 385) sorted by relevance

1234567891011>>

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
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/tools/layoutlib/bridge/
H A DAndroid.mk21 LOCAL_JAVACFLAGS := -source 6 -target 6
/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))
H A Dbinder.h57 uint32_t target, uint32_t code);
68 void binder_acquire(struct binder_state *bs, uint32_t target);
69 void binder_release(struct binder_state *bs, uint32_t target);
71 void binder_link_to_death(struct binder_state *bs, uint32_t target, struct binder_death *death);
/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java408 * <code>TypeConverter</code> to convert from <code>PointF</code> to the target
481 * <code>TypeConverter</code> to convert from <code>PointF</code> to the target
661 * target object.
715 " not found on target class " + targetClass);
779 * object, it will be derived automatically given the property name, target object, and
783 * on the target object.
784 * @param target The object on which the setter (and possibly getter) exist.
786 void setupSetterAndGetter(Object target) { argument
789 // check to make sure that mProperty is on the class of target
798 testValue = convertBack(mProperty.get(target));
862 setupValue(Object target, Keyframe kf) argument
893 setupStartValue(Object target) argument
908 setupEndValue(Object target) argument
937 setAnimatedValue(Object target) argument
1150 setAnimatedValue(Object target) argument
1288 setAnimatedValue(Object target) argument
1385 setAnimatedValue(Object target) argument
1415 setupSetterAndGetter(Object target) argument
1492 setAnimatedValue(Object target) argument
1522 setupSetterAndGetter(Object target) argument
1611 nCallIntMethod(Object target, long methodID, int arg) argument
1612 nCallFloatMethod(Object target, long methodID, float arg) argument
1613 nCallTwoIntMethod(Object target, long methodID, int arg1, int arg2) argument
1614 nCallFourIntMethod(Object target, long methodID, int arg1, int arg2, int arg3, int arg4) argument
1616 nCallMultipleIntMethod(Object target, long methodID, int[] args) argument
1617 nCallTwoFloatMethod(Object target, long methodID, float arg1, float arg2) argument
1619 nCallFourFloatMethod(Object target, long methodID, float arg1, float arg2, float arg3, float arg4) argument
1621 nCallMultipleFloatMethod(Object target, long methodID, float[] args) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNavUtils.java57 final ComponentName target = new ComponentName(activity, parentName);
59 final String grandparent = NavUtils.getParentActivityName(activity, target);
61 ? IntentCompat.makeMainActivity(target)
62 : new Intent().setComponent(target);
154 * @param targetIntent An intent representing the target destination for up navigation
199 * @param upIntent An intent representing the target destination for up navigation
206 * Obtain an {@link Intent} that will launch an explicit target activity
220 * Obtain an {@link Intent} that will launch an explicit target activity
236 final ComponentName target = new ComponentName(context, parentActivity);
237 final String grandparent = getParentActivityName(context, target);
[all...]
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp158 // rsym - The relocation target symbol
222 // rsym - The relocation target symbol
402 // check if we shoule issue undefined reference for the relocation target
429 Relocator::DWord A = pReloc.target() + pReloc.addend();
435 // If the flag of target section is not ALLOC, we will not scan this
438 pReloc.target() = S + A;
467 pReloc.target() = S + A;
482 A += pReloc.target() & get_mask(pParent.getSize(pReloc.type()));
484 A += pReloc.target();
487 // If the flag of target sectio
[all...]
/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/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/core/java/android/view/
H A DWindowId.java201 IBinder target = in.readStrongBinder();
202 return target != null ? new WindowId(target) : null;
216 public WindowId(IWindowId target) { argument
217 mToken = target;
221 public WindowId(IBinder target) { argument
222 mToken = IWindowId.Stub.asInterface(target);
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java45 Intent target = (Intent)targetParcelable;
46 if (target != null) {
47 modifyTargetIntent(target);
74 super.onCreate(savedInstanceState, target, title, defaultTitleRes, initialIntents,
99 final ComponentName target = intent.getComponent();
100 if (target != null) {
101 final Intent fillIn = new Intent().putExtra(Intent.EXTRA_CHOSEN_COMPONENT, target);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java607 public void drawTexture(BasicTexture texture, RectF source, RectF target) { argument
608 if (target.width() <= 0 || target.height() <= 0) {
612 mTempTargetRect.set(target);
628 private void drawTextureRect(BasicTexture texture, RectF source, RectF target) { argument
630 drawTextureRect(texture, mTempTextureMatrix, target);
641 // It also clips the source and target coordinates if it is beyond the
643 private static void convertCoordinate(RectF source, RectF target, BasicTexture texture) { argument
657 target.right = target
667 drawTextureRect(BasicTexture texture, float[] textureMatrix, RectF target) argument
765 drawMixed(BasicTexture texture, int toColor, float ratio, RectF source, RectF target) argument
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.cpp75 // Strip LSB (THUMB bit) if "S" is a THUMB target.
95 // rsym - The relocation target symbol
111 // Initialize got entry to target symbol address
145 // rsym - The relocation target symbol
175 // rsym - The relocation target symbol
489 // rsym - The relocation target symbol
586 // rsym - The relocation target symbol
801 // rsym - The relocation target symbol
822 // check if we shoule issue undefined reference for the relocation target
843 Relocator::DWord A = pReloc.target()
1410 Relocator::DWord target = pReloc.target(); local
[all...]
/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...]
H A Dmulticlass_pa.h41 // Returns a random class that is different from the target class.
42 int PickAClassExcept(int target);
61 virtual float TrainOneExample(const std::vector<float>& inputs, int target);
63 const std::vector<std::pair<int, float> >& inputs, int target);
/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java344 private String getTextureTarget(int target) { argument
345 switch (target) {
349 return getHex(target);
353 private String getTextureEnvTarget(int target) { argument
354 switch (target) {
358 return getHex(target);
751 private String getHintTarget(int target) { argument
752 switch (target) {
766 return getHex(target);
1203 public void glBindTexture(int target, in argument
1338 glCompressedTexImage2D(int target, int level, int internalformat, int width, int height, int border, int imageSize, Buffer data) argument
1357 glCompressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, Buffer data) argument
1377 glCopyTexImage2D(int target, int level, int internalformat, int x, int y, int width, int height, int border) argument
1395 glCopyTexSubImage2D(int target, int level, int xoffset, int yoffset, int x, int y, int width, int height) argument
1770 glHint(int target, int mode) argument
2098 glMultiTexCoord4f(int target, float s, float t, float r, float q) argument
2111 glMultiTexCoord4x(int target, int s, int t, int r, int q) argument
2395 glTexEnvf(int target, int pname, float param) argument
2406 glTexEnvfv(int target, int pname, float[] params, int offset) argument
2418 glTexEnvfv(int target, int pname, FloatBuffer params) argument
2429 glTexEnvx(int target, int pname, int param) argument
2440 glTexEnvxv(int target, int pname, int[] params, int offset) argument
2452 glTexEnvxv(int target, int pname, IntBuffer params) argument
2463 glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, Buffer pixels) argument
2483 glTexParameterf(int target, int pname, float param) argument
2494 glTexParameterx(int target, int pname, int param) argument
2505 glTexParameteriv(int target, int pname, int[] params, int offset) argument
2516 glTexParameteriv(int target, int pname, IntBuffer params) argument
2527 glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, Buffer pixels) argument
2770 glBindBuffer(int target, int buffer) argument
2779 glBufferData(int target, int size, Buffer data, int usage) argument
2790 glBufferSubData(int target, int offset, int size, Buffer data) argument
2869 glGetBufferParameteriv(int target, int pname, int[] params, int offset) argument
2881 glGetBufferParameteriv(int target, int pname, IntBuffer params) argument
3091 glGetTexParameterfv(int target, int pname, float[] params, int offset) argument
3102 glGetTexParameterfv(int target, int pname, FloatBuffer params) argument
3112 glGetTexParameteriv(int target, int pname, int[] params, int offset) argument
3123 glGetTexParameteriv(int target, int pname, IntBuffer params) argument
3133 glGetTexParameterxv(int target, int pname, int[] params, int offset) argument
3145 glGetTexParameterxv(int target, int pname, IntBuffer params) argument
3248 glTexEnvi(int target, int pname, int param) argument
3258 glTexEnviv(int target, int pname, int[] params, int offset) argument
3269 glTexEnviv(int target, int pname, IntBuffer params) argument
3279 glTexParameterfv(int target, int pname, float[] params, int offset) argument
3291 glTexParameterfv(int target, int pname, FloatBuffer params) argument
3301 glTexParameteri(int target, int pname, int param) argument
3311 glTexParameterxv(int target, int pname, int[] params, int offset) argument
3323 glTexParameterxv(int target, int pname, IntBuffer params) argument
3451 glBindFramebufferOES(int target, int framebuffer) argument
3461 glBindRenderbufferOES(int target, int renderbuffer) argument
3503 glCheckFramebufferStatusOES(int target) argument
3555 glFramebufferRenderbufferOES(int target, int attachment, int renderbuffertarget, int renderbuffer) argument
3568 glFramebufferTexture2DOES(int target, int attachment, int textarget, int texture, int level) argument
3582 glGenerateMipmapOES(int target) argument
3633 glGetFramebufferAttachmentParameterivOES(int target, int attachment, int pname, int[] params, int offset) argument
3647 glGetFramebufferAttachmentParameterivOES(int target, int attachment, int pname, IntBuffer params) argument
3660 glGetRenderbufferParameterivOES(int target, int pname, int[] params, int offset) argument
3673 glGetRenderbufferParameterivOES(int target, int pname, IntBuffer params) argument
3774 glRenderbufferStorageOES(int target, int internalformat, int width, int height) argument
[all...]
/frameworks/native/opengl/include/GLES/
H A Dglext.h635 GL_API void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image);
636 GL_API void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image);
638 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image);
639 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image);
681 GL_API void GL_APIENTRY glGetTexParameterxvOES (GLenum target, GLenum pname, GLfixed *params);
691 GL_API void GL_APIENTRY glMultiTexCoord4xOES (GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
701 GL_API void GL_APIENTRY glTexEnvxOES (GLenum target, GLenum pname, GLfixed param);
702 GL_API void GL_APIENTRY glTexEnvxvOES (GLenum target, GLenum pname, const GLfixed *params);
703 GL_API void GL_APIENTRY glTexParameterxOES (GLenum target, GLenum pname, GLfixed param);
704 GL_API void GL_APIENTRY glTexParameterxvOES (GLenum target, GLenu
[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/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/core/java/android/os/
H A DLooper.java131 logging.println(">>>>> Dispatching to " + msg.target + " " +
135 msg.target.dispatchMessage(msg);
138 logging.println("<<<<< Finished to " + msg.target + " " + msg.callback);
148 + msg.target.getClass().getName() + " "
168 * target Handler and message contents.
/frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
H A DListSetSelectionTest.java101 View target = null;
107 target = child;
114 if (target != null) {
116 target.getTop());
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
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;

Completed in 1150 milliseconds

1234567891011>>