HomeSort by relevance Sort by last modified time
    Searched refs:search (Results 26 - 50 of 1203) sorted by null

12 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
tdestroy.cpp 18 #include <search.h>
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/config/
urls.py 66 match = re.search(bug_url_short, string)
69 match = re.search(bug_url_long, string)
78 match = re.search(attachment_url, string)
81 match = re.search(direct_attachment_url, string)
  /external/chromium_org/third_party/icu/source/test/intltest/
srchtest.h 45 const SearchData *search);
46 UBool assertEqual(const SearchData *search);
47 UBool assertCanonicalEqual(const SearchData *search);
48 UBool assertEqualWithAttribute(const SearchData *search,
srchtest.cpp 255 const SearchData *search)
259 int32_t matchindex = search->offset[count];
262 strsrch->setAttribute(USEARCH_ELEMENT_COMPARISON, search->elemCompare, status);
274 int32_t matchlength = search->size[count];
299 matchindex = search->offset[count];
314 matchindex = search->offset[count];
316 int32_t matchlength = search->size[count];
339 matchindex = count > 0 ? search->offset[count - 1] : -1;
357 UBool StringSearchTest::assertEqual(const SearchData *search)
361 Collator *collator = getCollator(search->collator)
804 const SearchData *search = &(BREAKITERATOREXACT[count]); local
899 const SearchData *search = &(OVERLAP[count]); local
1202 SearchData search = BASIC[index ++]; local
1325 SearchData search = MATCH[0]; local
1387 SearchData search = MATCH[count]; local
1590 const SearchData *search; local
1662 const SearchData *search = &(BREAKITERATORCANONICAL[count]); local
1767 const SearchData *search = &(OVERLAPCANONICAL[count]); local
2032 SearchData search = BASICCANONICAL[index ++]; local
    [all...]
  /external/dhcpcd/dhcpcd-hooks/
20-resolv.conf 14 local interfaces= header= search= srvs= servers= x=
26 # Build the search list
29 search=$(cd "$resolv_conf_dir"; \
30 key_get_value "search " ${interfaces})
34 search="$search $@"
38 [ -n "$search" ] && search="search $(uniqify $search)\n
    [all...]
  /external/icu4c/layoutex/
LXUtilities.h 20 static le_int32 search(le_int32 value, const le_int32 array[], le_int32 count);
  /external/icu4c/test/intltest/
srchtest.h 45 const SearchData *search);
46 UBool assertEqual(const SearchData *search);
47 UBool assertCanonicalEqual(const SearchData *search);
48 UBool assertEqualWithAttribute(const SearchData *search,
srchtest.cpp 255 const SearchData *search)
259 int32_t matchindex = search->offset[count];
263 strsrch->setAttribute(USEARCH_ELEMENT_COMPARISON, search->elemCompare, status);
276 matchlength = search->size[count];
301 matchindex = search->offset[count];
317 matchindex = search->offset[count];
319 matchlength = search->size[count];
343 matchindex = count > 0 ? search->offset[count - 1] : -1;
363 matchindex = search->offset[count];
385 matchlength = search->size[count]
907 const SearchData *search = &(BREAKITERATOREXACT[count]); local
1002 const SearchData *search = &(OVERLAP[count]); local
1295 SearchData search = BASIC[index ++]; local
1418 SearchData search = MATCH[0]; local
1480 SearchData search = MATCH[count]; local
1683 const SearchData *search; local
1755 const SearchData *search = &(BREAKITERATORCANONICAL[count]); local
1860 const SearchData *search = &(OVERLAPCANONICAL[count]); local
2125 SearchData search = BASICCANONICAL[index ++]; local
    [all...]
  /external/llvm/utils/
