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

1 2 34 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gold/testsuite/
script_test_3.sh 89 found=no
94 found=yes
97 if test "$found" = "no"; then
arm_branch_in_range.sh 35 found=`grep "$pattern" $file`
36 if test -z "$found"; then
37 echo "pattern \"$pattern\" not found in file $file."
  /external/avahi/avahi-core/
findstatic.pl 50 my($found) = 0;
55 $found = 1;
61 if ($found == 0) {
  /external/deqp/framework/delibs/depool/
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/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/autotest/site_utils/
team_extract.py 4 # found in the LICENSE file.
47 found = []
53 found = find_result.split(' ')[2:]
54 logging.debug(found)
55 return found
66 found = SearchOnePerson(remaining.pop(0))
67 if found:
68 remaining += found
69 extracted += found
  /external/curl/lib/
curl_fnmatch.c 75 int found = FALSE; local
78 for(i = 0; !found; i++) {
93 found = TRUE;
358 int found = FALSE; local
360 found = TRUE;
362 found = ISALNUM(*s);
364 found = ISALPHA(*s);
366 found = ISDIGIT(*s);
368 found = ISXDIGIT(*s);
370 found = ISPRINT(*s)
    [all...]
  /external/skia/tests/
HashTest.cpp 5 * found in the LICENSE file.
28 double* found = map.find(3); local
29 REPORTER_ASSERT(r, found);
30 REPORTER_ASSERT(r, *found == 4.0);
35 found = map.find(3);
36 REPORTER_ASSERT(r, found);
37 REPORTER_ASSERT(r, *found == -3.0);
47 double* found = map.find(i); local
48 REPORTER_ASSERT(r, found);
49 REPORTER_ASSERT(r, *found == i*2.0)
61 double* found = map.find(i); local
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
gUnitTestResult.stg 34 <num_of_failure> failures found:
41 <num_of_invalid> invalid inputs found:
  /external/antlr/antlr-3.4/runtime/Python/tests/
t052import.py 157 found = self.execParser(
163 self.failUnlessEqual("S.a", found)
181 # String found = execParser("M.g", master, "MParser", "MLexer",
183 # assertEquals("S.ab\n", found);
213 found = self.execParser(
219 self.failUnlessEqual("S.a1000", found)
250 found = self.execParser(
256 self.failUnlessEqual("foo", found)
299 found = self.execParser(
305 self.failUnlessEqual("S.a", found)
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestSyntaxErrors.java 42 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "ae", false); local
56 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "abe", false); local
69 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "aaae", false); local
86 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "((i))z", false); local
  /external/apache-http/src/org/apache/http/message/
BasicHeaderIterator.java 110 boolean found = false;
111 while (!found && (from < to)) {
113 found = filterHeader(from);
115 return found ? from : -1;
BasicListHeaderIterator.java 118 boolean found = false;
119 while (!found && (from < to)) {
121 found = filterHeader(from);
123 return found ? from : -1;
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemChoose.java 81 boolean found = false;
90 found = true;
101 // System.err.println("Found COLLECTION/icuser/ictimezone/LITERAL");
111 found = true;
120 if (!found)
  /external/cmockery/cmockery_0_1_2/src/example/
key_value_test.c 56 KeyValue * const found = find_item_by_value(key_values[i].value); local
57 assert_true(found);
58 assert_int_equal(found->key, key_values[i].key);
59 assert_string_equal(found->value, key_values[i].value);
  /external/e2fsprogs/lib/ext2fs/
lookup.c 25 int found; member in struct:lookup_struct
44 ls->found++;
60 ls.found = 0;
66 return (ls.found) ? 0 : EXT2_ET_FILE_NOT_FOUND;
  /external/google-breakpad/src/common/mac/
string_utilities.cc 60 size_t found = 0; local
63 for (; found <= idx; ++found) {
71 if (found == idx) {
  /external/llvm/test/tools/dsymutil/X86/
empty_range.s 59 # debug map object isn't found. Check that we only linked one file.
  /external/toybox/toys/pending/
groupdel.c 30 int i, len = 0, found = 0; local
35 if (!found && !strcmp(*toys.optargs, grp->gr_mem[i])) found++;
38 if (!found)
  /external/valgrind/none/tests/solaris/
stack_prot.c 11 int found = 0; local
23 /* Read the file until EOF or the stack is found. */
24 while (!done && !found) {
40 /* Stack was found, validate it. */
41 found = 1;
50 /* Check if the stack was indeed found. */
51 if (!found) {
52 fprintf(stderr, "Stack not found.\n");
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DelayedOperations.java 74 QueuedOperation found = null; local
77 found = qo;
81 if (found != null) {
82 found.cancel();
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
future.py 23 self.found = {} # set
35 self.found[name] = 1
45 return self.found.keys()
73 print v.found
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
future.py 23 self.found = {} # set
35 self.found[name] = 1
45 return self.found.keys()
73 print v.found
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
future.py 23 self.found = {} # set
35 self.found[name] = 1
45 return self.found.keys()
73 print v.found
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
future.py 23 self.found = {} # set
35 self.found[name] = 1
45 return self.found.keys()
73 print v.found

Completed in 826 milliseconds

1 2 34 5 6 7 8 91011>>