HomeSort by relevance Sort by last modified time
    Searched refs:found (Results 76 - 100 of 15010) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListSetSelectionTest.java 73 boolean found = false;
78 found = true;
82 assertTrue("Selected item not visible in list", found);
104 boolean found = false;
110 found = true;
114 assertTrue("Selected item not visible in list", found);
139 boolean found = false;
144 found = true;
148 assertTrue("Selected item not visible in list", found);
  /external/annotation-tools/annotation-file-utilities/src/annotator/scanner/
LocalClassScanner.java 44 if (lcs.found) {
52 private boolean found; field in class:LocalClassScanner
63 this.found = false;
76 if (!found && statement.getKind() == Tree.Kind.CLASS) {
79 found = true;
  /external/apache-http/src/org/apache/http/conn/scheme/
SchemeRegistry.java 83 Scheme found = get(name); local
84 if (found == null) {
88 return found;
125 Scheme found = registeredSchemes.get(name); local
126 return found;
  /external/gptfdisk/
parttypes.cc 289 int found = 0; local
292 while ((theItem != NULL) && (!found)) {
295 found = 1;
300 if (!found) {
305 cout << "Exact type match not found for type code ";
309 } // if (!found)
316 int found = 0; local
319 while ((theItem != NULL) && (!found)) {
320 if (theItem->GUIDType == *this) { // found it!
322 found = 1
337 int found = 0; local
362 int found = 0; local
422 int found = 0; local
    [all...]
  /external/testng/src/test/java/test/
BaseDistributedTest.java 12 protected void verifyTests(String title, String[] exp, Map found) {
18 Assert.assertEquals(found.size(), expected.size(),
23 if (null == found.get(name)) {
25 dumpMap("Found", found);
28 Assert.assertNotNull(found.get(name),
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYSeriesRenderer.java 37 Hashtable<XYRegionFormatter, String> found = new Hashtable<XYRegionFormatter, String>(); local
45 found.put(f, region.getLabel());
50 return found;
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestFastQueue.java 46 String found = q.toString(); local
47 assertEquals(expecting, found);
65 String found = buf.toString(); local
66 assertEquals(expecting, found);
84 String found = buf.toString(); local
85 assertEquals(expecting, found);
98 String found = msg; local
99 assertEquals(expecting, found);
114 String found = msg; local
115 assertEquals(expecting, found);
129 String found = msg; local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_procmaps_test.cc 43 bool found = false; local
48 found = true;
52 EXPECT_TRUE(found);
  /external/deqp/framework/delibs/depool/
dePoolMultiSet.c 48 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
49 DE_TEST_ASSERT(found == inserted);
60 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
61 DE_TEST_ASSERT(found == inserted);
73 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
74 DE_TEST_ASSERT(found == inserted);
94 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
101 DE_TEST_ASSERT(found == (count > 0));
114 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
120 DE_TEST_ASSERT(found == (count > 0))
135 deBool found = deTestMultiSet_exists(set, (deInt16)i); local
    [all...]
dePoolSet.c 50 deBool found = deTestSet_exists(set, (deInt16)i); local
51 DE_TEST_ASSERT(found == inserted);
62 deBool found = deTestSet_exists(set, (deInt16)i); local
63 DE_TEST_ASSERT(found == inserted);
75 deBool found = deTestSet_exists(set, (deInt16)i); local
76 DE_TEST_ASSERT(found == inserted);
  /external/google-breakpad/src/client/mac/handler/testcases/
breakpad_nlist_test.cc 96 bool found = false; local
100 found = true;
105 return found;
  /external/libchrome/base/process/
process_iterator.cc 3 // found in the LICENSE file.
27 ProcessEntries found; local
29 found.push_back(*process_entry);
31 return found;
  /external/selinux/libselinux/src/
selinux_check_securetty_context.c 15 int found = -1; local
40 found = 0;
50 return found;
  /toolchain/binutils/binutils-2.27/gold/testsuite/
script_test_3.sh 89 found=no
94 found=yes
97 if test "$found" = "no"; then
  /art/test/063-process-manager/src/
Main.java 42 boolean found = false;
55 found = true;
59 if (! found) {
69 boolean found = false;
73 found = true;
82 if (ok && (!reaperMustExist || found)) {
  /cts/tests/tests/security/src/android/security/cts/
SELinuxTest.java 48 String found = KernelSettingsTest.getFile("/proc/self/attr/current"); local
51 ", Found: \"" + found + "\"";
52 assertTrue(msg, found.startsWith(expected));
57 String found = getFileContext(appDataDir.getAbsolutePath()); local
60 ", Found: \"" + found + "\"";
61 assertTrue(msg, found.startsWith(expected));
  /external/libxml2/doc/
buildDocBookCatalog 87 found=`find $1 -name docbookx.dtd -exec grep -l "$s" {} \;`
88 for dtd in $found; do
90 echo Found DocBook XML $VERSION DTD in $docbookdir
262 found=`find $top -name iso-amsb.ent`
263 if [ "$found" = "" ] ; then
264 found=`find /usr/share/xml -name iso-amsb.ent`
266 if [ "$found" = "" ] ; then
267 found=`find $HOME -name iso-amsb.ent`
269 if [ "$found" = "" ] ; then
270 found=`find /usr/local -name iso-amsb.ent
    [all...]
  /external/curl/lib/
curl_fnmatch.c 75 int found = FALSE; local
78 for(i = 0; !found; i++) {
93 found = TRUE;
354 int found = FALSE; local
356 found = TRUE;
358 found = ISALNUM(*s);
360 found = ISALPHA(*s);
362 found = ISDIGIT(*s);
364 found = ISXDIGIT(*s);
366 found = ISPRINT(*s)
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
syscall_windows_386.go 3 // license that can be found in the LICENSE file.
syscall_windows_amd64.go 3 // license that can be found in the LICENSE file.
zerrors_windows_386.go 3 // license that can be found in the LICENSE file.
zerrors_windows_amd64.go 3 // license that can be found in the LICENSE file.
  /prebuilts/go/darwin-x86/test/fixedbugs/issue15548.dir/
c.go 3 // license that can be found in the LICENSE file.
  /prebuilts/go/darwin-x86/test/fixedbugs/issue15920.dir/
b.go 3 // license that can be found in the LICENSE file.
  /prebuilts/go/linux-x86/src/syscall/
syscall_windows_386.go 3 // license that can be found in the LICENSE file.

Completed in 1135 milliseconds

1 2 34 5 6 7 8 91011>>