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

123

/frameworks/compile/libbcc/bcinfo/Wrap/
H A Din_memory_wrapper_input.cpp30 size_t found = 0; local
36 while (found < wanted) {
38 return found;
40 buffer[found++] = _buffer[_pos++];
42 return found;
H A Dfile_wrapper_input.cpp36 size_t found = fread((char*) buffer, 1, wanted, _file); local
40 return found;
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmAnalyzerTest.java107 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>();
110 zipClasses, found);
115 found.keySet().toArray());
116 assertArrayEquals(new ClassReader[] { cr }, found.values().toArray());
126 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>();
129 found.clear();
130 mAa.findGlobs("mock_android.view", zipClasses, found);
133 found.keySet().toArray());
136 mAa.findGlobs("mock_android.*.*Group$*Layout*", zipClasses, found);
142 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/services/java/com/android/server/
H A DNativeDaemonConnector.java526 PendingCmd found = null;
530 found = pendingCmd;
534 if (found == null) {
546 found = new PendingCmd(cmdNum, null);
547 mPendingCmds.add(found);
549 found.availableResponseCount++;
552 if (found.availableResponseCount == 0) mPendingCmds.remove(found);
555 found.responses.put(response);
562 PendingCmd found
[all...]
/frameworks/base/core/java/android/util/
H A DStateSet.java80 boolean found = false;
95 found = true;
104 if (mustMatch && !found) {
H A DTimeUtils.java61 * Returns null if no suitable zone could be found.
125 boolean found = false;
128 found = true;
132 if (found == false) {
197 Log.d(TAG, "getTimeZone('" + country + "'): found tz.getID=="
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
H A DWifiClientTest.java127 boolean found = false;
130 found = true;
133 assertTrue(found);
141 found = false;
144 found = true;
148 assertFalse(found);
222 boolean found = false;
225 found = true;
228 assertTrue(found);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedGsmCallState.java280 boolean found;
282 found = false;
292 found = true;
305 found = true;
308 return found;
319 boolean found = false;
326 found = true;
330 return found;
341 boolean found = false;
347 found
[all...]
/frameworks/opt/mailcommon/java/com/android/mailcommon/
H A DMultiAdapterSpinner.java114 boolean found = false;
120 found = true;
125 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/av/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/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java197 boolean found;
203 found = listContains(r.bymonth, r.bymonthCount,
205 if (!found) {
214 found = listContains(r.byweekno, r.byweeknoCount,
217 if (!found) {
225 found = listContains(r.byyearday, r.byyeardayCount,
227 if (!found) {
233 found = listContains(r.bymonthday, r.bymonthdayCount,
236 if (!found) {
257 found
[all...]
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.cpp268 bool found = false; local
273 found = true;
277 if (!found) {
304 bool found = false; local
309 found = true;
313 if (!found) {
330 bool found = false; local
335 found = true;
339 if (!found) {
351 bool found local
377 bool found = false; local
549 bool found = false; local
[all...]
/frameworks/rs/
H A DrsScriptGroup.cpp155 bool found = false; local
158 found = true;
162 if (!found) {
169 bool found = false; local
172 found = true;
176 if (!found) {
267 rsAssert(!"ScriptGroup:setInput kid not found");
281 rsAssert(!"ScriptGroup:setOutput kid not found");
/frameworks/base/core/jni/
H A Dandroid_util_EventLog.cpp200 int found = 0; local
201 for (int i = 0; !found && i < tagLength; ++i) {
202 found = (tag == tagValues[i]);
205 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/media/mca/filterfw/jni/
H A Djni_util.h154 const bool found = iter != objects_.end(); local
155 if (found) {
160 return found;
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DUserManagerTest.java61 boolean found = false;
67 found = true;
73 assertTrue(found);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAdapterViewICS.java623 // Child not found!
921 boolean found = false;
942 found = true;
946 if (!found) {
967 found = true;
971 if (!found) {
996 * be found
1083 * down. Returns {@link #INVALID_POSITION} if nothing can be found.
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java94 * Fills the generator with classes & dependencies found.
105 Map<String, ClassReader> found = findIncludes(zipClasses);
106 Map<String, ClassReader> deps = findDeps(zipClasses, found);
109 mGen.setKeep(found);
116 * Parses a JAR file and adds all the classes found to <code>classes</code>
189 TreeMap<String, ClassReader> found = new TreeMap<String, ClassReader>();
194 findGlobs(s, zipClasses, found);
197 findClassesDerivingFrom(s, zipClasses, found);
200 return found;
206 * If found, inser
[all...]
/frameworks/compile/libbcc/lib/Support/
H A Dsha1.c331 int found = 0; local
355 found = 1;
393 return found;
421 int found = 0; local
497 found |= verifyfile(s);
507 found = 1;
517 if (!found)
522 "No SHA1 lines found in %s\n",
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c276 int found = 0; local
424 ALOGV("EffectGetSubEffects: effect found in the list");
730 // 1 HW and 1 SW sub effect found. Set the offload flag in the Proxy desc
749 int found = 0; local
755 while (e != NULL && !found) {
763 found = 1;
770 if (!found) {
771 ALOGV("findSubEffect() effect not found");
774 ALOGV("findSubEffect() found effect: %s in lib %s", d->name, l->name);
845 int found local
[all...]
/frameworks/av/media/libstagefright/omx/
H A DSimpleSoftOMXComponent.cpp275 bool found = false;
298 found = true;
303 CHECK(found);
357 bool found = false;
377 found = true;
382 CHECK(found);

Completed in 9401 milliseconds

123