Searched defs:target (Results 51 - 75 of 242) sorted by relevance

12345678910

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DSaturateFilter.java85 public void initProgram(FilterContext context, int target) { argument
86 switch (target) {
100 "target " + target + "!");
102 mTarget = target;
H A DSharpenFilter.java83 public void initProgram(FilterContext context, int target) { argument
84 switch (target) {
93 "target " + target + "!");
95 mTarget = target;
H A DTintFilter.java68 public void initProgram(FilterContext context, int target) { argument
69 switch (target) {
78 "target " + target + "!");
80 mTarget = target;
H A DVignetteFilter.java77 public void initProgram(FilterContext context, int target) { argument
78 switch (target) {
87 "target " + target + "!");
89 mTarget = target;
H A DAutoFixFilter.java173 public void initProgram(FilterContext context, int target) { argument
174 switch (target) {
183 "target " + target + "!");
185 mTarget = target;
H A DGrainFilter.java107 public void initProgram(FilterContext context, int target) { argument
108 switch (target) {
121 "target " + target + "!");
123 mTarget = target;
/frameworks/base/opengl/java/android/opengl/
H A DETC1Util.java34 * @param target the texture target.
45 public static void loadTexture(int target, int level, int border, argument
48 loadTexture(target, level, border, fallbackFormat, fallbackType, createTexture(input));
54 * @param target the texture target.
64 public static void loadTexture(int target, int level, int border, argument
79 GLES10.glCompressedTexImage2D(target, level, ETC1.ETC1_RGB8_OES, width, height,
88 GLES10.glTexImage2D(target, level, fallbackFormat, width, height, border,
H A DGLUtils.java100 * @param target
106 public static void texImage2D(int target, int level, int internalformat, argument
114 if (native_texImage2D(target, level, internalformat, bitmap, -1, border)!=0) {
125 * @param target
132 public static void texImage2D(int target, int level, int internalformat, argument
140 if (native_texImage2D(target, level, internalformat, bitmap, type, border)!=0) {
149 * @param target
154 public static void texImage2D(int target, int level, Bitmap bitmap, argument
162 if (native_texImage2D(target, level, -1, bitmap, -1, border)!=0) {
183 * @param target
189 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap) argument
214 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
282 native_texImage2D(int target, int level, int internalformat, Bitmap bitmap, int type, int border) argument
284 native_texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
[all...]
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java119 * Copy package to the target location.
128 public int copyPackage(String packagePath, IParcelFileDescriptorFactory target) {
129 if (packagePath == null || target == null) {
137 return copyPackageInner(pkg, target);
367 private int copyPackageInner(PackageLite pkg, IParcelFileDescriptorFactory target) argument
369 copyFile(pkg.baseCodePath, target, "base.apk");
372 copyFile(pkg.splitCodePaths[i], target, "split_" + pkg.splitNames[i] + ".apk");
379 private void copyFile(String sourcePath, IParcelFileDescriptorFactory target, String targetName) argument
387 target.open(targetName, ParcelFileDescriptor.MODE_READ_WRITE));
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DFirstFrameAnimatorHelper.java46 public FirstFrameAnimatorHelper(ValueAnimator animator, View target) { argument
47 mTarget = target;
51 public FirstFrameAnimatorHelper(ViewPropertyAnimator vpa, View target) { argument
52 mTarget = target;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameImage2D.java82 * The source and target rectangles must be given in normalized coordinates, where 0,0 is the
85 * If the target rectangle is smaller than the target frame, the pixel values outside of the
86 * target rectangle are undefined.
91 * @param target The target frame to copy to.
93 * @param targetRect The target rectangle in normalized coordinates.
95 public void copyToFrame(FrameImage2D target, RectF sourceRect, RectF targetRect) { argument
97 gpuImageCopy(this, target, sourceRect, targetRect);
99 cpuImageCopy(this, target, sourceRec
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewPropertyAlphaActivity.java105 private void startAnim(View target) { argument
106 ObjectAnimator anim = ObjectAnimator.ofFloat(target, View.ALPHA, 0);
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DAnimationThread.java53 MessageBundle(Handler target, Message message, long uptimeMillis) { argument
54 mTarget = target;
H A DPropertyValuesHolder_Delegate.java65 /*package*/ static void nCallIntMethod(Object target, long methodID, int arg) { argument
70 /*package*/ static void nCallFloatMethod(Object target, long methodID, float arg) { argument
75 /*package*/ static void nCallTwoIntMethod(Object target, long methodID, int arg1, argument
81 /*package*/ static void nCallFourIntMethod(Object target, long methodID, int arg1, argument
87 /*package*/ static void nCallMultipleIntMethod(Object target, long methodID, argument
93 /*package*/ static void nCallTwoFloatMethod(Object target, long methodID, float arg1, argument
99 /*package*/ static void nCallFourFloatMethod(Object target, long methodID, float arg1, argument
105 /*package*/ static void nCallMultipleFloatMethod(Object target, long methodID, argument
/frameworks/compile/mclinker/include/mcld/ADT/GraphLite/
H A DListDigraph.h52 Node *target, *source; member in struct:mcld::graph::ListDigraph::Arc
/frameworks/ml/bordeaux/learning/multiclass_pa/jni/
H A Djni_multiclass_pa.cpp60 jint target,
75 classifier->SparseTrainOneExample(inputs, target);
56 Java_android_bordeaux_learning_MulticlassPA_nativeSparseTrainOneExample(JNIEnv* env, jobject thiz, jintArray index_array, jfloatArray value_array, jint target, jlong paPtr) argument
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiApConfigStore.java63 WifiApConfigStore(Context context, Handler target) { argument
64 super(TAG, target.getLooper());
74 public static WifiApConfigStore makeWifiApConfigStore(Context context, Handler target) { argument
75 WifiApConfigStore s = new WifiApConfigStore(context, target);
/frameworks/volley/tests/src/com/android/volley/mock/
H A DMockHttpClient.java75 public HttpResponse execute(HttpHost target, HttpRequest request) { argument
85 public HttpResponse execute(HttpHost target, HttpRequest request, HttpContext context) { argument
/frameworks/base/core/java/android/content/
H A DDefaultDataHandler.java235 public void processingInstruction(String target, String data) argument
/frameworks/base/core/java/android/net/
H A DProxyDataTracker.java125 public void startMonitoring(Context context, Handler target) { argument
127 mTarget = target;
/frameworks/base/core/java/android/os/
H A DFileBridge.java85 public void setTargetFile(FileDescriptor target) { argument
86 mTarget = target;
/frameworks/base/core/java/android/view/
H A DInputChannel.java57 private native void nativeDup(InputChannel target); argument
133 InputChannel target = new InputChannel();
134 nativeDup(target);
135 return target;
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/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/core/tests/coretests/src/android/net/
H A DLinkPropertiesTest.java45 public void assertLinkPropertiesEqual(LinkProperties source, LinkProperties target) { argument
47 assertTrue(source.isIdenticalInterfaceName(target));
48 assertTrue(target.isIdenticalInterfaceName(source));
50 assertTrue(source.isIdenticalAddresses(target));
51 assertTrue(target.isIdenticalAddresses(source));
53 assertTrue(source.isIdenticalDnses(target));
54 assertTrue(target.isIdenticalDnses(source));
56 assertTrue(source.isIdenticalRoutes(target));
57 assertTrue(target.isIdenticalRoutes(source));
59 assertTrue(source.isIdenticalHttpProxy(target));
[all...]

Completed in 652 milliseconds

12345678910