HomeSort by relevance Sort by last modified time
    Searched refs:search (Results 51 - 75 of 925) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/remoting/tools/
verify_resources.py 63 m = re.search('i18n-content=[\'"]([^\'"]*)[\'"]', line)
66 m = re.search('i18n-title=[\'"]([^\'"]*)[\'"]', line)
69 m = re.search('i18n-value-name-[1-9]=[\'"]([^\'"]*)[\'"]', line)
73 m = re.search('/\*i18n-content\*/[\'"]([^\`"]*)[\'"]', line)
77 m = re.search('IDS_([A-Z0-9_]*)', line)
79 m = re.search('/\*i18n-content\*/["]([^\`"]*)["]', line)
83 m = re.search('__MSG_(.*)__', line)
87 m = re.search('\{\%\s+trans\s+\%\}([A-Z0-9_]+)\{\%\s+endtrans\s+\%\}', line)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
checksvnconfigfile.py 45 errorcode_autoprop = not re.search("^\s*enable-auto-props\s*=\s*yes", config_file, re.MULTILINE)
46 errorcode_png = not re.search("^\s*\*\.png\s*=\s*svn:mime-type=image/png", config_file, re.MULTILINE)
  /external/chromium_org/v8/tools/
run-valgrind.py 64 if LEAK_LINE_MATCHER.search(line):
66 if not LEAK_OKAY_MATCHER.search(line):
  /external/icu/icu4c/source/layout/
OpenTypeUtilities.h 31 static le_int32 search(le_uint16 value, const le_uint16 array[], le_int32 count);
32 static le_int32 search(le_uint32 value, const le_uint32 array[], le_int32 count);
  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
remque.c 35 #include <search.h>
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
tfind.c 4 * Tree search generalized from Knuth (6.2.2) Algorithm T just like
14 #include <search.h>
  /external/chromium_org/chrome/browser/resources/gaia_auth/
