Searched defs:check (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/libs/binder/
H A DPermission.cpp60 bool Permission::check(pid_t pid, uid_t uid) const function in class:android::Permission
80 // no need to check again, the old item will be replaced if it is
/frameworks/base/core/tests/coretests/src/android/net/
H A DUriMatcherTest.java43 check("content://asdf", UriMatcher.NO_MATCH);
44 check("content://people", PEOPLE);
45 check("content://people/1", PEOPLE_ID);
46 check("content://people/asdf", UriMatcher.NO_MATCH);
47 check("content://people/2/phones", PEOPLE_PHONES);
48 check("content://people/2/phones/3", PEOPLE_PHONES_ID);
49 check("content://people/2/phones/asdf", UriMatcher.NO_MATCH);
50 check("content://people/2/addresses", PEOPLE_ADDRESSES);
51 check("content://people/2/addresses/3", PEOPLE_ADDRESSES_ID);
52 check("conten
85 void check(String uri, int expected) method in class:UriMatcherTest
[all...]
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DMultiRectAreaOp.java418 void check(Region d, int index, boolean t) { method in class:MultiRectAreaOp.Union
459 check(d1, 1, false);
467 check(d2, 1, false);
484 check(d2, i2, true);
497 check(d1, i1, true);
H A DMultiRectArea.java37 * If CHECK is true validation check active
374 check(this, "MultiRectArea(MRA)"); //$NON-NLS-1$
390 check(this, "MultiRectArea(Rectangle)"); //$NON-NLS-1$
405 check(this, "MultiRectArea(Rectangle)"); //$NON-NLS-1$
478 static MultiRectArea check(MultiRectArea mra, String msg) { method in class:MultiRectArea
590 MultiRectArea res = check(MultiRectAreaOp.Intersection.getResult(src1, src2), "intersect(MRA,MRA)"); //$NON-NLS-1$
598 MultiRectArea res = check(new MultiRectAreaOp.Union().getResult(src1, src2), "union(MRA,MRA)"); //$NON-NLS-1$
606 MultiRectArea res = check(MultiRectAreaOp.Subtraction.getResult(src1, src2), "subtract(MRA,MRA)"); //$NON-NLS-1$
/frameworks/base/core/java/android/widget/
H A DRadioGroup.java152 public void check(int id) { method in class:RadioGroup
189 * @see #check(int)
201 * @see #check(int)
205 check(-1);
/frameworks/base/core/tests/coretests/src/android/os/
H A DAidlTest.java39 private static boolean check(TestParcelable p, int n, String s) { method in class:AidlTest
256 assertTrue("out parameter 0: " + list.get(0), check(list.get(0), 33, "asdf"));
257 assertTrue("out parameter 1: " + list.get(1), check(list.get(1), 34, "jkl;"));
258 assertTrue("out parameter 2: " + list.get(2), check(list.get(2), 34, "jkl;"));
279 assertTrue("out parameter 0: " + list.get(0), check(list.get(0), 33, "asdf"));
280 assertTrue("out parameter 1: " + list.get(1), check(list.get(1), 34, "jkl;"));
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSMSDispatcher.java197 boolean check(String appName, int smsWaiting) { method in class:SMSDispatcher.SmsCounter
413 * The resultReceiver will check for errors and ACK/NACK back
792 if (mCounter.check(appName, SINGLE_PART_SMS)) {
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp172 // We seperate the bounds check from the initialization because we want to
173 // be able to bounds-check multiple arrays, and we can't throw an exception
176 // Return true if the bounds check succeeded
179 bool check() { function in class:android::ArrayHelper
239 bool checkOK = positions.check() && sphere.check();
402 bool initializedOK = mvp.check() && spheres.check() && results.check();
446 bool checkOK = ws.check()
[all...]
/frameworks/base/tools/aapt/
H A DResourceTable.cpp3635 sp<Package> check = mOrderedPackages[i]; local
3636 if (check->getAssignedId() == pid) {
3637 p = check;

Completed in 126 milliseconds