Searched refs:found (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmAnalyzerTest.java89 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>();
92 zipClasses, found);
97 found.keySet().toArray());
98 assertArrayEquals(new ClassReader[] { cr }, found.values().toArray());
104 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>();
107 found.clear();
108 mAa.findGlobs("mock_android.view", zipClasses, found);
111 found.keySet().toArray());
114 mAa.findGlobs("mock_android.*.*Group$*Layout*", zipClasses, found);
120 found
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
H A DListSetSelectionTest.java71 boolean found = false;
76 found = true;
80 assertTrue("Selected item not visible in list", found);
102 boolean found = false;
108 found = true;
112 assertTrue("Selected item not visible in list", found);
137 boolean found = false;
142 found = true;
146 assertTrue("Selected item not visible in list", found);
/frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
H A DGridTouchSetSelectionTest.java71 boolean found = false;
76 found = true;
80 assertTrue("Selected item not visible in list", found);
/frameworks/base/core/java/android/util/
H A DStateSet.java78 boolean found = false;
93 found = true;
102 if (mustMatch && !found) {
/frameworks/base/core/java/android/os/
H A DUEventObserver.java125 boolean found = true;
126 while (found) {
127 found = false;
132 found = true;
H A DMessageQueue.java122 // Try to retrieve the next message. Return if found.
232 boolean found = false;
238 found = true;
252 found = true;
262 return found;
/frameworks/base/telephony/java/com/android/internal/telephony/test/
H A DSimulatedGsmCallState.java279 boolean found;
281 found = false;
291 found = true;
304 found = true;
307 return found;
318 boolean found = false;
325 found = true;
329 return found;
340 boolean found = false;
346 found
[all...]
H A DModelInterpreter.java593 boolean found = false;
601 found = true;
606 if (!found) {
/frameworks/base/test-runner/src/android/test/
H A DViewAsserts.java343 boolean found = false;
346 if (!found) {
347 found = true;
354 assertTrue("group does not contain " + child, found);
369 assertTrue("child " + child + " is found in parent", false);
/frameworks/base/media/libstagefright/codecs/aacenc/src/
H A Ddyn_bits.c388 Flag found = 0; local
423 found = 0;
429 found = 0;
436 found = 1;
457 for (m = i + 1; (m < sectionData->noOfSections) && (found == 0); m++) {
465 found = 1;
485 if (found == 0) {
/frameworks/base/core/jni/
H A Dandroid_util_EventLog.cpp203 int found = 0; local
204 for (int i = 0; !found && i < tagLength; ++i) {
205 found = (tag == tagValues[i]);
208 if (found) {
/frameworks/base/core/java/android/text/
H A DAutoText.java106 * of text. Returns null if no correction can be found.
220 boolean found = false;
237 found = true;
242 if (!found) {
/frameworks/base/core/java/android/widget/
H A DAdapterView.java597 // Child not found!
914 boolean found = false;
935 found = true;
939 if (!found) {
960 found = true;
964 if (!found) {
989 * be found
1076 * down. Returns {@link #INVALID_POSITION} if nothing can be found.
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java81 * Fills the generator with classes & dependencies found.
91 Map<String, ClassReader> found = findIncludes(zipClasses);
92 Map<String, ClassReader> deps = findDeps(zipClasses, found);
95 mGen.setKeep(found);
155 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>();
160 findGlobs(s, zipClasses, found);
163 findClassesDerivingFrom(s, zipClasses, found);
166 return found;
172 * If found, insert it in the in_out_found map.
179 throw new LogAbortException("Class %s not found b
[all...]
/frameworks/base/media/libeffects/factory/
H A DEffectsFactory.c200 int found = 0; local
597 int found = 0; local
600 while (e && !found) {
606 found = 1;
613 if (!found) {
614 LOGV("findEffect() effect not found");
617 LOGV("findEffect() found effect: %s in lib %s", d->name, l->path);
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java494 boolean found = false;
495 for (int j=0; j<pkgInfo.permissions.length && !found; j++) {
497 found = true;
500 if (!found) {
501 fail("Permission not found: " + cmd);
513 boolean found = false;
514 for (int j=0; j<pkgInfo.permissions.length && !found; j++) {
516 found = true;
519 if (found) {
524 boolean found
[all...]
/frameworks/base/media/libstagefright/omx/
H A DOMXNodeInstance.cpp477 bool found = false; local
481 found = true;
487 if (!found) {
/frameworks/base/services/java/com/android/server/connectivity/
H A DTethering.java178 boolean found = false;
181 found = true;
183 found = true;
186 if (found == false) return;
222 boolean found = false;
225 found = true;
228 found = true;
231 if (found == false) {
1161 // check for what iface we can use - if none found switch to error.
1331 // make sure we're still using a requested connection - may have found
[all...]
/frameworks/base/tools/aapt/
H A DImages.cpp175 bool found = false; local
183 found = true;
207 if (required && !found) {
208 *outError = "No marked region found along edge";
224 bool found = false; local
232 found = true;
256 if (required && !found) {
257 *outError = "No marked region found along edge";
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java125 * <code>null</code> if the number cannot be found.
1324 // return true if one is found.
1330 // no matches found against the list!
1663 // will ever be found in a legal PSTN number.)
1831 boolean found;
1833 found = false;
1838 if (c == '0' && !found) {
1839 found = true;
1845 return found;
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java1154 GsmMmiCode found = null;
1157 found = mPendingMMIs.get(i);
1162 if (found != null) {
1166 found.onUssdFinishedError();
1168 found.onUssdFinished(ussdMessage, isUssdRequest);
1170 } else { // pending USSD not found
1389 // found the object, now we send off the message we had originally
/frameworks/base/opengl/libs/EGL/
H A Degl.cpp890 bool found = false; local
897 found = true;
903 if (found && cnx->dso) {
1437 bool found = false; local
1441 found = true;
1448 if (found) {
/frameworks/base/core/java/android/provider/
H A DCalendar.java1326 Log.d(TAG, "missed alarms found: " + cursor.getCount());
1368 * the given event id, begin time and alarm time. If one is found
1392 boolean found = false;
1395 found = true;
1402 return found;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java906 boolean found = false;
915 found = true;
920 if (found == false) {
/frameworks/base/core/java/android/hardware/
H A DSensorManager.java639 //Log.d(TAG, "found sensor: " + sensor.getName() +
900 boolean found = false;
903 found = true;
907 if (!found) {

Completed in 595 milliseconds

12