Searched defs:target (Results 1 - 25 of 353) 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/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/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/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/support/transition/src/main/java/androidx/transition/
H A DObjectAnimatorUtils.java27 static <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path) { argument
29 return ObjectAnimator.ofObject(target, property, null, path);
31 return ObjectAnimator.ofFloat(target, new PathProperty<>(property, path), 0f, 1f);
/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
H A DELFReaderIf.h51 /// target - the target backend
52 const GNULDBackend& target() const { return m_Backend; } function in class:mcld::ELFReaderIF
53 GNULDBackend& target() { return m_Backend; } function in class:mcld::ELFReaderIF
/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/tests/coretests/src/android/view/menu/
H A DContextMenuTest.java51 private void testMenuPosition(View target) throws InterruptedException { argument
58 int offsetX = target.getWidth() / 2;
59 int offsetY = target.getHeight() / 2;
61 getInstrumentation().runOnMainSync(() -> target.performLongClick(offsetX, offsetY));
66 ContextMenuUtils.assertContextMenuAlignment(target, offsetX, offsetY);
76 ContextMenuUtils.assertContextMenuAlignment(target, offsetX, offsetY);
/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/base/services/core/java/com/android/server/backup/
H A DBackupUtils.java39 public static boolean signaturesMatch(ArrayList<byte[]> storedSigHashes, PackageInfo target, argument
41 if (target == null || target.packageName == null) {
44 // If the target resides on the system partition, we allow it to restore
49 if ((target.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
50 if (DEBUG) Slog.v(TAG, "System app " + target.packageName + " - skipping sig check");
59 SigningInfo signingInfo = target.signingInfo;
78 return pmi.isDataRestoreSafe(storedSigHashes.get(0), target.packageName);
/frameworks/base/tools/aapt2/filter/
H A DConfigFilter.cpp87 const ConfigDescription& target = entry.first; local
89 uint32_t diff = target.diff(config);
115 config.smallestScreenWidthDp < target.smallestScreenWidthDp) {
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DExpressionParser.java53 public Expr parse(String input, @Nullable Location locationInFile, BindingTarget target) { argument
58 visitor.setBindingTarget(target);
/frameworks/native/cmds/servicemanager/
H A Dbctest.c11 uint32_t svcmgr_lookup(struct binder_state *bs, uint32_t target, const char *name) argument
22 if (binder_call(bs, &msg, &reply, target, SVC_MGR_CHECK_SERVICE))
35 int svcmgr_publish(struct binder_state *bs, uint32_t target, const char *name, void *ptr) argument
47 if (binder_call(bs, &msg, &reply, target, SVC_MGR_ADD_SERVICE))
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DNestedScrollingParentHelper.java62 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, argument
64 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH);
75 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, argument
99 public void onStopNestedScroll(@NonNull View target) { argument
100 onStopNestedScroll(target, ViewCompat.TYPE_TOUCH);
110 public void onStopNestedScroll(@NonNull View target, @NestedScrollType int type) { argument

Completed in 547 milliseconds

1234567891011>>