Searched defs:filter (Results 151 - 175 of 177) sorted by relevance

12345678

/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java404 * to apply an xfermode, color filter, or alpha, as it will perform much
465 * to apply an xfermode, color filter, or alpha, as it will perform much
845 public void setDrawFilter(@Nullable DrawFilter filter) { argument
847 if (filter != null) {
848 nativeFilter = filter.mNativeInt;
850 mDrawFilter = filter;
H A DPaint.java802 * Whether or not the bitmap filter is activated.
819 * @param filter true to set the FILTER_BITMAP_FLAG bit in the paint's
822 public void setFilterBitmap(boolean filter) { argument
823 nSetFilterBitmap(mNativePaint, filter);
826 private native void nSetFilterBitmap(long paintPtr, boolean filter); argument
1068 * @param filter May be null. The new filter to be installed in the paint
1069 * @return filter
1071 public ColorFilter setColorFilter(ColorFilter filter) { argument
1073 if (filter !
2659 nSetColorFilter(long paintPtr, long filter) argument
[all...]
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp1469 // TODO: snap doesn't need to touch transform, only texture filter.
1641 // 9 patches are built for stretching - always filter
1671 // 9 patches are built for stretching - always filter
2308 void OpenGLRenderer::setDrawFilter(SkDrawFilter* filter) { argument
2309 // We should never get here since we apply the draw filter when stashing
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java467 void dump(PrintWriter pw, String prefix, DumpFilter filter) { argument
468 if (filter != null && !filter.matches(pkg)) return;
1018 IntentFilter filter = new IntentFilter();
1019 filter.addAction(Intent.ACTION_SCREEN_ON);
1020 filter.addAction(Intent.ACTION_SCREEN_OFF);
1021 filter.addAction(TelephonyManager.ACTION_PHONE_STATE_CHANGED);
1022 filter.addAction(Intent.ACTION_USER_PRESENT);
1023 filter.addAction(Intent.ACTION_USER_STOPPED);
1024 filter
2315 dumpJson(PrintWriter pw, DumpFilter filter) argument
2328 dumpImpl(PrintWriter pw, DumpFilter filter) argument
[all...]
/frameworks/opt/net/wifi/service/jni/
H A Dcom_android_server_wifi_WifiNative.cpp1511 const u8* filter = (uint8_t*)env->GetByteArrayElements(jfilter, NULL); local
1514 wifi_error ret = hal_fn.wifi_set_packet_filter(handle, filter, filter_len);
1515 env->ReleaseByteArrayElements(jfilter, (jbyte*)filter, JNI_ABORT);
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java4073 * intents that match a certain intent filter. This activity will remain the default intent
4074 * handler even if the set of potential event handlers for the intent filter changes and if the
4079 * the filter.
4085 * @param filter The IntentFilter for which a default handler is added.
4089 public void addPersistentPreferredActivity(@NonNull ComponentName admin, IntentFilter filter, argument
4094 mService.addPersistentPreferredActivity(admin, filter, activity);
4544 * @param filter The {@link IntentFilter} the intent has to match to be also resolved in the
4550 public void addCrossProfileIntentFilter(@NonNull ComponentName admin, IntentFilter filter, int flags) { argument
4554 mService.addCrossProfileIntentFilter(admin, filter, flags);
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java174 // State for the currently installed input filter.
349 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
350 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
351 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
352 filter.addAction(Intent.ACTION_PACKAGE_REPLACED);
353 filter.addDataScheme("package");
359 }, filter, null, mHandler);
361 filter = new IntentFilter(BluetoothDevice.ACTION_ALIAS_CHANGED);
367 }, filter, null, mHandler);
522 * Sets an input filter tha
532 setInputFilter(IInputFilter filter) argument
[all...]
/frameworks/base/tools/aapt/
H A DResourceTable.cpp2176 sp<AaptFile> ResourceTable::flatten(Bundle* bundle, const sp<const ResourceFilter>& filter, argument
2180 status_t err = flatten(bundle, filter, data, isBase);
2858 status_t ResourceTable::flatten(Bundle* bundle, const sp<const ResourceFilter>& filter, argument
2947 if (filterable && !filter->match(config)) {
3109 if (filterable && !filter->match(cl->getEntries().keyAt(ci))) {
3113 if (filterable && !filter->match(cl->getEntries().keyAt(cj))) {
3165 if (filterable && !filter->match(config)) {
/frameworks/native/vulkan/nulldrv/
H A Dnull_driver.cpp1328 void CmdBlitImage(VkCommandBuffer cmdBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage destImage, VkImageLayout destImageLayout, uint32_t regionCount, const VkImageBlit* pRegions, VkFilter filter) { argument
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java452 IntentFilter filter = IntentFilter.CREATOR.createFromParcel(data);
455 Intent intent = registerReceiver(app, packageName, rec, filter, perm, userId);
3451 IntentFilter filter, String perm, int userId) throws RemoteException
3459 filter.writeToParcel(data, 0);
3449 registerReceiver(IApplicationThread caller, String packageName, IIntentReceiver receiver, IntentFilter filter, String perm, int userId) argument
H A DIActivityManager.java109 IIntentReceiver receiver, IntentFilter filter,
108 registerReceiver(IApplicationThread caller, String callerPackage, IIntentReceiver receiver, IntentFilter filter, String requiredPermission, int userId) argument
/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java254 * {@link ResolveInfo#filter}.
2292 * Extra field name for the ID of a intent filter pending verification.
2293 * Passed to an intent filter verifier and is used to call back to
2302 * Extra field name for the scheme used for an intent filter pending verification. Passed to
2303 * an intent filter verifier and is used to construct the URI to verify against.
2313 * Extra field name for the host names to be used for an intent filter pending verification.
2314 * Passed to an intent filter verifier and is used to construct the URI to verify the
2315 * intent filter.
2325 * Extra field name for the package name to be used for an intent filter pending verification.
2326 * Passed to an intent filter verifie
5264 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
5273 addPreferredActivityAsUser(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, @UserIdInt int userId) argument
5300 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
5307 replacePreferredActivityAsUser(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, @UserIdInt int userId) argument
5612 addCrossProfileIntentFilter(IntentFilter filter, int sourceUserId, int targetUserId, int flags) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java470 * Used with type filter window
1610 * Enables or disables the type filter window. If enabled, typing when
1611 * this view has focus will filter the children to match the users input.
1694 String filter; field in class:AbsListView.SavedState
1717 filter = in.readString();
1740 out.writeString(filter);
1761 + " filter=" + filter
1800 ss.filter = mPendingSync.filter;
[all...]
H A DEditor.java298 // Synchronize the filter list, which places the undo input filter at the end.
4124 // Touch-up filter: number of previous positions remembered
5698 * text being typed (and hence always returns null from the filter() method).
5703 // Whether the current filter pass is directly caused by an end-user text edit.
5745 public CharSequence filter(CharSequence source, int start, int end, method in class:Editor.UndoInputFilter
5748 Log.d(TAG, "filter: source=" + source + " (" + start + "-" + end + ") " +
5802 // string). This results in multiple filter() calls for what the user considers to be
5825 if (DEBUG_UNDO) Log.d(TAG, "filter: adding first op " + edit);
5830 if (DEBUG_UNDO) Log.d(TAG, "filter
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES30.cpp1518 /* void glBlitFramebuffer ( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter ) */
1521 (JNIEnv *_env, jobject _this, jint srcX0, jint srcY0, jint srcX1, jint srcY1, jint dstX0, jint dstY0, jint dstX1, jint dstY1, jint mask, jint filter) {
1532 (GLenum)filter
1520 android_glBlitFramebuffer__IIIIIIIIII(JNIEnv *_env, jobject _this, jint srcX0, jint srcY0, jint srcX1, jint srcY1, jint dstX0, jint dstY0, jint dstX1, jint dstY1, jint mask, jint filter) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java4434 final AnimationFilter filter; field in class:NotificationStackScrollLayout.AnimationEvent
4448 filter = FILTERS[type];
/frameworks/native/services/inputflinger/
H A DInputReader.cpp4442 // most recent touch within the screen area. The idea is to filter out stray
6980 // To eliminate noise while the joystick is at rest, filter out small variations
6982 axis.filter = axis.fuzz ? axis.fuzz : axis.flat * 0.25f;
7182 if (force || hasValueChangedSignificantly(axis.filter,
7188 if (force || hasValueChangedSignificantly(axis.filter,
7199 float filter, float newValue, float currentValue, float min, float max) {
7204 if (fabs(newValue - currentValue) > filter
7205 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min)
7206 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max)
7207 || hasMovedNearerToValueWithinFilteredRange(filter, newValu
7198 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument
7214 hasMovedNearerToValueWithinFilteredRange( float filter, float newValue, float currentValue, float thresholdValue) argument
[all...]
H A DInputReader.h152 // in order to filter out accidental virtual key presses due to swiping gestures
1979 float filter; // filter out small variations of this size member in struct:android::JoystickInputMapper::Axis
2001 this->filter = 0;
2022 static bool hasValueChangedSignificantly(float filter,
2024 static bool hasMovedNearerToValueWithinFilteredRange(float filter,
/frameworks/native/vulkan/libvulkan/
H A Dapi_gen.cpp394 VKAPI_ATTR void CmdBlitImage(VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const VkImageBlit* pRegions, VkFilter filter);
1066 VKAPI_ATTR void CmdBlitImage(VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const VkImageBlit* pRegions, VkFilter filter) { argument
1067 GetData(commandBuffer).dispatch.CmdBlitImage(commandBuffer, srcImage, srcImageLayout, dstImage, dstImageLayout, regionCount, pRegions, filter);
1783 VKAPI_ATTR void vkCmdBlitImage(VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const VkImageBlit* pRegions, VkFilter filter) { argument
1784 vulkan::api::CmdBlitImage(commandBuffer, srcImage, srcImageLayout, dstImage, dstImageLayout, regionCount, pRegions, filter);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java790 * The driver can filter multicast (v4 and/or v6) and broadcast packets when in
2341 private static native boolean installPacketFilterNative(int iface, byte[] filter); argument
2342 public boolean installPacketFilter(byte[] filter) { argument
2345 return installPacketFilterNative(sWlan0Index, filter);
2801 return "firmware dropped (filter)";
2811 return "driver dropped (filter)";
H A DWifiStateMachine.java560 // Used to filter out requests we couldn't possibly satisfy.
563 // Provide packet filter capabilities to ConnectivityService.
1090 IntentFilter filter = new IntentFilter();
1091 filter.addAction(Intent.ACTION_SCREEN_ON);
1092 filter.addAction(Intent.ACTION_SCREEN_OFF);
1105 }, filter);
1263 public void installPacketFilter(byte[] filter) { argument
1264 sendMessage(CMD_INSTALL_PACKET_FILTER, filter);
3945 // We can't filter untrusted network in the capabilities filter becaus
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java1020 IntentFilter filter = new IntentFilter();
1021 filter.addAction(DevicePolicyManager.ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED);
1022 mContext.registerReceiver(mBroadcastReceiver, filter);
11240 public void setInputFilter(IInputFilter filter) { argument
11241 mInputManager.setInputFilter(filter);
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java1581 IntentFilter filter = new IntentFilter();
1582 filter.addAction(Intent.ACTION_BOOT_COMPLETED);
1583 filter.addAction(ACTION_EXPIRED_PASSWORD_NOTIFICATION);
1584 filter.addAction(Intent.ACTION_USER_ADDED);
1585 filter.addAction(Intent.ACTION_USER_REMOVED);
1586 filter.addAction(Intent.ACTION_USER_STARTED);
1587 filter.addAction(Intent.ACTION_USER_UNLOCKED);
1588 filter.addAction(KeyChain.ACTION_STORAGE_CHANGED);
1589 filter.setPriority(IntentFilter.SYSTEM_HIGH_PRIORITY);
1590 mContext.registerReceiverAsUser(mReceiver, UserHandle.ALL, filter, nul
6444 addPersistentPreferredActivity(ComponentName who, IntentFilter filter, ComponentName activity) argument
6653 addCrossProfileIntentFilter(ComponentName who, IntentFilter filter, int flags) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java488 * intent filter is disallowed].
590 * filter actions are protected and should never be allowed to have a high priority
591 * intent filter for them. However, there is one, and only one exception -- the
592 * setup wizard. It must be able to define a high priority intent filter for these
766 T filter, String packageName);
800 PackageParser.ActivityIntentInfo filter = filters.get(m);
801 domainsSet.addAll(filter.getHostsList());
852 PackageParser.ActivityIntentInfo filter = filters.get(n);
853 filter.setVerified(verified);
855 if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "IntentFilter " + filter
765 addOneIntentFilterVerification(int verifierId, int userId, int verificationId, T filter, String packageName) argument
926 addOneIntentFilterVerification(int verifierUid, int userId, int verificationId, ActivityIntentInfo filter, String packageName) argument
956 hasValidDomains(ActivityIntentInfo filter) argument
4903 setLastChosenActivity(Intent intent, String resolvedType, int flags, IntentFilter filter, int match, ComponentName activity) argument
5832 createForwardingResolveInfo(CrossProfileIntentFilter filter, Intent intent, String resolvedType, int flags, int sourceUserId) argument
5850 createForwardingResolveInfoUnchecked(IntentFilter filter, int sourceUserId, int targetUserId) argument
10501 isProtectedAction(ActivityIntentInfo filter) argument
10758 allowFilterResult( PackageParser.ActivityIntentInfo filter, List<ResolveInfo> dest) argument
10777 isFilterStopped(PackageParser.ActivityIntentInfo filter, int userId) argument
10848 dumpFilter(PrintWriter out, String prefix, PackageParser.ActivityIntentInfo filter) argument
10859 filterToLabel(PackageParser.ActivityIntentInfo filter) argument
10965 allowFilterResult( PackageParser.ServiceIntentInfo filter, List<ResolveInfo> dest) argument
10984 isFilterStopped(PackageParser.ServiceIntentInfo filter, int userId) argument
11007 newResult(PackageParser.ServiceIntentInfo filter, int match, int userId) argument
11046 dumpFilter(PrintWriter out, String prefix, PackageParser.ServiceIntentInfo filter) argument
11057 filterToLabel(PackageParser.ServiceIntentInfo filter) argument
11182 allowFilterResult( PackageParser.ProviderIntentInfo filter, List<ResolveInfo> dest) argument
11201 isFilterStopped(PackageParser.ProviderIntentInfo filter, int userId) argument
11225 newResult(PackageParser.ProviderIntentInfo filter, int match, int userId) argument
11265 dumpFilter(PrintWriter out, String prefix, PackageParser.ProviderIntentInfo filter) argument
11277 filterToLabel(PackageParser.ProviderIntentInfo filter) argument
15296 needsNetworkVerificationLPr(ActivityIntentInfo filter) argument
16767 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, int userId) argument
16773 addPreferredActivityInternal(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, boolean always, int userId, String opname) argument
16808 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, int userId) argument
17053 addPersistentPreferredActivity(IntentFilter filter, ComponentName activity, int userId) argument
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 658 milliseconds

12345678