Searched refs:filter (Results 201 - 225 of 518) sorted by relevance

1234567891011>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DHotspotTile.java82 final IntentFilter filter = new IntentFilter();
83 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/statusbar/stack/
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/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/room/compiler/src/main/kotlin/android/arch/persistence/room/processor/
H A DShortcutMethodProcessor.kt59 .filter { it.entityType != null }
/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,
/frameworks/base/core/java/android/text/
H A DLoginFilter.java50 public CharSequence filter(CharSequence source, int start, int end, method in class:LoginFilter
101 * Called when we start processing filter.
116 * Called when we're done processing filter
129 * This filter rejects characters in the user name that are not compatible with GMail
160 * This filter rejects characters in the user name that are not compatible with Google login.
161 * It is slightly less restrictive than the above filter in that it allows [a-zA-Z0-9._-+].
191 * This filter is compatible with GMail passwords which restricts characters to
/frameworks/base/core/java/android/view/
H A DWindowManagerInternal.java210 * Sets a filter for manipulating the input event stream.
212 * @param filter The filter implementation.
214 public abstract void setInputFilter(IInputFilter filter); argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterContext.java69 public void onFrameReceived(Filter filter, Frame frame, Object userData); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DScreenPinningRequest.java196 IntentFilter filter = new IntentFilter(Intent.ACTION_CONFIGURATION_CHANGED);
197 filter.addAction(Intent.ACTION_USER_SWITCHED);
198 filter.addAction(Intent.ACTION_SCREEN_OFF);
199 mContext.registerReceiver(mReceiver, filter);
/frameworks/base/tests/UsbHostExternalManagmentTest/UsbHostExternalManagmentTestApp/src/com/android/hardware/usb/externalmanagementtest/
H A DUsbDeviceStateController.java73 IntentFilter filter = new IntentFilter();
74 filter.addAction(UsbManager.ACTION_USB_DEVICE_ATTACHED);
75 filter.addAction(UsbManager.ACTION_USB_DEVICE_DETACHED);
76 mContext.registerReceiver(mUsbStateBroadcastReceiver, filter);
/frameworks/base/tools/aapt/
H A DApkBuilder.h111 ApkSplit(const std::set<ConfigDescription>& configs, const android::sp<ResourceFilter>& filter, bool isBase=false);
/frameworks/base/tools/aapt2/tools/
H A Dfix_resources.py18 eligible_consumers = filter(lambda c: c.matches(file_path), consumers)
/frameworks/base/tools/aapt2/util/
H A DFiles.cpp283 const FileFilter* filter) {
303 if (filter != nullptr) {
304 if (!(*filter)(file_name, file_type)) {
320 Maybe<std::vector<std::string>> subfiles = FindFiles(full_subdir, diag, filter);
282 FindFiles(const android::StringPiece& path, IDiagnostics* diag, const FileFilter* filter) argument
H A DFiles.h104 // Applies the filter, returning true for pass, false for fail.
117 const FileFilter* filter = nullptr);
/frameworks/base/tools/split-select/
H A DAndroid.mk18 ifeq ($(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK)),)
/frameworks/opt/net/wifi/service/
H A Dwifi-events.rc46 write /sys/kernel/debug/tracing/instances/wifi/events/net/filter name==${wifi.interface:-wlan0}
64 write /sys/kernel/debug/tracing/instances/wifi/events/net/filter name==${wifi.interface}
/frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/parser/
H A DParsedQuery.kt83 val bindSections by lazy { sections.filter { it.type == BIND_VAR } }
91 return anonymousBindError + inputs.filter {
/frameworks/base/libs/hwui/
H A DRenderProperties.cpp46 bool LayerProperties::setColorFilter(SkColorFilter* filter) { argument
47 if (mColorFilter == filter) return false;
48 SkRefCnt_SafeAssign(mColorFilter, filter);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUIApplication.java122 IntentFilter filter = new IntentFilter(Intent.ACTION_BOOT_COMPLETED);
123 filter.setPriority(IntentFilter.SYSTEM_HIGH_PRIORITY);
139 }, filter);

Completed in 1418 milliseconds

1234567891011>>