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

1234567891011>>

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetBufferPointerv.java1 // C function void glGetBufferPointerv ( GLenum target, GLenum pname, GLvoid** params )
8 int target,
7 glGetBufferPointerv( int target, int pname ) argument
H A DglMapBufferRange.java1 // C function GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access )
8 int target,
7 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/av/media/libstagefright/foundation/include/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/av/media/libstagefright/include/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/plugin/src/com/android/systemui/plugins/annotations/
H A DDependsOn.java30 Class<?> target(); method in interface:DependsOn
H A DRequires.java31 Class<?> target(); method in interface:Requires
/frameworks/native/cmds/installd/
H A Dmatchgen.py68 target = trie variable
70 target = target[c] variable
71 target["\0"] = t
73 def dump(target, index):
76 for k in sorted(target.keys()):
78 print "%scase '\\0': return %s;" % (prefix, target[k])
85 dump(target[k], index + 1)
/frameworks/av/media/libaaudio/src/utility/
H A DLinearRamp.cpp20 float target = mTarget.load(); local
21 if (target != mLevelTo) {
22 // Update target. Continue from previous level.
23 mLevelTo = target;
H A DLinearRamp.h25 * The ramp target can be updated from another thread.
26 * When the target is updated, a new ramp is started from the current position.
47 * @param target
49 void setTarget(float target) { argument
50 mTarget.store(target);
67 mLevelTo = level; // forces a ramp if it does not match target
80 * @return true if ramp is still moving towards the target
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFObjectWriter.h27 * \brief ELFObjectWriter writes the target-independent parts of object files.
46 const GNULDBackend& target() const { return m_Backend; } function in class:mcld::ELFObjectWriter
47 GNULDBackend& target() { return m_Backend; } function in class:mcld::ELFObjectWriter
/frameworks/support/transition/api14/android/support/transition/
H A DObjectAnimatorUtilsApi14.java29 public <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path) { argument
30 return ObjectAnimator.ofFloat(target, new PathProperty<>(property, path), 0f, 1f);
/frameworks/support/transition/api21/android/support/transition/
H A DObjectAnimatorUtilsApi21.java29 public <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path) { argument
30 return ObjectAnimator.ofObject(target, property, null, path);
/frameworks/support/transition/base/android/support/transition/
H A DObjectAnimatorUtilsImpl.java26 <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path); argument
/frameworks/support/transition/src/android/support/transition/
H A DObjectAnimatorUtils.java37 static <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path) { argument
38 return IMPL.ofPointF(target, property, path);
/frameworks/av/include/media/stagefright/
H A DDataConverter.h34 status_t convert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
38 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
41 // SampleConverterBase uses a ratio to calculate the source and target sizes
42 // based on source and target sample sizes.
48 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target) = 0;
61 static AudioConverter *Create(AudioEncoding source, AudioEncoding target);
64 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
69 AudioEncoding target, size_t targetSample)
72 mTo(target) { }
67 AudioConverter( AudioEncoding source, size_t sourceSample, AudioEncoding target, size_t targetSample) argument
/frameworks/av/media/libstagefright/foundation/include/
H A DDataConverter.h34 status_t convert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
38 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
41 // SampleConverterBase uses a ratio to calculate the source and target sizes
42 // based on source and target sample sizes.
48 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target) = 0;
61 static AudioConverter *Create(AudioEncoding source, AudioEncoding target);
64 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
69 AudioEncoding target, size_t targetSample)
72 mTo(target) { }
67 AudioConverter( AudioEncoding source, size_t sourceSample, AudioEncoding target, size_t targetSample) argument
/frameworks/av/media/libstagefright/include/
H A DDataConverter.h34 status_t convert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
38 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
41 // SampleConverterBase uses a ratio to calculate the source and target sizes
42 // based on source and target sample sizes.
48 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target) = 0;
61 static AudioConverter *Create(AudioEncoding source, AudioEncoding target);
64 virtual status_t safeConvert(const sp<MediaCodecBuffer> &source, sp<MediaCodecBuffer> &target);
69 AudioEncoding target, size_t targetSample)
72 mTo(target) { }
67 AudioConverter( AudioEncoding source, size_t sourceSample, AudioEncoding target, size_t targetSample) argument
/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.java41 * @param target destination dispatch type, invokes will be redirected to this dispatcher
44 public MethodNameInvoker(Dispatchable<T> target, Class<T> targetClass) { argument
47 mTarget = target;
64 * @throws IllegalArgumentException if {@code methodName} does not exist on the target class
65 * @throws Throwable will rethrow anything that the target method would normally throw
/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

Completed in 710 milliseconds

1234567891011>>