Searched defs:target (Results 1 - 25 of 242) sorted by relevance

12345678910

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetBufferPointerv.java1 // C function void glGetBufferPointerv ( GLenum target, GLenum pname, GLvoid** params )
4 int target,
3 glGetBufferPointerv( int target, int pname ) argument
H A DglMapBufferRange.java1 // C function GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access )
4 int target,
3 glMapBufferRange( int target, int offset, int length, int access ) argument
H A DglGetBufferPointerv.cpp1 /* void glGetBufferPointerv ( GLenum target, GLenum pname, GLvoid** params ) */
4 (JNIEnv *_env, jobject _this, jint target, jint pname) {
7 glGetBufferParameteri64v((GLenum)target, GL_BUFFER_MAP_LENGTH, &_mapLength);
8 glGetBufferPointerv((GLenum)target, (GLenum)pname, &_p);
3 android_glGetBufferPointerv__II(JNIEnv *_env, jobject _this, jint target, jint pname) argument
H A DglMapBufferRange.cpp1 /* GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access ) */
4 (JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) {
5 GLvoid* _p = glMapBufferRange((GLenum)target,
3 android_glMapBufferRange__IIII(JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) argument
/frameworks/av/include/media/stagefright/foundation/
H A DAHandlerReflector.h27 AHandlerReflector(T *target) argument
28 : mTarget(target) {
33 sp<T> target = mTarget.promote(); local
34 if (target != NULL) {
35 target->onMessageReceived(msg);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DIconPulser.java36 public void start(final View target) { argument
37 if (target == null || target.getScaleX() != 1) return; // n/a, or already running
38 target.animate().cancel();
39 target.animate().scaleX(PULSE_SCALE).scaleY(PULSE_SCALE)
44 target.animate().scaleX(1).scaleY(1).setListener(null);
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFObjectWriter.h30 * \brief ELFObjectWriter writes the target-independent parts of object files.
49 GNULDBackend& target() { return m_Backend; } function in class:mcld::ELFObjectWriter
51 const GNULDBackend& target() const { return m_Backend; } function in class:mcld::ELFObjectWriter
H A DELFReaderIf.h57 /// target - the target backend
58 const GNULDBackend& target() const { return m_Backend; } function in class:mcld::ELFReaderIF
59 GNULDBackend& target() { return m_Backend; } function in class:mcld::ELFReaderIF
/frameworks/base/core/java/android/hardware/camera2/dispatch/
H A DArgumentReplacingDispatcher.java44 * Create a new argument replacing dispatcher; dispatches are forwarded to {@code target}
54 * @param target destination dispatch type, methods will be redirected to this dispatcher
58 public ArgumentReplacingDispatcher(Dispatchable<T> target, int argumentIndex, argument
60 mTarget = checkNotNull(target, "target must not be null");
H A DDuckTypingDispatcher.java41 * @param target destination dispatch type, methods will be redirected to this dispatcher
44 public DuckTypingDispatcher(Dispatchable<T> target, Class<T> targetClass) { argument
46 checkNotNull(target, "target must not be null");
48 mDuck = new MethodNameInvoker<T>(target, targetClass);
H A DInvokeDispatcher.java32 public InvokeDispatcher(T target) { argument
33 mTarget = checkNotNull(target, "target must not be null");
H A DMethodNameInvoker.java40 * @param target destination dispatch type, invokes will be redirected to this dispatcher
43 public MethodNameInvoker(Dispatchable<T> target, Class<T> targetClass) { argument
45 mTarget = target;
62 * @throws IllegalArgumentException if {@code methodName} does not exist on the target class
63 * @throws Throwable will rethrow anything that the target method would normally throw
/frameworks/base/libs/androidfw/tests/
H A DConfig_test.cpp27 static ResTable_config selectBest(const ResTable_config& target, argument
34 if (!thisConfig.match(target)) {
38 if (thisConfig.isBetterThan(bestConfig, &target)) {
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
H A DImageFormat.java40 int target) {
41 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_BYTE, target);
45 if (target == FrameFormat.TARGET_SIMPLE) {
54 int target) {
59 target);
62 public static MutableFrameFormat create(int colorspace, int target) { argument
67 target);
36 create(int width, int height, int colorspace, int bytesPerSample, int target) argument
51 create(int width, int height, int colorspace, int target) argument
H A DObjectFormat.java29 public static MutableFrameFormat fromClass(Class clazz, int count, int target) { argument
31 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target);
36 result.setBytesPerSample(bytesPerSampleForClass(clazz, target));
40 public static MutableFrameFormat fromClass(Class clazz, int target) { argument
41 return fromClass(clazz, FrameFormat.SIZE_UNSPECIFIED, target);
44 public static MutableFrameFormat fromObject(Object object, int target) { argument
46 ? new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target)
47 : fromClass(object.getClass(), FrameFormat.SIZE_UNSPECIFIED, target);
50 public static MutableFrameFormat fromObject(Object object, int count, int target) { argument
52 ? new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target)
56 bytesPerSampleForClass(Class clazz, int target) argument
[all...]
H A DPrimitiveFormat.java28 public static MutableFrameFormat createByteFormat(int count, int target) { argument
29 return createFormat(FrameFormat.TYPE_BYTE, count, target);
32 public static MutableFrameFormat createInt16Format(int count, int target) { argument
33 return createFormat(FrameFormat.TYPE_INT16, count, target);
36 public static MutableFrameFormat createInt32Format(int count, int target) { argument
37 return createFormat(FrameFormat.TYPE_INT32, count, target);
40 public static MutableFrameFormat createFloatFormat(int count, int target) { argument
41 return createFormat(FrameFormat.TYPE_FLOAT, count, target);
44 public static MutableFrameFormat createDoubleFormat(int count, int target) { argument
45 return createFormat(FrameFormat.TYPE_DOUBLE, count, target);
48 createByteFormat(int target) argument
52 createInt16Format(int target) argument
56 createInt32Format(int target) argument
60 createFloatFormat(int target) argument
64 createDoubleFormat(int target) argument
68 createFormat(int baseType, int count, int target) argument
74 createFormat(int baseType, int target) argument
[all...]
/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/support/v4/java/android/support/v4/widget/
H A DListViewAutoScrollHelper.java29 public ListViewAutoScrollHelper(ListView target) { argument
30 super(target);
32 mTarget = target;
37 final ListView target = mTarget;
38 final int firstPosition = target.getFirstVisiblePosition();
43 final View firstView = target.getChildAt(0);
49 target.setSelectionFromTop(firstPosition, newTop);
60 final ListView target = mTarget;
61 final int itemCount = target.getCount();
66 final int childCount = target
[all...]
/frameworks/base/core/java/android/os/
H A DBroadcaster.java30 * target will be sent a copy of that message with targetWhat in the what field.
32 public void request(int senderWhat, Handler target, int targetWhat) argument
41 r.targets[0] = target;
81 if (oldTargets[i] == target && oldWhats[i] == targetWhat) {
90 r.targets[n] = target;
97 * Unregister for notifications for this senderWhat/target/targetWhat tuple.
99 public void cancelRequest(int senderWhat, Handler target, int targetWhat) argument
121 if (targets[i] == target && whats[i] == targetWhat) {
192 Handler target = targets[i];
196 target
[all...]
H A DMessenger.java41 * @param target The Handler that will receive sent messages.
43 public Messenger(Handler target) { argument
44 mTarget = target.getIMessenger();
53 * @throws RemoteException Throws DeadObjectException if the target
101 IBinder target = in.readStrongBinder();
102 return target != null ? new Messenger(target) : null;
143 * @param target The IBinder this Messenger should communicate with.
145 public Messenger(IBinder target) { argument
146 mTarget = IMessenger.Stub.asInterface(target);
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DColorTemperatureFilter.java74 public void initProgram(FilterContext context, int target) { argument
75 switch (target) {
84 "target " + target + "!");
86 mTarget = target;
H A DCrossProcessFilter.java86 public void initProgram(FilterContext context, int target) { argument
87 switch (target) {
96 "target " + target + "!");
98 mTarget = target;
H A DDuotoneFilter.java71 public void initProgram(FilterContext context, int target) { argument
72 switch (target) {
81 "target " + target + "!");
83 mTarget = target;
H A DFillLightFilter.java76 public void initProgram(FilterContext context, int target) { argument
77 switch (target) {
87 "target " + target + "!");
89 mTarget = target;
H A DFlipFilter.java60 public void initProgram(FilterContext context, int target) { argument
61 switch (target) {
70 "target " + target + "!");
72 mTarget = target;

Completed in 2382 milliseconds

12345678910