Searched refs:filter (Results 176 - 200 of 469) sorted by relevance

1234567891011>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DTileLifecycleManager.java285 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
286 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
287 filter.addDataScheme("package");
288 mContext.registerReceiverAsUser(this, mUser, filter, null, mHandler);
289 filter = new IntentFilter(Intent.ACTION_USER_UNLOCKED);
290 mContext.registerReceiverAsUser(this, mUser, filter, null, mHandler);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DExpandableViewState.java242 AnimationFilter filter = properties.getAnimationFilter();
243 if (!filter.animateHeight) {
324 AnimationFilter filter = properties.getAnimationFilter();
325 if (!filter.animateShadowAlpha) {
386 AnimationFilter filter = properties.getAnimationFilter();
387 if (!filter.animateTopInset) {
H A DViewState.java332 AnimationFilter filter = properties.getAnimationFilter();
333 if (!filter.animateAlpha) {
419 AnimationFilter filter = properties.getAnimationFilter();
420 if (!filter.animateZ) {
479 AnimationFilter filter = properties.getAnimationFilter();
480 if (!filter.animateX) {
544 AnimationFilter filter = properties.getAnimationFilter();
545 if (!filter.shouldAnimateY(child)) {
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderCustomSupport.java187 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
188 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
189 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
190 filter.addDataScheme("package");
191 mLoader.getContext().registerReceiver(this, filter);
409 // If non-null, this is the current filter the user has provided.
447 mAdapter.getFilter().filter(mCurFilter);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderCustomSupport.java187 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
188 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
189 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
190 filter.addDataScheme("package");
191 mLoader.getContext().registerReceiver(this, filter);
409 // If non-null, this is the current filter the user has provided.
447 mAdapter.getFilter().filter(mCurFilter);
/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingHelper.java870 public void dump(PrintWriter pw, String prefix, NotificationManagerService.DumpFilter filter) { argument
871 if (filter == null) {
882 if (filter == null) {
888 dumpRecords(pw, prefix, filter, mRecords);
891 dumpRecords(pw, prefix, filter, mRestoredWithoutUids);
895 NotificationManagerService.DumpFilter filter, ArrayMap<String, Record> records) {
899 if (filter == null || filter.matches(r.pkg)) {
937 public JSONObject dumpJson(NotificationManagerService.DumpFilter filter) { argument
949 if (filter
894 dumpRecords(PrintWriter pw, String prefix, NotificationManagerService.DumpFilter filter, ArrayMap<String, Record> records) argument
996 dumpBansJson(NotificationManagerService.DumpFilter filter) argument
1040 dumpChannelsJson(NotificationManagerService.DumpFilter filter) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNetworkControllerImpl.java247 IntentFilter filter = new IntentFilter();
248 filter.addAction(WifiManager.RSSI_CHANGED_ACTION);
249 filter.addAction(WifiManager.WIFI_STATE_CHANGED_ACTION);
250 filter.addAction(WifiManager.NETWORK_STATE_CHANGED_ACTION);
251 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
252 filter.addAction(TelephonyIntents.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED);
253 filter.addAction(TelephonyIntents.ACTION_DEFAULT_VOICE_SUBSCRIPTION_CHANGED);
254 filter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED);
255 filter.addAction(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION);
256 filter
[all...]
/frameworks/native/vulkan/libvulkan/
H A Ddriver.cpp437 auto& filter = extension_filter_;
438 filter.exts =
443 if (!filter.exts)
447 result = EnumerateExtensions(count, filter.exts);
454 filter.ext_count = count;
460 count = std::min(filter.ext_count, enabled_ext_count);
461 filter.names = reinterpret_cast<const char**>(allocator_.pfnAllocation(
464 if (!filter.names)
471 auto& filter = extension_filter_; local
520 for (uint32_t i = 0; i < filter
[all...]
/frameworks/av/include/media/
H A DMediaAnalyticsItem.h144 // XXX: perhaps 'remove' instead of 'filter'
146 int32_t filter(int count, Attr attrs[]);
148 int32_t filter(Attr attr);
/frameworks/av/media/img_utils/src/
H A DAndroid.mk51 ifneq ($(filter userdebug eng,$(TARGET_BUILD_VARIANT)),)
/frameworks/av/media/libmediametrics/include/
H A DMediaAnalyticsItem.h144 // XXX: perhaps 'remove' instead of 'filter'
146 int32_t filter(int count, Attr attrs[]);
148 int32_t filter(Attr attr);
/frameworks/av/services/mediacodec/
H A DAndroid.mk52 ifeq ($(TARGET_ARCH), $(filter $(TARGET_ARCH), arm arm64))
/frameworks/base/core/java/android/hardware/location/
H A DContextHubManager.java215 * @param filter filter specifying the search criteria for app
222 public int[] findNanoAppOnHub(int hubHandle, NanoAppFilter filter) { argument
224 return mService.findNanoAppOnHub(hubHandle, filter);
/frameworks/base/core/java/android/widget/
H A DMultiAutoCompleteTextView.java105 f.filter(null);
168 * override this method to filter with a different pattern, for
173 getFilter().filter(text.subSequence(start, end), this);
/frameworks/base/packages/ExtServices/src/android/ext/services/storage/
H A DCacheQuotaServiceImpl.java82 .filter(entry -> entry.getUsageStats().mTotalTimeInForeground != 0)
102 .filter(request -> request.getQuota() > 0).collect(Collectors.toList());
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DHotspotTile.java89 final IntentFilter filter = new IntentFilter();
90 filter.addAction(Intent.ACTION_AIRPLANE_MODE_CHANGED);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DPropertyAnimator.java50 AnimationFilter filter = properties.getAnimationFilter();
51 if (!filter.shouldAnimateProperty(property)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbDebuggingActivity.java106 IntentFilter filter = new IntentFilter(UsbManager.ACTION_USB_STATE);
107 registerReceiver(mDisconnectedReceiver, filter);
/frameworks/base/services/core/java/com/android/server/pm/
H A DCrossProfileIntentFilter.java37 private static final String ATTR_FILTER = "filter";
46 CrossProfileIntentFilter(IntentFilter filter, String ownerPackage, int targetUserId, argument
48 super(filter);
/frameworks/base/services/core/java/com/android/server/updates/
H A DCertificateTransparencyLogInstallReceiver.java171 FileFilter filter = new FileFilter() {
177 for (File f : updateDir.listFiles(filter)) {
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DInputPort.java22 * Input ports are the receiving ports of frames in a filter.
24 * InputPort instances receive Frame data from connected OutputPort instances of a previous filter.
70 + mField + " of filter " + mFilter + " caused exception!", e);
109 * Use this when you wish to pull frames directly into a field of the filter. This requires
129 * Use this when you wish to pull frames directly into a field of the filter. This requires
232 * Returns whether the filter waits for a frame on this port before processing.
233 * @return true, if the filter waits for a frame on this port before processing.
261 * Return the filter object that this port belongs to.
263 * @return the input port's filter.
275 InputPort(Filter filter, Strin argument
[all...]
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/expr/
H A DExprWriters.kt32 mExprMap.values.filter { it.shouldLocalizeInCallbacks() && !ignore.contains(it) }.forEach {
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DDataBinderWriter.kt65 layoutBinders.filter{it.isMerge }.groupBy{it.layoutname }.forEach {
/frameworks/support/v7/appcompat/src/android/support/v7/graphics/drawable/
H A DDrawableWrapper.java75 public void setFilterBitmap(boolean filter) { argument
76 mDrawable.setFilterBitmap(filter);
/frameworks/av/services/camera/libcameraservice/gui/
H A DRingBufferConsumer.h145 // Find a buffer using the filter, then pin it before returning it.
147 // The filter will be invoked on each buffer item in the ring buffer,
153 sp<PinnedBufferItem> pinSelectedBuffer(const RingBufferComparator& filter,

Completed in 667 milliseconds

1234567891011>>