Searched refs:target (Results 26 - 50 of 385) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES11.spec1 void glBindBuffer ( GLenum target, GLuint buffer )
2 void glBufferData ( GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage )
3 void glBufferSubData ( GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data )
12 void glGetBufferParameteriv ( GLenum target, GLenum pname, GLint *params )
25 void glGetTexParameterfv ( GLenum target, GLenum pname, GLfloat *params )
26 void glGetTexParameteriv ( GLenum target, GLenum pname, GLint *params )
27 void glGetTexParameterxv ( GLenum target, GLenum pname, GLfixed *params )
38 void glTexEnvi ( GLenum target, GLenum pname, GLint param )
39 void glTexEnviv ( GLenum target, GLenum pname, const GLint *params )
40 void glTexParameterfv ( GLenum target, GLenu
[all...]
H A DGLES31Ext.spec14 void glTexStorage3DMultisampleOES ( GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations )
16 void glEnableiEXT ( GLenum target, GLuint index )
17 void glDisableiEXT ( GLenum target, GLuint index )
23 GLboolean glIsEnablediEXT ( GLenum target, GLuint index )
24 void glFramebufferTextureEXT ( GLenum target, GLenum attachment, GLuint texture, GLint level )
27 void glTexParameterIivEXT ( GLenum target, GLenum pname, const GLint *params )
28 void glTexParameterIuivEXT ( GLenum target, GLenum pname, const GLuint *params )
29 void glGetTexParameterIivEXT ( GLenum target, GLenum pname, GLint *params )
30 void glGetTexParameterIuivEXT ( GLenum target, GLenum pname, GLuint *params )
35 void glTexBufferEXT ( GLenum target, GLenu
[all...]
H A DGLES11Ext.spec12 void glEGLImageTargetTexture2DOES ( GLenum target, GLeglImageOES image )
13 void glEGLImageTargetRenderbufferStorageOES ( GLenum target, GLeglImageOES image )
28 void glGetTexParameterxvOES ( GLenum target, GLenum pname, GLfixed *params )
38 void glMultiTexCoord4xOES ( GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q )
48 void glTexEnvxOES ( GLenum target, GLenum pname, GLfixed param )
49 void glTexEnvxvOES ( GLenum target, GLenum pname, const GLfixed *params )
50 void glTexParameterxOES ( GLenum target, GLenum pname, GLfixed param )
51 void glTexParameterxvOES ( GLenum target, GLenum pname, const GLfixed *params )
54 void glBindRenderbufferOES ( GLenum target, GLuint renderbuffer )
57 void glRenderbufferStorageOES ( GLenum target, GLenu
[all...]
H A DGLES30.spec4 void glTexImage3D ( GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels )
5 void glTexImage3D ( GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, GLsizei offset )
6 void glTexSubImage3D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels )
7 void glTexSubImage3D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei offset )
8 void glCopyTexSubImage3D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height )
9 void glCompressedTexImage3D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data )
10 void glCompressedTexImage3D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, GLsizei offset )
11 void glCompressedTexSubImage3D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data )
12 void glCompressedTexSubImage3D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, GLsizei offset )
16 void glBeginQuery ( GLenum target, GLuin
[all...]
/frameworks/base/libs/hwui/
H A DAnimator.h63 void attach(RenderNode* target);
81 virtual float getValue(RenderNode* target) const = 0;
82 virtual void setValue(RenderNode* target, float value) = 0;
83 RenderNode* target() { return mTarget; } function in class:android::uirenderer::BaseRenderNodeAnimator
140 virtual float getValue(RenderNode* target) const;
141 virtual void setValue(RenderNode* target, float value);
163 virtual float getValue(RenderNode* target) const;
164 virtual void setValue(RenderNode* target, float value);
182 virtual float getValue(RenderNode* target) const;
183 virtual void setValue(RenderNode* target, floa
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridSetSelectionBaseTest.java58 final int target = mGridView.getAdapter().getCount() - 1;
61 mGridView.setSelection(target);
66 assertEquals(mGridView.getSelectedItemPosition(), target);
74 final int target = mGridView.getAdapter().getCount() / 2;
77 mGridView.setSelection(target);
82 assertEquals(mGridView.getSelectedItemPosition(), target);
/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp32 pError = "Unable to find target for this triple (no target are registered)";
40 for (iterator target = begin(), ie = end(); target != ie; ++target) {
41 unsigned int quality = (*target)->getTripleQuality(triple);
45 best = *target;
49 ambiguity = *target;
83 pError = std::string("invalid target '") + pArchName + "'.\n";
98 pError = std::string("unable to get target fo
[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/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/support/v4/eclair/android/support/v4/view/
H A DKeyEventCompatEclair.java29 Object target) {
30 return event.dispatch(receiver, (KeyEvent.DispatcherState)state, target);
28 dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, Object target) argument
/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/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/base/opengl/java/android/opengl/
H A DGLES11.java154 // C function void glBindBuffer ( GLenum target, GLuint buffer )
157 int target,
161 // C function void glBufferData ( GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage )
164 int target,
170 // C function void glBufferSubData ( GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data )
173 int target,
281 // C function void glGetBufferParameteriv ( GLenum target, GLenum pname, GLint *params )
284 int target,
290 // C function void glGetBufferParameteriv ( GLenum target, GLenum pname, GLint *params )
293 int target,
156 glBindBuffer( int target, int buffer ) argument
163 glBufferData( int target, int size, java.nio.Buffer data, int usage ) argument
172 glBufferSubData( int target, int offset, int size, java.nio.Buffer data ) argument
283 glGetBufferParameteriv( int target, int pname, int[] params, int offset ) argument
292 glGetBufferParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
479 glGetTexParameterfv( int target, int pname, float[] params, int offset ) argument
488 glGetTexParameterfv( int target, int pname, java.nio.FloatBuffer params ) argument
496 glGetTexParameteriv( int target, int pname, int[] params, int offset ) argument
505 glGetTexParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
513 glGetTexParameterxv( int target, int pname, int[] params, int offset ) argument
522 glGetTexParameterxv( int target, int pname, java.nio.IntBuffer params ) argument
636 glTexEnvi( int target, int pname, int param ) argument
644 glTexEnviv( int target, int pname, int[] params, int offset ) argument
653 glTexEnviv( int target, int pname, java.nio.IntBuffer params ) argument
661 glTexParameterfv( int target, int pname, float[] params, int offset ) argument
670 glTexParameterfv( int target, int pname, java.nio.FloatBuffer params ) argument
678 glTexParameteri( int target, int pname, int param ) argument
686 glTexParameteriv( int target, int pname, int[] params, int offset ) argument
695 glTexParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
703 glTexParameterxv( int target, int pname, int[] params, int offset ) argument
712 glTexParameterxv( int target, int pname, java.nio.IntBuffer params ) argument
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11.java148 int target,
153 int target,
160 int target,
243 int target,
250 int target,
378 int target,
385 int target,
391 int target,
398 int target,
404 int target,
147 glBindBuffer( int target, int buffer ) argument
152 glBufferData( int target, int size, java.nio.Buffer data, int usage ) argument
159 glBufferSubData( int target, int offset, int size, java.nio.Buffer data ) argument
242 glGetBufferParameteriv( int target, int pname, int[] params, int offset ) argument
249 glGetBufferParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
377 glGetTexParameterfv( int target, int pname, float[] params, int offset ) argument
384 glGetTexParameterfv( int target, int pname, java.nio.FloatBuffer params ) argument
390 glGetTexParameteriv( int target, int pname, int[] params, int offset ) argument
397 glGetTexParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
403 glGetTexParameterxv( int target, int pname, int[] params, int offset ) argument
410 glGetTexParameterxv( int target, int pname, java.nio.IntBuffer params ) argument
479 glTexEnvi( int target, int pname, int param ) argument
485 glTexEnviv( int target, int pname, int[] params, int offset ) argument
492 glTexEnviv( int target, int pname, java.nio.IntBuffer params ) argument
498 glTexParameterfv( int target, int pname, float[] params, int offset ) argument
505 glTexParameterfv( int target, int pname, java.nio.FloatBuffer params ) argument
511 glTexParameteri( int target, int pname, int param ) argument
517 glTexParameteriv( int target, int pname, int[] params, int offset ) argument
524 glTexParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
530 glTexParameterxv( int target, int pname, int[] params, int offset ) argument
537 glTexParameterxv( int target, int pname, java.nio.IntBuffer params ) argument
[all...]
/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/core/jni/
H A Dandroid_animation_PropertyValuesHolder.cpp77 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jint arg)
79 env->CallVoidMethod(target, reinterpret_cast<jmethodID>(methodID), arg);
83 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jfloat arg)
85 env->CallVoidMethod(target, reinterpret_cast<jmethodID>(methodID), arg);
89 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, float arg1, float arg2)
91 env->CallVoidMethod(target, reinterpret_cast<jmethodID>(methodID), arg1, arg2);
95 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, float arg1, float arg2,
98 env->CallVoidMethod(target, reinterpret_cast<jmethodID>(methodID), arg1, arg2, arg3, arg4);
102 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jfloatArray arg)
110 env->CallVoidMethodA(target, reinterpret_cas
76 android_animation_PropertyValuesHolder_callIntMethod( JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jint arg) argument
82 android_animation_PropertyValuesHolder_callFloatMethod( JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jfloat arg) argument
88 android_animation_PropertyValuesHolder_callTwoFloatMethod( JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, float arg1, float arg2) argument
94 android_animation_PropertyValuesHolder_callFourFloatMethod( JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, float arg1, float arg2, float arg3, float arg4) argument
101 android_animation_PropertyValuesHolder_callMultipleFloatMethod( JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jfloatArray arg) argument
115 android_animation_PropertyValuesHolder_callTwoIntMethod( JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, int arg1, int arg2) argument
121 android_animation_PropertyValuesHolder_callFourIntMethod( JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, int arg1, int arg2, int arg3, int arg4) argument
128 android_animation_PropertyValuesHolder_callMultipleIntMethod( JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jintArray arg) argument
[all...]
/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;
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DCrossProcessFilter.java86 public void initProgram(FilterContext context, int target) { argument
87 switch (target) {
96 "target " + target + "!");
98 mTarget = target;
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;
/frameworks/rs/java/tests/RsTest/
H A DAndroid.mk24 LOCAL_RENDERSCRIPT_FLAGS := -target-api 0
/frameworks/base/core/java/android/net/
H A DLinkProperties.java713 * Compares this {@code LinkProperties} interface name against the target
715 * @param target LinkProperties to compare.
719 public boolean isIdenticalInterfaceName(LinkProperties target) { argument
720 return TextUtils.equals(getInterfaceName(), target.getInterfaceName());
724 * Compares this {@code LinkProperties} interface addresses against the target
726 * @param target LinkProperties to compare.
730 public boolean isIdenticalAddresses(LinkProperties target) { argument
731 Collection<InetAddress> targetAddresses = target.getAddresses();
738 * Compares this {@code LinkProperties} DNS addresses against the target
740 * @param target LinkPropertie
744 isIdenticalDnses(LinkProperties target) argument
763 isIdenticalRoutes(LinkProperties target) argument
776 isIdenticalHttpProxy(LinkProperties target) argument
788 isIdenticalStackedLinks(LinkProperties target) argument
809 isIdenticalMtu(LinkProperties target) argument
820 isIdenticalTcpBufferSizes(LinkProperties target) argument
868 compareAddresses(LinkProperties target) argument
897 compareDnses(LinkProperties target) argument
927 compareAllRoutes(LinkProperties target) argument
956 compareAllInterfaceNames(LinkProperties target) argument
[all...]
/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...]
/frameworks/support/v4/java/android/support/v4/provider/
H A DRawDocumentFile.java42 final File target = new File(mFile, displayName);
44 target.createNewFile();
45 return new RawDocumentFile(this, target);
54 final File target = new File(mFile, displayName);
55 if (target.isDirectory() || target.mkdir()) {
56 return new RawDocumentFile(this, target);
136 final File target = new File(mFile.getParentFile(), displayName);
137 if (mFile.renameTo(target)) {
138 mFile = target;
[all...]
/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

Completed in 4809 milliseconds

1234567891011>>