Searched refs:filter (Results 151 - 175 of 469) sorted by relevance

1234567891011>>

/frameworks/rs/driver/runtime/
H A Dbuild_bc_lib_internal.mk62 c_sources := $(filter %.c,$(bc_src_files))
63 ll_sources := $(filter %.ll,$(bc_src_files))
H A DAndroid.mk88 ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm64))
108 ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm64))
120 ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64))
156 ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm64))
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCommon.java85 public void setFilterBitmap(boolean filter) { argument
87 mDelegateDrawable.setFilterBitmap(filter);
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationUsageStats.java291 public synchronized JSONObject dumpJson(DumpFilter filter) { argument
297 if (filter != null && !filter.matches(as.key))
308 dump.put("historical", mSQLiteLog.dumpJson(filter));
316 public synchronized void dump(PrintWriter pw, String indent, DumpFilter filter) { argument
319 if (filter != null && !filter.matches(as.key))
327 mSQLiteLog.dump(pw, indent, filter);
1138 private JSONArray jsonPostFrequencies(DumpFilter filter) throws JSONException { argument
1142 String q = String.format(STATS_QUERY, midnight, filter
1170 printPostFrequencies(PrintWriter pw, String indent, DumpFilter filter) argument
1273 dump(PrintWriter pw, String indent, DumpFilter filter) argument
1277 dumpJson(DumpFilter filter) argument
[all...]
H A DSystemConditionProviderService.java33 abstract public void dump(PrintWriter pw, DumpFilter filter); argument
H A DScheduleConditionProvider.java90 public void dump(PrintWriter pw, DumpFilter filter) { argument
247 final IntentFilter filter = new IntentFilter();
248 filter.addAction(Intent.ACTION_TIME_CHANGED);
249 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
250 filter.addAction(ACTION_EVALUATE);
251 filter.addAction(AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED);
252 registerReceiver(mReceiver, filter);
H A DNotificationManagerService.java506 void dump(PrintWriter pw, String prefix, DumpFilter filter) { argument
507 if (filter != null && !filter.matches(pkg)) return;
1189 IntentFilter filter = new IntentFilter();
1190 filter.addAction(Intent.ACTION_SCREEN_ON);
1191 filter.addAction(Intent.ACTION_SCREEN_OFF);
1192 filter.addAction(TelephonyManager.ACTION_PHONE_STATE_CHANGED);
1193 filter.addAction(Intent.ACTION_USER_PRESENT);
1194 filter.addAction(Intent.ACTION_USER_STOPPED);
1195 filter
2893 dumpJson(PrintWriter pw, DumpFilter filter) argument
2907 dumpProto(FileDescriptor fd, DumpFilter filter) argument
2952 dumpImpl(PrintWriter pw, DumpFilter filter) argument
[all...]
/frameworks/base/cmds/sm/src/com/android/commands/sm/
H A DSm.java115 final String filter = nextArg();
117 if ("public".equals(filter)) {
119 } else if ("private".equals(filter)) {
121 } else if ("emulated".equals(filter)) {
/frameworks/base/core/java/android/hardware/radio/
H A DRadioTuner.java217 * To get the full list, set filter to null or empty string. Otherwise, client application
220 * @param filter vendor-specific selector for radio stations.
223 * @throws IllegalArgumentException if the filter argument is not valid.
226 public abstract @NonNull List<RadioManager.ProgramInfo> getProgramList(@Nullable String filter); argument
/frameworks/base/libs/hwui/
H A DLayer.h91 void setColorFilter(SkColorFilter* filter);
117 * Color filter used to draw this layer. Optional.
/frameworks/base/media/mca/effect/java/android/media/effect/effects/
H A DBackDropperEffect.java47 "@filter GLTextureSource foreground {\n" +
54 "@filter MediaSource background {\n" +
60 "@filter BackDropperFilter replacer {\n" +
64 "@filter GLTextureTarget output {\n" +
75 public void onLearningDone(BackDropperFilter filter) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DTileServiceManager.java88 IntentFilter filter = new IntentFilter();
89 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
90 filter.addDataScheme("package");
93 new UserHandle(ActivityManager.getCurrentUser()), filter, null, mHandler);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
H A DCarBatteryController.java121 IntentFilter filter = new IntentFilter();
122 filter.addAction(BluetoothHeadsetClient.ACTION_CONNECTION_STATE_CHANGED);
123 filter.addAction(BluetoothHeadsetClient.ACTION_AG_EVENT);
124 mContext.registerReceiver(this, filter);
H A DConnectedDeviceSignalController.java98 IntentFilter filter = new IntentFilter();
99 filter.addAction(BluetoothHeadsetClient.ACTION_CONNECTION_STATE_CHANGED);
100 filter.addAction(BluetoothHeadsetClient.ACTION_AG_EVENT);
101 mContext.registerReceiver(this, filter);
H A DCarStatusBar.java225 IntentFilter filter = new IntentFilter();
226 filter.addAction(Intent.ACTION_PACKAGE_ADDED);
227 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
228 filter.addDataScheme("package");
229 mContext.registerReceiver(mPackageChangeReceiver, filter);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DLocationControllerImpl.java65 IntentFilter filter = new IntentFilter();
66 filter.addAction(LocationManager.HIGH_POWER_REQUEST_CHANGE_ACTION);
67 filter.addAction(LocationManager.MODE_CHANGED_ACTION);
68 context.registerReceiverAsUser(this, UserHandle.ALL, filter, null, new Handler(bgLooper));
161 // of the mHighPowerRequestAppOpArray filter, but checking defensively.
/frameworks/base/tests/UsbHostExternalManagmentTest/UsbHostExternalManagmentTestApp/src/com/android/hardware/usb/externalmanagementtest/
H A DUsbHostManagementActivity.java91 IntentFilter filter = new IntentFilter();
92 filter.addAction(UsbManager.ACTION_USB_DEVICE_ATTACHED);
93 filter.addAction(UsbManager.ACTION_USB_DEVICE_DETACHED);
94 registerReceiver(mConnectionListener, filter);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCarrierServicesSmsFilterTest.java87 assertFalse(mCarrierServicesSmsFilterUT.filter());
96 assertTrue(mCarrierServicesSmsFilterUT.filter());
109 assertTrue(mCarrierServicesSmsFilterUT.filter());
125 assertTrue(mCarrierServicesSmsFilterUT.filter());
/frameworks/base/core/java/android/widget/
H A DTextClock.java550 final IntentFilter filter = new IntentFilter();
552 filter.addAction(Intent.ACTION_TIME_TICK);
553 filter.addAction(Intent.ACTION_TIME_CHANGED);
554 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
564 filter, null, getHandler());
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneFilterTypeAdapter.java127 FilterTypeResult filter = mLiveResults.get(position);
129 vh.filterType = filter.type;
130 vh.str = filter.constraint;
131 vh.time = filter.time;
132 vh.strTextView.setText(filter.constraint);
/frameworks/base/cmds/bmgr/src/com/android/commands/bmgr/
H A DBmgr.java616 HashSet<String> filter = null;
618 if (filter == null) filter = new HashSet<String>();
619 filter.add(arg);
622 doRestoreAll(token, filter);
658 private void doRestoreAll(long token, HashSet<String> filter) { argument
678 if (filter == null) {
681 String[] names = new String[filter.size()];
682 filter.toArray(names);
788 System.err.println("'restore' operation supplying only a token, but applies a filter t
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
H A DPowerNotificationWarnings.java422 IntentFilter filter = new IntentFilter();
423 filter.addAction(ACTION_SHOW_BATTERY_SETTINGS);
424 filter.addAction(ACTION_START_SAVER);
425 filter.addAction(ACTION_DISMISSED_WARNING);
426 filter.addAction(ACTION_CLICKED_TEMP_WARNING);
427 filter.addAction(ACTION_DISMISSED_TEMP_WARNING);
428 filter.addAction(ACTION_CLICKED_THERMAL_SHUTDOWN_WARNING);
429 filter.addAction(ACTION_DISMISSED_THERMAL_SHUTDOWN_WARNING);
430 mContext.registerReceiverAsUser(this, UserHandle.ALL, filter,
H A DPowerUI.java157 IntentFilter filter = new IntentFilter();
158 filter.addAction(Intent.ACTION_BATTERY_CHANGED);
159 filter.addAction(Intent.ACTION_SCREEN_OFF);
160 filter.addAction(Intent.ACTION_SCREEN_ON);
161 filter.addAction(Intent.ACTION_USER_SWITCHED);
162 mContext.registerReceiver(this, filter, null, mHandler);
/frameworks/ex/common/java/com/android/common/contacts/
H A DBaseEmailAddressAdapter.java106 public DirectoryPartitionFilter filter; field in class:BaseEmailAddressAdapter.DirectoryPartition
159 * An asynchronous filter used for loading two data sets: email rows from the local
208 * An asynchronous filter that performs search in a particular directory.
298 * displayed temporarily while the corresponding filter is running.
430 // The filter has loaded results for the default partition too.
468 if (partition.filter == null) {
469 partition.filter = new DirectoryPartitionFilter(i, partition.directoryId);
471 partition.filter.setLimit(limit);
472 partition.filter.filter(constrain
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
H A DDpmMockContext.java336 public final IntentFilter filter; field in class:DpmMockContext.BroadcastReceiverRegistration
342 public BroadcastReceiverRegistration(BroadcastReceiver receiver, IntentFilter filter, argument
345 this.filter = filter;
354 if (filter.match(null, intent, false, "DpmMockContext") > 0) {
775 public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter) { argument
776 mBroadcastReceivers.add(new BroadcastReceiverRegistration(receiver, filter, null));
777 return spiedContext.registerReceiver(receiver, filter);
781 public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter, argument
783 mBroadcastReceivers.add(new BroadcastReceiverRegistration(receiver, filter, schedule
788 registerReceiverAsUser(BroadcastReceiver receiver, UserHandle user, IntentFilter filter, String broadcastPermission, Handler scheduler) argument
[all...]

Completed in 555 milliseconds

1234567891011>>