DSAextract.py 62 if not arrowexp.search(buffer):
67 if regexp.search(buffer):
95 if arrowexp.search(buffer):
104 elif nodeexp.search(buffer): #this is a node line
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
StackTest.java 128 * @tests java.util.Stack#search(java.lang.Object)
131 // Test for method int java.util.Stack.search(java.lang.Object)
138 assertEquals("Search returned incorrect value for equivalent object", 3, s
139 .search(item1));
140 assertEquals("Search returned incorrect value for equal object", 3, s
141 .search("Ichi"));
143 assertEquals("Search returned incorrect value for equivalent object at top of stack",
144 1, s.search(item2));
145 assertEquals("Search returned incorrect value for equal object at top of stack",
146 1, s.search("Ni"))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cmake.py 105 if re.search('\(\ +', l):
109 if re.search('\ +\)', l) and not re.search('^\ +\)$', l):
130 if re.search('(^|\ +)' + t.lower() + '\ +\(', line_content):
138 if re.search('(^|\ +)' + t.lower() + '(\(|\ \ +\()', line_content):
143 if re.search('(^|\ +)' + cmd + '\ *\(', line_content, flags=re.IGNORECASE) and \
144 (not re.search('(^|\ +)' + cmd.lower() + '\ *\(', line_content)):
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
addr2line-pdb.c 56 char* search; local
93 search = malloc(SEARCH_CAP);
94 if (SymGetSearchPath(process, search, SEARCH_CAP)) {
95 if (strlen(search) + sizeof(";" WEBSYM) > SEARCH_CAP) {
96 fprintf(stderr, "Search path too long\n");
100 strcat(search, ";" WEBSYM);
105 strcpy(search, WEBSYM); /* Use a default value */
107 if (!SymSetSearchPath(process, search)) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
addr2line-pdb.c 62 char* search; local
100 search = malloc(SEARCH_CAP);
101 if (SymGetSearchPath(process, search, SEARCH_CAP)) {
102 if (strlen(search) + sizeof(";" WEBSYM) > SEARCH_CAP) {
103 fprintf(stderr, "Search path too long\n");
107 strcat(search, ";" WEBSYM);
112 strcpy(search, WEBSYM); /* Use a default value */
114 if (!SymSetSearchPath(process, search)) {
  /external/chromium_org/v8/src/
string-search.h 36 // String Search object.
39 // Class holding constants and methods that apply to all string search variants,
45 // search will not be optimal, since we only build tables for a suffix
55 // there is no search speed degradation.
101 int Search(Vector<const SubjectChar> subject, int index) {
128 static int SingleCharSearch(StringSearch<PatternChar, SubjectChar>* search,
132 static int LinearSearch(StringSearch<PatternChar, SubjectChar>* search,
136 static int InitialSearch(StringSearch<PatternChar, SubjectChar>* search,
141 StringSearch<PatternChar, SubjectChar>* search,
145 static int BoyerMooreSearch(StringSearch<PatternChar, SubjectChar>* search,
    [all...]
  /external/v8/src/
string-search.h 36 // String Search object.
39 // Class holding constants and methods that apply to all string search variants,
45 // search will not be optimal, since we only build tables for a suffix
55 // there is no search speed degradation.
101 int Search(Vector<const SubjectChar> subject, int index) {
128 static int SingleCharSearch(StringSearch<PatternChar, SubjectChar>* search,
132 static int LinearSearch(StringSearch<PatternChar, SubjectChar>* search,
136 static int InitialSearch(StringSearch<PatternChar, SubjectChar>* search,
141 StringSearch<PatternChar, SubjectChar>* search,
145 static int BoyerMooreSearch(StringSearch<PatternChar, SubjectChar>* search,
    [all...]
  /external/icu4c/i18n/
usearch.cpp 148 * @param strsrch string search data
290 * @param strsrch string search data
365 * @param strsrch string search data
547 * consideration. Forwards search will take the end accents into consideration
548 * for the default shift values and the backwards search will take the prefix
578 * @param strsrch string search data
587 UBreakIterator *breakiterator = strsrch->search->internalBreakIter;
609 * @param strsrch string search data
618 UBreakIterator *breakiterator = strsrch->search->breakIter;
639 const UChar *text = strsrch->search->text
3185 USearch *search = strsrch->search; local
3291 USearch *search = strsrch->search; local
    [all...]
  /art/tools/
generate-operator-out.py 51 m = _ENUM_START_RE.search(raw_line)
63 m = re.compile(r'^namespace (\S+) \{').search(raw_line)
67 m = re.compile(r'^\}\s+// namespace').search(raw_line)
73 m = re.compile(r'^(?:class|struct)(?: MANAGED)? (\S+).* \{').search(raw_line)
77 m = re.compile(r'^\};').search(raw_line)
85 m = _ENUM_END_RE.search(raw_line)
95 m_comment = re.compile(r'// <<(.*?)>>').search(raw_line)
110 m = _ENUM_VALUE_RE.search(line)
123 m_literal = re.compile(r'= (0x[0-9a-f]+|-?[0-9]+|\'.\')').search(rest)
  /external/chromium_org/third_party/icu/source/i18n/
usearch.cpp 148 * @param strsrch string search data
290 * @param strsrch string search data
365 * @param strsrch string search data
547 * consideration. Forwards search will take the end accents into consideration
548 * for the default shift values and the backwards search will take the prefix
578 * @param strsrch string search data
587 UBreakIterator *breakiterator = strsrch->search->internalBreakIter;
609 * @param strsrch string search data
618 UBreakIterator *breakiterator = strsrch->search->breakIter;
639 const UChar *text = strsrch->search->text
3185 USearch *search = strsrch->search; local
3291 USearch *search = strsrch->search; local
    [all...]
  /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)
342 int32_t matchindex = search.offset[count];
346 usearch_setAttribute(strsrch, USEARCH_ELEMENT_COMPARISON, search.elemCompare, &status);
358 uint32_t matchlength = search.size[count]
675 const SearchData *search = &(BREAKITERATOREXACT[count]); local
782 const SearchData *search = &(OVERLAP[count]); local
1145 SearchData search = BASIC[searchDataIndex ++]; local
1308 SearchData search = MATCH[0]; local
1412 SearchData search = MATCH[count]; local
1646 SearchData search; local
1765 const SearchData *search = &(BREAKITERATORCANONICAL[count]); local
1883 const SearchData *search = &(OVERLAPCANONICAL[count]); local
2200 SearchData search = BASICCANONICAL[searchDataIndex ++]; local
2360 UStringSearch *search = NULL; local
2415 UStringSearch *search; local
2504 UStringSearch *search; local
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
language_dictionary_overlay.css 22 #language-dictionary-overlay-search-field {
28 html[dir=rtl] #language-dictionary-overlay-search-field {
37 #language-dictionary-overlay-word-list.no-search-matches {
  /external/chromium_org/chrome/browser/ui/webui/options/
search_engine_manager_browsertest.js 6 * TestFixture for search engine manager WebUI testing.
16 * Browse to the search engine manager.
29 // Test opening the search engine manager has correct location.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /external/chromium/chrome/common/extensions/docs/css/
print.css 3 div#gsc-search-box {display: none;}
  /external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
css_checker.py 62 return re.search(r'(?:^|\S){|{\s*\S+\s*$', line)
67 m = re.search(r'\.(-?[_a-zA-Z0-9-]+).*[,{]\s*$', line)
74 return (line.find('}') >= 0 and re.search(r'[^ }]', line) and
78 return re.search(r'(?<!data):(?!//)\S[^;]+;\s*', line)
87 m = re.search(hex_reg, line)
92 return re.search(small_seconds, line)
95 return re.search(r'\(\s*\'?\s*data:', line)
98 return re.search(r'[_a-zA-Z0-9-](?<!data):(?!//)[^;]+;\s*[^ }]\s*', line)
110 m = re.search(hex_reg, line)
114 ms = int(float(re.search(small_seconds, line).group(1)) * 1000
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerLocation.idl 38 readonly attribute DOMString search;

Completed in 1419 milliseconds

12 3 4 5 6 7 8 91011>>