Searched defs:matches (Results 226 - 250 of 380) sorted by relevance

1234567891011>>

/external/chromium_org/components/history/core/browser/
H A Durl_database.cc514 std::vector<KeywordSearchTermVisit>* matches) {
545 matches->push_back(visit);
510 GetMostRecentKeywordSearchTerms( KeywordID keyword_id, const base::string16& prefix, int max_count, std::vector<KeywordSearchTermVisit>* matches) argument
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcsdetest.cpp184 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status); local
187 UnicodeString name(ucsdet_getName(matches[0], &status));
188 UnicodeString lang(ucsdet_getLanguage(matches[0], &status));
193 errln("Encoding detection failure for " + id + ": expected " + eSplit[0] + ", got no matches");
202 const char *name = ucsdet_getName(matches[m], &status);
203 const char *lang = ucsdet_getLanguage(matches[m], &status);
204 int32_t confidence = ucsdet_getConfidence(matches[m], &status);
218 dLength = ucsdet_getUChars(matches[0], decoded, testLength, &status);
337 errln("Detection failure for UTF-8: got no matches.");
378 errln("Encoding detection failure for UTF-16BE: got no matches
788 const UCharsetMatch **matches = ucsdet_detectAll(csd, &matchCount, &status); local
[all...]
/external/chromium_org/third_party/re2/util/
H A Dpcre.cc335 int matches = pattern.TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize); local
336 if (matches == 0)
340 if (!pattern.Rewrite(&s, rewrite, *str, vec, matches))
363 // and with a flag saying that this time, ignore empty matches.
369 int matches; local
371 matches = pattern.TryMatch(*str, start, ANCHOR_START, false,
373 if (matches <= 0) {
381 matches = pattern.TryMatch(*str, start, UNANCHORED, true, vec, kVecSize);
382 if (matches <= 0)
390 pattern.Rewrite(&out, rewrite, *str, vec, matches);
410 int matches = pattern.TryMatch(text, 0, UNANCHORED, true, vec, kVecSize); local
566 int matches = TryMatch(text, 0, anchor, true, vec, vecsize); local
[all...]
/external/chromium_org/third_party/zlib/
H A Ddeflate.h119 * bytes. With this organization, matches are limited to a distance of
251 uInt matches; /* number of string matches in current block */ member in struct:internal_state
/external/chromium_org/v8/src/
H A Dtypes.cc879 static bool matches(typename TypeImpl<Config>::TypeHandle type);
885 static bool matches(typename TypeImpl<Config>::TypeHandle type) { function in struct:v8::internal::TypeImplIteratorAux
895 static bool matches(typename TypeImpl<Config>::TypeHandle type) { function in struct:v8::internal::TypeImplIteratorAux
905 bool TypeImpl<Config>::Iterator<T>::matches(TypeHandle type) { function in class:v8::internal::TypeImpl::Iterator
906 return TypeImplIteratorAux<Config, T>::matches(type);
922 if (matches(unioned->Get(index_))) return;
924 } else if (index_ == 0 && matches(type_)) {
/external/icu/icu4c/source/test/intltest/
H A Dcsdetest.cpp184 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status); local
187 UnicodeString name(ucsdet_getName(matches[0], &status));
188 UnicodeString lang(ucsdet_getLanguage(matches[0], &status));
193 errln("Encoding detection failure for " + id + ": expected " + eSplit[0] + ", got no matches");
202 const char *name = ucsdet_getName(matches[m], &status);
203 const char *lang = ucsdet_getLanguage(matches[m], &status);
204 int32_t confidence = ucsdet_getConfidence(matches[m], &status);
218 dLength = ucsdet_getUChars(matches[0], decoded, testLength, &status);
337 errln("Detection failure for UTF-8: got no matches.");
378 errln("Encoding detection failure for UTF-16BE: got no matches
788 const UCharsetMatch **matches = ucsdet_detectAll(csd, &matchCount, &status); local
[all...]
/external/iproute2/lib/
H A Dutils.c448 int matches(const char *cmd, const char *pattern) function
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNewHdfParser.java218 if (matches(seq, 0, INCLUDE_WS)) {
668 private static boolean matches(String seq, int start, String match) { method in class:NewHdfParser
/external/libselinux/src/
H A Dlabel_file.c34 int matches; /* number of matching pathnames */ member in struct:spec
623 /* if the spec in question matches no stem or has the same
625 * specified or if the mode matches the file mode then we do
639 spec_arr[i].matches++;
741 if (spec_arr[i].matches == 0) {
744 "Warning! No matches for (%s, %s, %s)\n",
750 "Warning! No matches for (%s, %s)\n",
/external/lldb/include/lldb/Interpreter/
H A DCommandObject.h141 GetSubcommandSP (const char *sub_cmd, StringList *matches = NULL)
147 GetSubcommandObject (const char *sub_cmd, StringList *matches = NULL)
313 // string cmd_str, inserts the matches into matches, and returns the number added.
316 AddNamesMatchingPartialString (CommandMap &in_map, const char *cmd_str, StringList &matches);
349 /// @param[out] matches
350 /// The array of matches returned.
353 /// total number of matches, and the window the user wants returned.
365 StringList &matches);
397 /// @param[out] matches
408 HandleArgumentCompletion(Args &input, int &cursor_index, int &cursor_char_position, OptionElementVector &opt_element_vector, int match_start_point, int max_return_elements, bool &word_complete, StringList &matches) argument
[all...]
/external/lldb/source/Commands/
H A DCommandObjectPlatform.cpp65 StringList &matches)
76 matches);
77 return matches.GetSize();
551 const uint32_t matches = platform_sp->FindProcesses (m_options.match_info, proc_infos); local
567 if (matches == 0)
581 matches,
582 matches > 1 ? "es were" : " was",
590 for (uint32_t i=0; i<matches; ++i)
59 HandleCompletion(Args &input, int &cursor_index, int &cursor_char_position, int match_start_point, int max_return_elements, bool &word_complete, StringList &matches) argument
/external/lldb/source/Core/
H A DArchSpec.cpp126 ArchSpec::AutoComplete (const char *name, StringList &matches) argument
134 matches.AppendString (g_core_definitions[i].name);
140 matches.AppendString (g_core_definitions[i].name);
142 return matches.GetSize();
150 // A table that gets searched linearly for matches. This table is used to
218 // A table that gets searched linearly for matches. This table is used to
/external/lldb/source/Symbol/
H A DVariable.cpp527 StringList &matches,
536 StringList &matches,
545 StringList &matches,
563 matches,
581 matches,
606 matches,
611 matches.AppendString (prefix_path + member_name);
623 StringList &matches,
649 matches.AppendString (prefix_path);
650 word_complete = matches
540 PrivateAutoCompleteMembers(StackFrame *frame, const std::string &partial_member_name, const std::string &partial_path, const std::string &prefix_path, const ClangASTType& clang_type, StringList &matches, bool &word_complete) argument
619 PrivateAutoComplete(StackFrame *frame, const std::string &partial_path, const std::string &prefix_path, const ClangASTType& clang_type, StringList &matches, bool &word_complete) argument
873 AutoComplete(const ExecutionContext &exe_ctx, const char *partial_path_cstr, StringList &matches, bool &word_complete) argument
[all...]
/external/oprofile/libpp/
H A Darrange_profiles.cpp116 bool profile_classes::matches(profile_classes const & classes) function in class:profile_classes
/external/pcre/dist/
H A Dpcrecpp.cc335 int matches = TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize); local
336 if (matches == 0)
340 if (!Rewrite(&s, rewrite, *str, vec, matches))
394 // and with a flag saying that this time, ignore empty matches.
400 int matches; local
402 matches = TryMatch(*str, start, ANCHOR_START, false, vec, kVecSize);
403 if (matches <= 0) {
432 matches = TryMatch(*str, start, UNANCHORED, true, vec, kVecSize);
433 if (matches <= 0)
440 Rewrite(&out, rewrite, *str, vec, matches);
459 int matches = TryMatch(text, 0, UNANCHORED, true, vec, kVecSize); local
568 int matches = TryMatch(text, 0, anchor, true, vec, vecsize); local
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Ddeflate.h119 * bytes. With this organization, matches are limited to a distance of
249 uInt matches; /* number of string matches in current block */ member in struct:internal_state
/external/qemu/distrib/libselinux/src/
H A Dlabel_file.c33 int matches; /* number of matching pathnames */ member in struct:spec
617 /* if the spec in question matches no stem or has the same
619 * specified or if the mode matches the file mode then we do
633 spec_arr[i].matches++;
641 * to check for partial matches.
697 if (spec_arr[i].matches == 0) {
700 "Warning! No matches for (%s, %s, %s)\n",
706 "Warning! No matches for (%s, %s)\n",
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbevents.c362 int matches = 0; local
364 matches = fscanf(status, "Name: %s", name);
365 if ( (matches == 1) && (SDL_strcmp(name, wanted_name) == 0) ) {
/external/qemu/distrib/zlib-1.2.8/
H A Ddeflate.h119 * bytes. With this organization, matches are limited to a distance of
249 uInt matches; /* number of string matches in current block */ member in struct:internal_state
/external/regex-re2/util/
H A Dpcre.cc330 int matches = pattern.TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize); local
331 if (matches == 0)
335 if (!pattern.Rewrite(&s, rewrite, *str, vec, matches))
358 // and with a flag saying that this time, ignore empty matches.
364 int matches; local
366 matches = pattern.TryMatch(*str, start, ANCHOR_START, false,
368 if (matches <= 0) {
376 matches = pattern.TryMatch(*str, start, UNANCHORED, true, vec, kVecSize);
377 if (matches <= 0)
385 pattern.Rewrite(&out, rewrite, *str, vec, matches);
405 int matches = pattern.TryMatch(text, 0, UNANCHORED, true, vec, kVecSize); local
561 int matches = TryMatch(text, 0, anchor, true, vec, vecsize); local
[all...]
/external/smack/src/org/xbill/DNS/
H A DDNSSEC.java769 matches(SIGBase sig, KEYBase key) method in class:DNSSEC
792 if (!matches(rrsig, key))
965 if (!matches(sig, key))
/external/valgrind/main/coregrind/
H A Dm_options.c317 // see if the exe name matches any of the patterns specified
323 Bool matches; local
335 matches = VG_(string_match)(patt, name);
337 if (matches)
348 Bool matches; local
361 matches = VG_(string_match)(patt, child_argv[i]);
362 if (matches) {
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dgas_serv.c308 } matches[10]; local
359 matches[num_matching].realm_data_idx =
361 matches[num_matching].realm_idx = k;
381 matches[i].realm_data_idx, matches[i].realm_idx);
382 realm = &hapd->conf->nai_realm_data[matches[i].realm_data_idx];
383 anqp_add_nai_realm_data(buf, realm, matches[i].realm_idx);
/external/wpa_supplicant_8/src/ap/
H A Dgas_serv.c308 } matches[10]; local
359 matches[num_matching].realm_data_idx =
361 matches[num_matching].realm_idx = k;
381 matches[i].realm_data_idx, matches[i].realm_idx);
382 realm = &hapd->conf->nai_realm_data[matches[i].realm_data_idx];
383 anqp_add_nai_realm_data(buf, realm, matches[i].realm_idx);
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dgas_serv.c308 } matches[10]; local
359 matches[num_matching].realm_data_idx =
361 matches[num_matching].realm_idx = k;
381 matches[i].realm_data_idx, matches[i].realm_idx);
382 realm = &hapd->conf->nai_realm_data[matches[i].realm_data_idx];
383 anqp_add_nai_realm_data(buf, realm, matches[i].realm_idx);

Completed in 616 milliseconds

1234567891011>>