/external/webkit/WebKitTools/Scripts/webkitpy/ |
grammar.py | 36 if re.search("h$", noun):
|
/packages/apps/Browser/src/com/android/browser/search/ |
SearchEngine.java | 16 package com.android.browser.search; 23 * Interface for search engines. 27 // Used if the search engine is Google 31 * Gets the unique name of this search engine. 36 * Gets the human-readable name of this search engine. 41 * Starts a search. 46 * Gets search suggestions. 51 * Checks whether this search engine supports search suggestions. 56 * Closes this search engine [all...] |
/external/dhcpcd/dhcpcd-hooks/ |
20-resolv.conf | 14 local interfaces= header= search= srvs= servers= x= 26 # Build the search list 27 search=$(cd "${resolv_conf_dir}"; \ 28 key_get_value "search " ${interfaces}) 29 [ -n "${search}" ] && search="search $(uniqify ${search})\n" 48 printf "${search}${servers}" >> "${cf}" 70 conf="${conf}search ${new_domain_search}\n [all...] |
/external/libpng/contrib/gregbook/ |
makevms.com | 13 $ if f$search("[---.zlib]zlib.h").nes."" then zpath = "[---.zlib]" 14 $ if f$search("[--]png.h").nes."" then pngpath = "[--]" 16 $ if f$search("[-.zlib]zlib.h").nes."" then zpath = "[-.zlib]" 17 $ if f$search("[-.libpng]png.h").nes."" then pngpath = "[-.libpng]" 40 $ if f$search("SYS$SYSTEM:DECC$COMPILER.EXE").eqs."" 43 $ if f$search("SYS$SYSTEM:VAXC.EXE").eqs."" 100 $ If F$Search(P1) .Eqs. "" Then Goto Makeit 113 $ AFile = F$Search(File)
|
/external/chromium/third_party/icu/source/test/perf/strsrchperf/ |
strsrchperf.h | 56 StringSearchPerfFunction(StrSrchFn func, BoyerMooreSearch *search, const UChar *source, int32_t sourceLen, const UChar *pattern, int32_t patternLen) { 62 bms = search; 65 StringSearchPerfFunction(StrSrchFn func, UStringSearch* search, const UChar* source,int32_t sourceLen, const UChar* pattern, int32_t patternLen) { 71 srch = search; 104 while (bms->search(offset, start, end)) { 112 /* NOTE: No Boyer-Moore backward search yet... */ 113 while (bms->search(offset, start, end)) {
|
/external/icu4c/test/perf/strsrchperf/ |
strsrchperf.h | 56 StringSearchPerfFunction(StrSrchFn func, BoyerMooreSearch *search, const UChar *source, int32_t sourceLen, const UChar *pattern, int32_t patternLen) { 62 bms = search; 65 StringSearchPerfFunction(StrSrchFn func, UStringSearch* search, const UChar* source,int32_t sourceLen, const UChar* pattern, int32_t patternLen) { 71 srch = search; 104 while (bms->search(offset, start, end)) { 112 /* NOTE: No Boyer-Moore backward search yet... */ 113 while (bms->search(offset, start, end)) {
|
/packages/apps/Email/src/org/apache/commons/io/ |
IOCase.java | 206 * @param search the start to search for, not null
210 public boolean checkRegionMatches(String str, int strStartIndex, String search) {
211 return str.regionMatches(!sensitive, strStartIndex, search, 0, search.length());
|
/external/webkit/WebCore/inspector/front-end/ |
InspectorFrontendHostStub.js | 64 search: function(sourceRow, query)
|
/external/webkit/WebCore/page/ |
Location.h | 56 String search() const;
|
/external/webkit/WebCore/workers/ |
WorkerLocation.h | 58 String search() const;
|
WorkerLocation.idl | 41 readonly attribute DOMString search;
|
WorkerLocation.cpp | 67 String WorkerLocation::search() const function in class:WebCore::WorkerLocation
|
/external/webkit/WebKitTools/pywebsocket/test/ |
run_all.py | 48 match = _TEST_MODULE_PATTERN.search(filename)
|
/external/webkit/WebKitTools/Scripts/webkitpy/style/processors/ |
cpp.py | 134 def search(pattern, s): function 138 return _regexp_compile_cache[pattern].search(s) 625 if re.search(r'Copyright', lines[line], re.I): [all...] |
/external/icu4c/samples/strsrch/ |
strsrch.cpp | 60 UStringSearch * search = 0; variable 227 * Creates a string search 234 search = usearch_openFromCollator(pattern, -1, source, -1, collator, NULL, 240 usearch_setAttribute(search, USEARCH_OVERLAP, USEARCH_ON, &status); 243 usearch_setAttribute(search, USEARCH_CANONICAL_MATCH, USEARCH_ON, 247 fprintf(stderr, "Error setting search attributes\n"); 256 int32_t offset = usearch_next(search, &status); 262 usearch_getMatchedLength(search)); 263 offset = usearch_next(search, &status); 269 fprintf(stdout, "End of search\n") [all...] |
/external/quake/quake/src/WinQuake/ |
common.cpp | 87 The "game directory" is the first tree on the search path and directory that all generated files (savegames, screenshots, demos, config files) will be saved to. This can be overridden with the "-game" command line parameter. The game directory can never be changed while quake is executing. This is a precacution against having a malicious server instruct clients to write files over areas they shouldn't. 90 specified, when a file is found by the normal search path, it will be mirrored 1216 int memsearch (const byte *start, int count, int search) 1221 if (start[i] == search) 1295 Con_Printf ("Current search path:\n"); 1394 Finds the file in the search path. 1400 searchpath_t *search; local 1413 // search through the path, one element at a time 1415 search = com_searchpaths; 1419 search = search->next 1725 searchpath_t *search; local 1769 searchpath_t *search; local [all...] |
/build/tools/atree/ |
files.h | 33 int locate(FileRecord* rec, const vector<string>& search);
|
/development/testrunner/ |
am_instrument_parser.py | 94 key = re_result.search(line).group(1).strip(string.whitespace) 97 val = re_result.search(line).group(2).strip(string.whitespace) 107 val = re_code.search(line).group(1).strip(string.whitespace) 140 re_status_code = re.search(r'INSTRUMENTATION_STATUS_CODE: '
|
/external/chromium/android/ |
prefix.h | 10 using std::search;
|
/external/chromium/third_party/icu/public/i18n/unicode/ |
bmsearch.h | 35 * This object holds the information needed to do a Collation sensitive Boyer-Moore search. It encapulates 39 * To do a search, you fist need to get a <code>CollData</code> object by calling <code>CollData::open</code>. 41 * string and the target string. Then you call the <code>search</code> method. Here's a code sample: 54 * BoyerMooreSearch *search = new BoyerMooreSearch(collData, *patternString, target, status); 65 * while (search->search(offset, start, end)) { 77 * delete search; 114 * @param patternString - the string for which to search 115 * @param targetString - the string in which to search or <code>NULL</code> if youu will 144 * Search for the pattern string in the target string [all...] |
/external/elfutils/libdw/ |
dwarf_end.c | 19 #include <search.h> 49 /* The search tree for the CUs. NB: the CU data itself is
|
/external/icu4c/i18n/unicode/ |
bmsearch.h | 35 * This object holds the information needed to do a Collation sensitive Boyer-Moore search. It encapulates 39 * To do a search, you fist need to get a <code>CollData</code> object by calling <code>CollData::open</code>. 41 * string and the target string. Then you call the <code>search</code> method. Here's a code sample: 54 * BoyerMooreSearch *search = new BoyerMooreSearch(collData, *patternString, target, status); 65 * while (search->search(offset, start, end)) { 77 * delete search; 114 * @param patternString - the string for which to search 115 * @param targetString - the string in which to search or <code>NULL</code> if youu will 144 * Search for the pattern string in the target string [all...] |
/external/protobuf/gtest/xcode/Scripts/ |
versiongenerate.py | 48 version_values = version_expression.search(opening_string)
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-119909.js | 70 * and tests str.search(), str.match(), str.replace() 83 var res = strOriginal.search(re);
|
/external/webkit/WebCore/html/ |
HTMLAnchorElement.idl | 43 readonly attribute DOMString search; 51 attribute [ConvertNullToNullString] DOMString search;
|