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

1 2

  /external/lldb/include/lldb/
lldb-private.h 76 NameMatches (const char *name, NameMatchType match_type, const char *match);
  /external/chromium_org/components/autofill/core/browser/
form_field.cc 77 int match_type,
84 if (!MatchesFormControlType(field->form_control_type, match_type))
87 return MatchAndAdvance(scanner, pattern, match_type, match);
113 int match_type,
116 if (FormField::Match(field, pattern, match_type)) {
129 int match_type) {
130 if ((match_type & FormField::MATCH_LABEL) &&
135 if ((match_type & FormField::MATCH_NAME) &&
140 if ((match_type & FormField::MATCH_VALUE) &&
173 int match_type) {
    [all...]
form_field.h 65 // as specified in the |match_type| bit field (see |MatchType|). If |match|
71 int match_type,
98 // Returns |true| if a match is found according to |match_type|, and |false|
102 int match_type,
106 // as specified in the |match_type| bit field (see |MatchType|).
109 int match_type);
120 // Returns true iff |type| matches |match_type|.
121 static bool MatchesFormControlType(const std::string& type, int match_type);
  /external/chromium_org/extensions/common/manifest_handlers/
icons_handler.h 30 ExtensionIconSet::MatchType match_type);
33 ExtensionIconSet::MatchType match_type);
icons_handler.cc 39 ExtensionIconSet::MatchType match_type) {
40 const std::string& path = GetIcons(extension).Get(size, match_type);
47 ExtensionIconSet::MatchType match_type) {
48 const std::string& path = GetIcons(extension).Get(size, match_type);
  /external/chromium_org/extensions/common/
extension_icon_set.cc 23 const std::string& ExtensionIconSet::Get(int size, MatchType match_type) const {
26 if (match_type == MATCH_EXACTLY) {
29 } else if (match_type == MATCH_SMALLER) {
40 DCHECK(match_type == MATCH_BIGGER);
extension_icon_set.h 40 const std::string& Get(int size, MatchType match_type) const;
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_icon_source.cc 296 ExtensionIconSet::MatchType match_type;
300 match_type = static_cast<ExtensionIconSet::MatchType>(match_num);
301 if (!(match_type == ExtensionIconSet::MATCH_EXACTLY ||
302 match_type == ExtensionIconSet::MATCH_SMALLER ||
303 match_type == ExtensionIconSet::MATCH_BIGGER))
304 match_type = ExtensionIconSet::MATCH_EXACTLY;
314 SetData(request_id, callback, extension, grayscale, size, match_type);
  /external/openfst/src/include/fst/
matcher-fst.h 141 virtual M *InitMatcher(MatchType match_type) const {
142 return new M(GetFst(), match_type, GetData(match_type));
152 typename M::MatcherData *GetData(MatchType match_type) const {
154 return match_type == MATCH_INPUT ? data->First() : data->Second();
212 Matcher(const FST &fst, MatchType match_type) {
213 matcher_ = fst.InitMatcher(match_type);
252 LookAheadMatcher(const FST &fst, MatchType match_type) {
253 matcher_ = fst.InitMatcher(match_type);
matcher.h 133 // If match_type == MATCH_INPUT, epsilons match the implicit self loop
135 // actual epsilon transitions. If match_type == MATCH_OUTPUT, then
148 SortedMatcher(const F &fst, MatchType match_type,
153 match_type_(match_type),
404 MatchType match_type,
408 : matcher_(matcher ? matcher : new M(fst, match_type)),
409 match_type_(match_type),
412 if (match_type == MATCH_BOTH) {
578 MatchType match_type,
582 : matcher_(matcher ? matcher : new M(fst, match_type)),
    [all...]
lookahead-matcher.h 50 // LookAheadMatcher(const F &fst, MatchType match_type);
68 // // 'match_type' (cf. composition).
98 // Matcher is a lookahead matcher when 'match_type' is MATCH_INPUT.
101 // Matcher is a lookahead matcher when 'match_type' is MATCH_OUTPUT.
193 TrivialLookAheadMatcher(const FST &fst, MatchType match_type)
194 : matcher_(fst, match_type) {}
265 ArcLookAheadMatcher(const FST &fst, MatchType match_type,
267 : matcher_(fst, match_type),
438 LabelLookAheadMatcher(const FST &fst, MatchType match_type,
440 : matcher_(fst, match_type),
    [all...]
replace.h     [all...]
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider.h 232 // Determines the relevance for a match, given its type. If |match_type| is
234 // (higher == more relevant). For other values of |match_type|,
237 static int CalculateRelevance(MatchType match_type, int match_number);
323 MatchType match_type,
shortcuts_backend.cc 148 const AutocompleteMatch::Type match_type = GetTypeForShortcut(match.type); local
154 match.search_terms_args->search_terms, match_type,
165 normalized_match.transition, match_type, normalized_match.keyword);
history_url_provider.cc 686 int HistoryURLProvider::CalculateRelevance(MatchType match_type,
688 switch (match_type) {
    [all...]
  /abi/cpp/src/
dynamic_cast.cc 118 const abi::__class_type_info *match_type)
120 if (*type == *match_type)
135 match_type);
155 match_object, match_type);
  /ndk/sources/cxx-stl/gabi++/src/
dynamic_cast.cc 118 const abi::__class_type_info *match_type)
120 if (*type == *match_type)
135 match_type);
155 match_object, match_type);
  /external/lldb/source/
lldb.cpp 395 NameMatchType match_type,
398 if (match_type == eNameMatchIgnore)
408 switch (match_type)
  /external/iptables/extensions/
libxt_sctp.c 228 const char *match_type,
231 DEBUGP("Match type: %s Chunks: %s\n", match_type, chunks);
232 if (!strcasecmp(match_type, "ANY")) {
234 } else if (!strcasecmp(match_type, "ALL")) {
236 } else if (!strcasecmp(match_type, "ONLY")) {
  /external/chromium_org/extensions/browser/api/declarative_webrequest/
webrequest_condition_attribute.cc 470 StringMatchTest::MatchType match_type; local
473 match_type = StringMatchTest::kPrefix;
476 match_type = StringMatchTest::kSuffix;
479 match_type = StringMatchTest::kContains;
482 match_type = StringMatchTest::kEquals;
484 match_type = StringMatchTest::kPrefix;
486 match_type = StringMatchTest::kSuffix;
488 match_type = StringMatchTest::kContains;
490 match_type = StringMatchTest::kEquals;
506 StringMatchTest::Create(*it, match_type, !is_name).release())
    [all...]
  /external/chromium_org/components/omnibox/
search_suggestion_parser.cc 412 AutocompleteMatchType::Type match_type = local
415 match_type = GetAutocompleteMatchType(type);
423 if ((match_type == AutocompleteMatchType::NAVSUGGEST) ||
424 (match_type == AutocompleteMatchType::NAVSUGGEST_PERSONALIZED)) {
433 scheme_classifier, url, match_type, title, deletion_url,
459 match_type = AutocompleteMatchType::SEARCH_SUGGEST_ANSWER;
472 base::CollapseWhitespace(suggestion, false), match_type,
omnibox_field_trial_unittest.cc 55 // EXPECTS that demotions[match_type] exists with value expected_value.
58 AutocompleteMatchType::Type match_type,
77 AutocompleteMatchType::Type match_type,
80 demotions.find(match_type);
  /external/chromium_org/extensions/browser/
extension_icon_image.cc 47 ExtensionIconSet::MatchType match_type) {
48 const std::string& path = icons.Get(size, match_type);
  /external/openfst/src/include/fst/extensions/pdt/
compose.h 50 ParenMatcher(const FST &fst, MatchType match_type,
52 : matcher_(fst, match_type),
53 match_type_(match_type),
55 if (match_type == MATCH_INPUT) {
  /external/openfst/src/test/
fst_test.h 69 MatchType match_type = matcher.Type(true); local
85 if (match_type == MATCH_INPUT) {

Completed in 389 milliseconds

1 2