Searched refs:filter (Results 226 - 250 of 394) sorted by relevance

1234567891011>>

/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java253 * Ensures the tint filter is consistent with the current tint color and
798 public void drawCachedBitmapWithRootAlpha(Canvas canvas, ColorFilter filter, argument
801 final Paint p = getPaint(filter);
812 public Paint getPaint(ColorFilter filter) { argument
813 if (!hasTranslucentRoot() && filter == null) {
822 mTempPaint.setColorFilter(filter);
969 Canvas canvas, int w, int h, ColorFilter filter) {
984 canvas, w, h, filter);
987 drawPath(currentGroup, childPath, canvas, w, h, filter);
992 public void draw(Canvas canvas, int w, int h, ColorFilter filter) { argument
968 drawGroupTree(VGroup currentGroup, Matrix currentMatrix, Canvas canvas, int w, int h, ColorFilter filter) argument
997 drawPath(VGroup vGroup, VPath vPath, Canvas canvas, int w, int h, ColorFilter filter) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DManagedServices.java70 * - A well-known action for services to use in their intent-filter.
121 IntentFilter filter = new IntentFilter(Intent.ACTION_SETTING_RESTORED);
122 context.registerReceiver(mRestoreReceiver, filter);
166 public void dump(PrintWriter pw, DumpFilter filter) { argument
170 if (filter != null && !filter.matches(cmpt)) continue;
176 if (filter != null && !filter.matches(info.component)) continue;
H A DCountdownConditionProvider.java86 public void dump(PrintWriter pw, DumpFilter filter) { argument
/frameworks/base/services/core/java/com/android/server/policy/
H A DGlobalActions.java139 IntentFilter filter = new IntentFilter();
140 filter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
141 filter.addAction(Intent.ACTION_SCREEN_OFF);
142 filter.addAction(TelephonyIntents.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED);
143 context.registerReceiver(mBroadcastReceiver, filter);
587 IntentFilter filter = new IntentFilter(AudioManager.RINGER_MODE_CHANGED_ACTION);
588 mContext.registerReceiver(mRingerModeReceiver, filter);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatDrawableManager.java106 * using the default mode using a raw color filter.
130 * using a color filter.
141 * using the {@link android.graphics.PorterDuff.Mode#MULTIPLY} mode and a color filter.
616 PorterDuffColorFilter put(int color, PorterDuff.Mode mode, PorterDuffColorFilter filter) { argument
617 return put(generateCacheKey(color, mode), filter);
661 // First, lets see if the cache already contains the color filter
662 PorterDuffColorFilter filter = COLOR_FILTER_CACHE.get(color, mode);
664 if (filter == null) {
665 // Cache miss, so create a color filter and add it to the cache
666 filter
[all...]
/frameworks/base/graphics/java/android/graphics/
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/core/java/android/text/util/
H A DLinkify.java345 * @param matchFilter The filter that is used to allow the client code
368 * @param matchFilter The filter that is used to allow the client code additional control
407 * @param matchFilter The filter that is used to allow the client code
431 * @param matchFilter The filter that is used to allow the client code additional control
483 Matcher matcher, @Nullable TransformFilter filter) {
484 if (filter != null) {
485 url = filter.transformUrl(matcher, url);
482 makeUrl(@onNull String url, @NonNull String[] prefixes, Matcher matcher, @Nullable TransformFilter filter) argument
/frameworks/base/libs/hwui/
H A DRecordingCanvas.h140 virtual void setDrawFilter(SkDrawFilter* filter) override {
141 mDrawFilter.reset(SkSafeRef(filter));
245 // If there is a draw filter apply it here and store the modified paint
250 mDrawFilter->filter(filteredPaint.get(), SkDrawFilter::kPaint_Type);
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerServiceImpl.java143 IntentFilter filter = new IntentFilter();
144 filter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
145 mContext.registerReceiver(mBroadcastReceiver, filter, null, handler);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphReader.java37 * A GraphReader allows obtaining filter graphs from XML graph files or strings.
121 Filter filter = null;
123 filter = stack.getFactory().createFilterByClassName(mClassName,
127 throw new RuntimeException("Error creating filter " + mFilterName + "!", e);
129 stack.getBuilder().addFilter(filter);
259 } else if (localName.equals("filter")) {
273 } else if (localName.equals("filter")) {
294 // check for shorthand: <connect source="filter:port" target="filter:port"/>
303 "'source' tag needs to have format \"filter
[all...]
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DTextViewBindingAdapter.java248 InputFilter filter = filters[i];
249 if (filter instanceof InputFilter.LengthFilter) {
253 replace = ((InputFilter.LengthFilter) filter).getMax() != value;
/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/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java156 IntentFilter filter; field in class:PackageManagerTests.GenericReceiver
176 public void setFilter(IntentFilter filter) { argument
177 this.filter = filter;
186 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
187 filter.addDataScheme("package");
188 super.setFilter(filter);
218 mContext.registerReceiver(receiver, receiver.filter);
792 filter = new IntentFilter(Intent.ACTION_PACKAGE_REMOVED);
793 filter
[all...]
/frameworks/base/cmds/uiautomator/library/
H A DAndroid.mk76 $(filter-out current, \
/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java846 if (DEBUG) Log.v(TAG, "Enough to filter: len=" + getText().length()
880 // then something in the keystroke processing (an input filter perhaps)
902 mFilter.filter(null);
962 * method to filter with a different pattern, for instance a substring of
971 mFilter.filter(text, this);
1035 * @param filter If <code>false</code>, no filtering will be performed
1038 public void setText(CharSequence text, boolean filter) { argument
1039 if (filter) {
1077 * to filter.
1088 // When the filter tex
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeService.java313 final IntentFilter filter = new IntentFilter(PULSE_ACTION);
314 filter.addAction(NOTIFICATION_PULSE_ACTION);
315 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
316 mContext.registerReceiver(mBroadcastReceiver, filter);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTile.java654 public boolean filter; field in class:QSTile.SignalState
668 o.filter = filter;
680 rt.insert(rt.length() - 1, ",filter=" + filter);
/frameworks/base/test-runner/src/android/test/
H A DIsolatedContext.java87 public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter) { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java610 ColorFilter_Delegate filter = paint.getColorFilter();
611 if (filter == null || !filter.isSupported()) {
640 // Create a temporary image to which the color filter will be applied.
658 // Apply the color filter.
659 // Restore the original coordinates system and apply the filter only to the
662 filter.applyFilter(imageGraphics, width, height);
/frameworks/opt/net/wifi/tests/wifitests/
H A DAndroid.mk70 LOCAL_SRC_FILES := $(filter-out $(call all-java-files-under, \
82 local_java_files := $(filter %.java,$(LOCAL_SRC_FILES))
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardUpdateMonitor.java999 final IntentFilter filter = new IntentFilter();
1000 filter.addAction(Intent.ACTION_TIME_TICK);
1001 filter.addAction(Intent.ACTION_TIME_CHANGED);
1002 filter.addAction(Intent.ACTION_BATTERY_CHANGED);
1003 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
1004 filter.addAction(Intent.ACTION_AIRPLANE_MODE_CHANGED);
1005 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
1006 filter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED);
1007 filter.addAction(TelephonyManager.ACTION_PHONE_STATE_CHANGED);
1008 filter
[all...]
/frameworks/av/media/libstagefright/
H A DAndroid.mk129 ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
/frameworks/av/services/camera/libcameraservice/gui/
H A DRingBufferConsumer.cpp63 const RingBufferComparator& filter,
88 int ret = filter.compare(accPtr, &cur);
62 pinSelectedBuffer( const RingBufferComparator& filter, bool waitForFence) argument
/frameworks/base/core/java/android/hardware/
H A DLegacySensorManager.java270 v[0] = mYawfilter.filter(event.timestamp, v[0]);
381 public float filter(long time, float in) { method in class:LegacySensorManager.LmsFilter
/frameworks/base/core/java/android/hardware/location/
H A DContextHubService.java199 public int[] findNanoAppOnHub(int hubHandle, NanoAppFilter filter) throws RemoteException { argument
206 if (filter.testMatch(info)) {

Completed in 727 milliseconds

1234567891011>>