Searched refs:filter (Results 276 - 300 of 317) sorted by relevance

<<111213

/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py225 built_library = filter(lambda l: lib in l, local_libs)[0]
668 for filename in fnmatch.filter(filenames, self.manifest_name):
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES30.spec29 void glBlitFramebuffer ( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter )
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java195 private static int filter(EventRecurrence r, Time iterator) method in class:RecurrenceProcessor
297 // Not allowed, filter it out.
309 // if we got to here, we didn't filter it out
988 // filter and then add
990 // passing the "end" date) unless the filter
992 int filtered = filter(r, generated);
/frameworks/base/services/core/java/com/android/server/pm/
H A DSettings.java2266 // component and intent-filter, not the set of matches. So we
2420 IntentFilter filter = new IntentFilter();
2422 filter.addAction(intent.getAction());
2426 filter.addCategory(cat);
2430 filter.addCategory(Intent.CATEGORY_DEFAULT);
2433 filter.addDataScheme(scheme);
2436 filter.addDataSchemeSpecificPart(ssp.getPath(), ssp.getType());
2439 filter.addDataAuthority(auth);
2442 filter.addDataPath(path);
2446 filter
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java1271 IntentFilter filter = new IntentFilter();
1272 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1273 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1274 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1275 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
1276 filter.addAction(Intent.ACTION_DOCK_EVENT);
1277 Intent intent = context.registerReceiver(mDockReceiver, filter);
1285 filter = new IntentFilter();
1286 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1287 filter
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java926 IntentFilter filter = new IntentFilter();
927 filter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
928 filter.addAction(Intent.ACTION_SCREEN_OFF);
929 filter.addAction(Intent.ACTION_SCREEN_ON);
931 filter.addAction("fake_artwork");
933 filter.addAction(ACTION_DEMO);
934 context.registerReceiverAsUser(mBroadcastReceiver, UserHandle.ALL, filter, null, null);
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java342 String filter = nextArg();
350 if (filter != null && !info.packageName.contains(filter)) {
1829 System.err.println(" -d: filter to only show disbled packages.");
1830 System.err.println(" -e: filter to only show enabled packages.");
1831 System.err.println(" -s: filter to only show system packages.");
1832 System.err.println(" -3: filter to only show third party packages.");
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp214 // A locale (as specified in the filter) is an underscore separated name such
1070 count = current->filter(bundle);
1131 count = filter(bundle);
1334 status_t AaptAssets::filter(Bundle* bundle) function in class:AaptAssets
1359 printf("Applying required filter: %s\n",
1363 printf("Applying preferred density filter: %s\n",
H A DAaptAssets.h600 status_t filter(Bundle* bundle);
H A DResourceTable.cpp2093 sp<AaptFile> ResourceTable::flatten(Bundle* bundle, const sp<const ResourceFilter>& filter, argument
2097 status_t err = flatten(bundle, filter, data, isBase);
2754 status_t ResourceTable::flatten(Bundle* bundle, const sp<const ResourceFilter>& filter, argument
2843 if (filterable && !filter->match(config)) {
3005 if (filterable && !filter->match(cl->getEntries().keyAt(ci))) {
3009 if (filterable && !filter->match(cl->getEntries().keyAt(cj))) {
3056 if (filterable && !filter->match(config)) {
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h355 virtual status_t setMetadataFilter(const Parcel& filter);
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java84 * Activities that support this intent should specify a MIME filter of "image/*"
200 public void setFilterBitmap(boolean filter) { argument
573 * allow setting an alpha, color filter, or other attributes, etc. The
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java142 * as alpha (set via setAlpha) and color filter (set via setColorFilter).
277 * Set to true to have the drawable filter its bitmap when scaled or rotated
282 public void setFilterBitmap(boolean filter) {} argument
459 * Specify an optional color filter for the drawable. Pass {@code null} to
460 * remove any existing color filter.
462 * @param cf the color filter to apply, or {@code null} to remove the
463 * existing color filter
468 * Specify a color and Porter-Duff mode to be the color filter for this
478 * Setting a color filter via {@link #setColorFilter(ColorFilter)} overrides
491 * Setting a color filter vi
[all...]
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.h856 void setupDrawColorFilter(const SkColorFilter* filter);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java170 IntentFilter filter = new IntentFilter();
171 filter.addAction(INTENT_RECONNECT_ALARM + '.' + apnContext.getApnType());
172 filter.addAction(INTENT_RESTART_TRYSETUP_ALARM + '.' + apnContext.getApnType());
173 mPhone.getContext().registerReceiver(mIntentReceiver, filter, null, mPhone);
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaRouterService.java98 IntentFilter filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
106 }, filter);
/frameworks/native/services/inputflinger/
H A DInputReader.cpp3975 // most recent touch within the screen area. The idea is to filter out stray
6344 // To eliminate noise while the joystick is at rest, filter out small variations
6346 axis.filter = axis.fuzz ? axis.fuzz : axis.flat * 0.25f;
6546 if (force || hasValueChangedSignificantly(axis.filter,
6552 if (force || hasValueChangedSignificantly(axis.filter,
6563 float filter, float newValue, float currentValue, float min, float max) {
6568 if (fabs(newValue - currentValue) > filter
6569 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min)
6570 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max)
6571 || hasMovedNearerToValueWithinFilteredRange(filter, newValu
6562 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument
6578 hasMovedNearerToValueWithinFilteredRange( float filter, float newValue, float currentValue, float thresholdValue) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java745 IntentFilter filter = new IntentFilter();
746 filter.addAction(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED);
758 new IntentFilter(filter));
1562 final IntentFilter filter = new IntentFilter(Intent.ACTION_USER_PRESENT);
1563 mContext.registerReceiver(mUserPresentReceiver, filter);
3582 // we could silently fail or we can filter the available nets to only give
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java1036 IntentFilter filter = new IntentFilter();
1037 filter.addAction(RUN_BACKUP_ACTION);
1038 context.registerReceiver(mRunBackupReceiver, filter,
1042 filter = new IntentFilter();
1043 filter.addAction(RUN_INITIALIZE_ACTION);
1044 context.registerReceiver(mRunInitReceiver, filter,
1246 IntentFilter filter = new IntentFilter();
1247 filter.addAction(Intent.ACTION_PACKAGE_ADDED);
1248 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
1249 filter
[all...]
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java2034 public CharSequence filter( method in class:NumberPicker.InputTextFilter
2037 CharSequence filtered = super.filter(source, start, end, dest, dstart, dend);
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp121 // Instead of modifying 0x02, change the filter level.
125 // Don't pass through filter flag, which is no longer stored in paint's flags.
278 SkColorFilter* filter = reinterpret_cast<SkColorFilter *>(filterHandle); local
279 return reinterpret_cast<jlong>(obj->setColorFilter(filter));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java2635 final AnimationFilter filter; field in class:NotificationStackScrollLayout.AnimationEvent
2648 filter = FILTERS[type];
/frameworks/base/docs/html/guide/
H A Dguide_toc.cs170 <li><a href="<?cs var:toroot ?>guide/topics/manifest/intent-filter-element.html">&lt;intent-filter&gt;</a></li>
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/
H A DBackDropperFilter.java490 /** Overall filter state */
503 public void onLearningDone(BackDropperFilter filter); argument
/frameworks/base/opengl/java/android/opengl/
H A DGLES30.java727 // C function void glBlitFramebuffer ( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter )
739 int filter

Completed in 795 milliseconds

<<111213