HomeSort by relevance Sort by last modified time
    Searched refs:find (Results 1 - 25 of 2954) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/openssh/contrib/aix/
inventory.sh 33 find . ! -name . -print | perl -ne '{
  /build/tools/
print_module_licenses.sh 2 find . -name MODULE_LICENSE_\* | sed 's/\/MODULE_LICENSE_/\ /' | sed 's/\.\///' | awk '{ print $2 " " $1; }' | sort
  /external/qemu/distrib/sdl-1.2.15/Xcode/
mkxcode.csh 12 find . -name ".DS_Store" -exec rm "{}" ";"
15 find . -name "*.pbxuser*" -exec rm "{}" ";"
16 find . -name "*.mode*" -exec rm "{}" ";"
17 find . -name "*.perspective*" -exec rm "{}" ";"
  /bionic/libc/string/
strcasestr.c 40 * Find the first occurrence of find in s, ignore case.
43 strcasestr(const char *s, const char *find)
48 if ((c = *find++) != 0) {
50 len = strlen(find);
56 } while (strncasecmp(s, find, len) != 0);
strstr.c 37 * Find the first occurrence of find in s.
40 strstr(const char *s, const char *find)
45 if ((c = *find++) != 0) {
46 len = strlen(find);
52 } while (strncmp(s, find, len) != 0);
  /dalvik/dx/tests/118-find-usages/
run 21 dx --find-usages foo.dex "Ljava/io/StreamTokenizer;" nval
24 dx --find-usages foo.dex "Ljava/util/ArrayList;" remove
27 dx --find-usages foo.dex "Ljava/util/Collection;" remove
30 dx --find-usages foo.dex "Ljava/lang/String;" valueOf
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DigestAlgorithmIdentifierFinder.java 8 * Find the digest algorithm identifier that matches with
14 AlgorithmIdentifier find(AlgorithmIdentifier sigAlgId); method in interface:DigestAlgorithmIdentifierFinder
17 * Find the algorithm identifier that matches with
23 AlgorithmIdentifier find(String digAlgName); method in interface:DigestAlgorithmIdentifierFinder
SignatureAlgorithmIdentifierFinder.java 8 * Find the signature algorithm identifier that matches with
14 AlgorithmIdentifier find(String sigAlgName); method in interface:SignatureAlgorithmIdentifierFinder
  /external/e2fsprogs/
.missing-copyright 3 find . -type f \! -name \*~ \! -exec grep -q Begin-Header \{\} \; -print \
  /bionic/libc/wchar/
wcsstr.c 44 * Find the first occurrence of find in s.
47 wcsstr(const wchar_t * __restrict s, const wchar_t * __restrict find)
52 if ((c = *find++) != L'\0') {
53 len = wcslen(find);
59 } while (wcsncmp(s, find, len) != 0);
  /libcore/luni/src/test/java/tests/api/java/util/support/
I.java 4 String find(String key); method in interface:I
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
ModeTest.java 36 assertTrue(m.find());
38 assertFalse(m.find());
42 assertTrue(m.find());
44 assertTrue(m.find());
46 assertFalse(m.find());
50 assertTrue(m.find());
52 assertTrue(m.find());
54 assertFalse(m.find());
63 assertTrue(m.find());
65 assertFalse(m.find());
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
ModeTest.java 36 assertTrue(m.find());
38 assertFalse(m.find());
43 assertTrue(m.find());
45 assertTrue(m.find());
47 assertFalse(m.find());
52 assertTrue(m.find());
54 assertTrue(m.find());
56 assertFalse(m.find());
64 assertTrue(m.find());
66 assertFalse(m.find());
    [all...]
  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
PackageTest.java 33 assertTrue(out, ALLOW_MONKEY.matcher(out).find());
34 assertFalse(out, ALLOW_CHIMP.matcher(out).find());
37 assertFalse(out, ALLOW_MONKEY.matcher(out).find());
38 assertTrue(out, ALLOW_CHIMP.matcher(out).find());
44 assertTrue(out, ALLOW_MONKEY.matcher(out).find());
45 assertTrue(out, ALLOW_CHIMP.matcher(out).find());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/support/
I.java 21 String find(String key); method in interface:I
  /external/skia/tests/
RefDictTest.cpp 18 REPORTER_ASSERT(reporter, NULL == dict.find(NULL));
19 REPORTER_ASSERT(reporter, NULL == dict.find("foo"));
20 REPORTER_ASSERT(reporter, NULL == dict.find("bar"));
23 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
27 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
31 REPORTER_ASSERT(reporter, &data1 == dict.find("foo"));
36 REPORTER_ASSERT(reporter, NULL == dict.find("foo"));
42 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
43 REPORTER_ASSERT(reporter, &data1 == dict.find("bar"));
48 REPORTER_ASSERT(reporter, &data1 == dict.find("foo"))
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
AbstractListIndexOfTester.java 37 protected abstract int find(Object o); method in class:AbstractListIndexOfTester
48 0, find(samples.e0)); method
53 -1, find(samples.e3)); method
59 -1, find(null)); method
67 -1, find(null)); method
77 -1, find(samples.e3)); method
85 getNullLocation(), find(null)); method
91 -1, find(WrongType.VALUE)); method
  /external/srtp/
update.sh 7 a=`find . -name "*.[ch]"`
  /external/valgrind/main/auxprogs/
change-copyright-year 17 # The find command deliberately skips .svn/ subdirs -- we don't want to
19 for i in `find . -name '*.[chS]' -type f -not -path '*.svn\/*'` ; do
  /external/webkit/Source/WebCore/platform/
ContentType.cpp 44 size_t semi = strippedType.find(';');
46 size_t start = strippedType.find(parameterName, semi + 1, false);
48 start = strippedType.find('=', start + parameterName.length());
50 size_t quote = strippedType.find('\"', start + 1);
51 size_t end = strippedType.find('\"', start + 2);
55 end = strippedType.find(';', start + 1);
72 size_t semi = strippedType.find(';');
  /external/oprofile/libpp/
symbol_container.h 49 /// find the symbols at the given filename and line number, if any
50 symbol_collection const find(debug_name_id filename, size_t linenr) const;
52 /// find the symbols defined in the given filename, if any
53 symbol_collection const find(debug_name_id filename) const;
55 /// find the symbol with the given image_name vma if any
60 symbol_entry const * find(symbol_entry const & symbol) const;
  /dalvik/tests/003-omnibus-opcodes/
build 21 ${JAVAC} -d classes `find src -name '*.java'`
23 ${JAVAC} -d classes `find src2 -name '*.java'`
  /external/javassist/src/main/javassist/
ClassPath.java 59 URL find(String classname); method in interface:ClassPath
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
read_checksum_from_png.py 35 comment_pos = data.find(comment_key)
  /packages/apps/Email/
remove-exchange-support.sh 48 find . \( -name '*.java' -o -name '*.xml' -o -name 'Android.mk' \) -print0 |
54 find . -name '*.java' -print0 |

Completed in 1140 milliseconds

1 2 3 4 5 6 7 8 91011>>