Searched defs:filter (Results 101 - 114 of 114) sorted by relevance

12345

/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java144 // State for the currently installed input filter.
294 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
295 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
296 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
297 filter.addAction(Intent.ACTION_PACKAGE_REPLACED);
298 filter.addDataScheme("package");
304 }, filter, null, mHandler);
306 filter = new IntentFilter(BluetoothDevice.ACTION_ALIAS_CHANGED);
312 }, filter, null, mHandler);
464 * Sets an input filter tha
474 setInputFilter(IInputFilter filter) argument
[all...]
/frameworks/base/tools/aapt/
H A DResourceTable.cpp2650 ResourceFilter filter; local
2651 status_t err = filter.parse(bundle->getConfigurations());
2713 if (filterable && !filter.match(config)) {
2855 if (filterable && !filter.match(cl->getEntries().keyAt(ci))) {
2859 if (filterable && !filter.match(cl->getEntries().keyAt(cj))) {
2901 if (filterable && !filter.match(config)) {
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java309 IntentFilter filter = IntentFilter.CREATOR.createFromParcel(data);
312 Intent intent = registerReceiver(app, packageName, rec, filter, perm, userId);
2318 IntentFilter filter, String perm, int userId) throws RemoteException
2326 filter.writeToParcel(data, 0);
2316 registerReceiver(IApplicationThread caller, String packageName, IIntentReceiver receiver, IntentFilter filter, String perm, int userId) argument
H A DIActivityManager.java87 IIntentReceiver receiver, IntentFilter filter,
86 registerReceiver(IApplicationThread caller, String callerPackage, IIntentReceiver receiver, IntentFilter filter, String requiredPermission, int userId) argument
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES30.cpp1398 /* void glBlitFramebuffer ( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter ) */
1401 (JNIEnv *_env, jobject _this, jint srcX0, jint srcY0, jint srcX1, jint srcY1, jint dstX0, jint dstY0, jint dstX1, jint dstY1, jint mask, jint filter) {
1412 (GLenum)filter
1400 android_glBlitFramebuffer__IIIIIIIIII(JNIEnv *_env, jobject _this, jint srcX0, jint srcY0, jint srcX1, jint srcY1, jint dstX0, jint dstY0, jint dstX1, jint dstY1, jint mask, jint filter) argument
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp3179 void OpenGLRenderer::setupColorFilter(SkiaColorFilter* filter) { argument
3180 mDrawModifiers.mColorFilter = filter;
/frameworks/base/core/java/android/widget/
H A DAbsListView.java461 * Used with type filter window
1538 * Enables or disables the type filter window. If enabled, typing when
1539 * this view has focus will filter the children to match the users input.
1622 String filter; field in class:AbsListView.SavedState
1645 filter = in.readString();
1668 out.writeString(filter);
1689 + " filter=" + filter
1728 ss.filter = mPendingSync.filter;
[all...]
H A DEditor.java3037 // Touch-up filter: number of previous positions remembered
3923 public CharSequence filter(CharSequence source, int start, int end, method in class:Editor.UndoInputFilter
3926 Log.d(TAG, "filter: source=" + source + " (" + start + "-" + end + ")");
3927 Log.d(TAG, "filter: dest=" + dest + " (" + dstart + "-" + dend + ")");
/frameworks/base/services/input/
H A DInputReader.cpp3921 // most recent touch within the screen area. The idea is to filter out stray
6284 // To eliminate noise while the joystick is at rest, filter out small variations
6286 axis.filter = axis.flat * 0.25f;
6486 if (force || hasValueChangedSignificantly(axis.filter,
6492 if (force || hasValueChangedSignificantly(axis.filter,
6503 float filter, float newValue, float currentValue, float min, float max) {
6508 if (fabs(newValue - currentValue) > filter
6509 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min)
6510 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max)
6511 || hasMovedNearerToValueWithinFilteredRange(filter, newValu
6502 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument
6518 hasMovedNearerToValueWithinFilteredRange( float filter, float newValue, float currentValue, float thresholdValue) argument
[all...]
H A DInputReader.h145 // in order to filter out accidental virtual key presses due to swiping gestures
1758 float filter; // filter out small variations of this size member in struct:android::JoystickInputMapper::Axis
1780 this->filter = 0;
1801 static bool hasValueChangedSignificantly(float filter,
1803 static bool hasMovedNearerToValueWithinFilteredRange(float filter,
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java645 BroadcastFilter filter, List<BroadcastFilter> dest) {
646 IBinder target = filter.receiverList.receiver.asBinder();
656 protected BroadcastFilter newResult(BroadcastFilter filter, int match, int userId) {
657 if (userId == UserHandle.USER_ALL || filter.owningUserId == UserHandle.USER_ALL
658 || userId == filter.owningUserId) {
659 return super.newResult(filter, match, userId);
670 protected boolean isPackageForFilter(String packageName, BroadcastFilter filter) {
671 return packageName.equals(filter.packageName);
6819 // foreground app. We may filter others if the caller has
12966 private final List getStickiesLocked(String action, IntentFilter filter, argument
13011 registerReceiver(IApplicationThread caller, String callerPackage, IIntentReceiver receiver, IntentFilter filter, String permission, int userId) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java2644 IntentFilter filter, int match, ComponentName activity) {
2650 + " filter=" + filter
2653 filter.dump(new PrintStreamPrinter(System.out), " ");
2660 // Add the new activity as the last chosen for this filter
2661 addPreferredActivityInternal(filter, match, null, activity, false, userId);
2828 // Re-add the filter as a "last chosen" entry (!always)
2969 || (action != null && sri.filter.matchAction(action))) {
2998 if (rii.filter == null) {
3003 // filter
2643 setLastChosenActivity(Intent intent, String resolvedType, int flags, IntentFilter filter, int match, ComponentName activity) argument
5745 allowFilterResult( PackageParser.ActivityIntentInfo filter, List<ResolveInfo> dest) argument
5764 isFilterStopped(PackageParser.ActivityIntentInfo filter, int userId) argument
5831 dumpFilter(PrintWriter out, String prefix, PackageParser.ActivityIntentInfo filter) argument
5943 allowFilterResult( PackageParser.ServiceIntentInfo filter, List<ResolveInfo> dest) argument
5962 isFilterStopped(PackageParser.ServiceIntentInfo filter, int userId) argument
5985 newResult(PackageParser.ServiceIntentInfo filter, int match, int userId) argument
6030 dumpFilter(PrintWriter out, String prefix, PackageParser.ServiceIntentInfo filter) argument
6144 allowFilterResult( PackageParser.ProviderIntentInfo filter, List<ResolveInfo> dest) argument
6163 isFilterStopped(PackageParser.ProviderIntentInfo filter, int userId) argument
6187 newResult(PackageParser.ProviderIntentInfo filter, int match, int userId) argument
6231 dumpFilter(PrintWriter out, String prefix, PackageParser.ProviderIntentInfo filter) argument
9158 deleteTempPackageFilesInDirectory(File directory, FilenameFilter filter) argument
10002 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, int userId) argument
10007 addPreferredActivityInternal(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, boolean always, int userId) argument
10038 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java789 IntentFilter filter = new IntentFilter();
790 filter.addAction(DevicePolicyManager.ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED);
791 mContext.registerReceiver(mBroadcastReceiver, filter);
5199 public void setInputFilter(IInputFilter filter) { argument
5203 mInputManager.setInputFilter(filter);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp6871 void GLTrace_glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) { argument
6931 // copy argument filter
6935 arg_filter->add_intvalue((int)filter);
6940 glContext->hooks->gl.glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
11726 void GLTrace_glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) { argument
11786 // copy argument filter
11790 arg_filter->add_intvalue((int)filter);
11795 glContext->hooks->gl.glBlitFramebufferANGLE(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);

Completed in 575 milliseconds

12345