util.js 15 * Extract query params from given search string of an URL.
16 * @param {string} search The search portion of an URL to extract params.
19 function getUrlSearchParams(search) {
22 if (search) {
24 search = search.substring(1);
25 var pairs = search.split('&');
  /external/chromium_org/chrome/common/
search_urls.cc 10 namespace search { namespace
26 } // namespace search
search_urls_unittest.cc 10 namespace search { namespace
40 } // namespace search
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
grammar.py 35 if re.search("h$", noun):
  /external/chromium_org/third_party/skia/src/core/
SkBBoxHierarchy.h 50 * search.
62 virtual void search(const SkRect& query, SkTDArray<void*>* results) const = 0;
  /external/llvm/utils/
DSAclean.py 23 if re.compile("label(\s*)=(\s*)\"\s%tmp(.\w*)*(\s*)\"").search(buffer):
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMURLUtilsReadOnly.h 67 static String search(const KURL&);
68 String search() { return search(url()); } function in class:blink::DOMURLUtilsReadOnly
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
list_ports.py 15 Additionally a grep function is supplied that can be used to search for ports
38 Search for ports using a regular expression. Port name, description and
44 if r.search(port) or r.search(desc) or r.search(hwid):
  /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_org/third_party/libxml/src/win32/
configure.js 166 txt += " include: Additional search path for the compiler, particularily\n";
168 txt += " lib: Additional search path for the linker, particularily\n";
186 if (s.search(/^\/ChangeLog\//) != -1) {
209 if (s.search(/^LIBXML_MAJOR_VERSION=/) != -1) {
212 } else if(s.search(/^LIBXML_MINOR_VERSION=/) != -1) {
215 } else if(s.search(/^LIBXML_MICRO_VERSION=/) != -1) {
218 } else if(s.search(/^LIBXML_MICRO_VERSION_SUFFIX=/) != -1) {
293 if (s.search(/\@VERSION\@/) != -1) {
296 } else if (s.search(/\@LIBXML_VERSION_NUMBER\@/) != -1) {
299 } else if (s.search(/\@LIBXML_VERSION_EXTRA\@/) != -1)
    [all...]
  /external/chromium_org/tools/cr/cr/
visitor.py 11 # in that object. This causes the search to continue through the tree.
24 The two main uses of visitor are search and export. They differ in that export
25 is trying to find all variables, whereas search is just looking for one.
228 search = SearchVisitor(key).VisitNode(self)
229 if not search.found:
231 return search.value
234 search = WhereVisitor(key).VisitNode(self)
235 if not search.found:
237 return search.where
240 search = SearchVisitor(key).VisitNode(self
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/static/js/
fatnav.js 14 var search = document.querySelector('#search'); variable
45 // Search button is used in tablet & desktop mode.
46 // In phone mode search is embedded in the menu.
47 search.addEventListener('click', function(e) {
60 var cse = google && google.search && google.search.cse &&
61 google.search.cse.element.getElement('results') || null;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help.base_3.5.2.v201011171123.jar 
  /external/chromium_org/third_party/icu/source/test/cintltst/
usrchtst.c 246 log_err_status(status, "Error: NULL break iterator is valid for opening search\n");
263 log_err("Error: NULL break iterator is valid for opening search\n");
276 log_err_status(status, "Error: Break iterator is valid for opening search\n");
288 log_err("Error: Break iterator is valid for opening search\n");
318 log_err("Error opening search %s\n", u_errorName(status));
330 log_err("Error opening search %s\n", u_errorName(status));
337 const SearchData search)
341 int32_t matchindex = search.offset[count];
348 usearch_setAttribute(strsrch, USEARCH_ELEMENT_COMPARISON, search.elemCompare, &status);
360 matchlength = search.size[count]
774 const SearchData *search = &(BREAKITERATOREXACT[count]); local
881 const SearchData *search = &(OVERLAP[count]); local
1244 SearchData search = BASIC[searchDataIndex ++]; local
1407 SearchData search = MATCH[0]; local
1511 SearchData search = MATCH[count]; local
1745 SearchData search; local
1864 const SearchData *search = &(BREAKITERATORCANONICAL[count]); local
1982 const SearchData *search = &(OVERLAPCANONICAL[count]); local
2299 SearchData search = BASICCANONICAL[searchDataIndex ++]; local
2459 UStringSearch *search = NULL; local
2514 UStringSearch *search; local
2603 UStringSearch *search; local
2897 UChar search[] = local
2908 UChar search[] = local
2919 UChar search[] = { 0x00c9 }; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
usrchtst.c 246 log_err_status(status, "Error: NULL break iterator is valid for opening search\n");
263 log_err("Error: NULL break iterator is valid for opening search\n");
276 log_err_status(status, "Error: Break iterator is valid for opening search\n");
288 log_err("Error: Break iterator is valid for opening search\n");
318 log_err("Error opening search %s\n", u_errorName(status));
330 log_err("Error opening search %s\n", u_errorName(status));
337 const SearchData search)
341 int32_t matchindex = search.offset[count];
348 usearch_setAttribute(strsrch, USEARCH_ELEMENT_COMPARISON, search.elemCompare, &status);
360 matchlength = search.size[count]
774 const SearchData *search = &(BREAKITERATOREXACT[count]); local
881 const SearchData *search = &(OVERLAP[count]); local
1244 SearchData search = BASIC[searchDataIndex ++]; local
1407 SearchData search = MATCH[0]; local
1511 SearchData search = MATCH[count]; local
1745 SearchData search; local
1864 const SearchData *search = &(BREAKITERATORCANONICAL[count]); local
1982 const SearchData *search = &(OVERLAPCANONICAL[count]); local
2299 SearchData search = BASICCANONICAL[searchDataIndex ++]; local
2459 UStringSearch *search = NULL; local
2514 UStringSearch *search; local
2603 UStringSearch *search; local
2897 UChar search[] = local
2908 UChar search[] = local
2919 UChar search[] = { 0x00c9 }; local
    [all...]
  /external/chromium_org/chrome/browser/resources/
about_voicesearch.js 13 var output = $('voice-search-info-template');
18 * Asks the C++ VoiceSearchUIDOMHandler to get details about voice search and
27 * current state of voice search.
  /external/chromium_org/components/test/data/web_database/
version_52.sql 6 INSERT INTO "meta" VALUES('Default Search Provider ID','2');
11 INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?q={searchTerms}&{google:RLZ}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}{google:searchClient}{google:sourceId}{google:instantExtendedEnabledParameter}{google:omniboxStartMarginParameter}ie={inputEncoding}',1,'',0,0,'UTF-8',1,'{google:baseSuggestURL}search?{google:searchFieldtrialParameter}client={google:suggestClient}&q={searchTerms}&{google:cursorPosition}{google:zeroPrefixUrl}{google:pageClassification}sugkey={google:suggestAPIKeyParameter}',1,0,'{google:baseURL}webhp?sourceid=chrome-instant&{google:RLZ}{google:instantEnabledParameter}{google:instantExtendedEnabledParameter}{google:ntpIsThemedParameter}{google:omniboxStartMarginParameter}ie={inputEncoding}',0,'2BB4ECA1-7D0F-2FB9-45B0-AD87B8298C9D','["{google:baseURL}#q={searchTerms}","{google:baseURL}search#q={searchTerms}","{google:baseURL}webhp#q={searchTerms}"]','espv','{google:baseURL}searchbyimage/upload','','','','encoded_image={google:imageThumbnail},image_url={google:imageURL},sbisrc={google:imageSearchSource}');
12 INSERT INTO "keywords" VALUES(3,'Bing','bing.com','http://www.bing.com/s/wlflag.ico','http://www.bing.com/search?setmkt=en-US&q={searchTerms}',1,'',0,0,'UTF-8',1,'http://api.bing.com/osjson.aspx?query={searchTerms}&language={language}',3,0,'',0,'A0226B1A-8662-A160-C4D4-078608DBD17E','[]','','','','','','');
13 INSERT INTO "keywords" VALUES(4,'Yahoo!','yahoo.com','http://search.yahoo.com/favicon.ico','http://search.yahoo.com/search?ei={inputEncoding}&fr=crmas&p={searchTerms}',1,'',0,0,'UTF-8',1,'http://ff.search.yahoo.com/gossip?output=fxjson&command={searchTerms}',2,0,'',0,'531278E0-9380-7556-D9A0-9F85AA1DCF06','[]','','','','','','');
14 INSERT INTO "keywords" VALUES(5,'AOL','aol.com','http://search.aol.com/favicon.ico','http://search.aol.com/aol/search?query={searchTerms}',1,'',0,0,'UTF-8',1,'ht (…)
    [all...]
  /external/chromium_org/third_party/
PRESUBMIT.py 82 if (not shortname_pattern.search(contents)
83 and not name_pattern.search(contents)):
89 if not version_pattern.search(contents):
96 if not release_pattern.search(contents):
102 license_match = license_pattern.search(contents)
110 and not license_android_compatible_pattern.search(contents):
  /external/chromium_org/tools/grit/grit/tool/
toolbar_postprocess.py 57 if self._IDS_COMMAND.search(name_attr):
58 mo = self._GRAB_PARAMETERS.search(name_attr)
59 mp = self._GRAB_PARAMETERS.search(previous_name_attr)
77 if self._IDS_COMMAND.search(previous_name_attr):
87 if self._IDS_COMMAND.search(previous_name_attr):
89 mp = self._GRAB_PARAMETERS.search(previous_name_attr)

Completed in 1864 milliseconds

1 23 4 5 6 7 8 91011>>