/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, 99 // Returns |true| if a match is found according to |match_type|, and |false| 103 int match_type, 107 // as specified in the |match_type| bit field (see |MatchType|). 110 int match_type); 121 // Returns true iff |type| matches |match_type|. 122 static bool MatchesFormControlType(const std::string& type, int match_type);
|
/external/chromium/chrome/common/extensions/ |
extension_icon_set.cc | 22 std::string ExtensionIconSet::Get(int size, MatchType match_type) const { 25 if (match_type == MATCH_EXACTLY) { 28 } else if (match_type == MATCH_SMALLER) { 39 CHECK(match_type == MATCH_BIGGER);
|
extension_icon_set.h | 36 std::string Get(int size, MatchType match_type) const;
|
/external/chromium_org/chrome/common/extensions/manifest_handlers/ |
icons_handler.h | 37 ExtensionIconSet::MatchType match_type); 40 ExtensionIconSet::MatchType match_type);
|
icons_handler.cc | 57 ExtensionIconSet::MatchType match_type) { 58 std::string path = GetIcons(extension).Get(size, match_type); 65 ExtensionIconSet::MatchType match_type) { 66 std::string path = GetIcons(extension).Get(size, match_type);
|
/external/chromium_org/chrome/common/extensions/ |
extension_icon_set.cc | 22 std::string ExtensionIconSet::Get(int size, MatchType match_type) const { 25 if (match_type == MATCH_EXACTLY) { 28 } else if (match_type == MATCH_SMALLER) { 39 DCHECK(match_type == MATCH_BIGGER);
|
extension_icon_set.h | 40 std::string Get(int size, MatchType match_type) const;
|
/external/chromium/chrome/browser/autocomplete/ |
history_quick_provider.h | 54 // is. If |match_type| is NORMAL, |match_number| is a number 56 // relevant). For other values of |match_type|, |match_number| is ignored. 59 MatchType match_type,
|
history_url_provider.h | 187 // is. If |match_type| is NORMAL, |match_number| is a number 189 // relevant). For other values of |match_type|, |match_number| is ignored. 191 MatchType match_type, 290 MatchType match_type,
|
history_quick_provider.cc | 201 MatchType match_type, 203 switch (match_type) {
|
history_url_provider.cc | 459 MatchType match_type, 461 switch (match_type) { [all...] |
/external/chromium_org/chrome/browser/ui/webui/extensions/ |
extension_icon_source.cc | 294 ExtensionIconSet::MatchType match_type; 298 match_type = static_cast<ExtensionIconSet::MatchType>(match_num); 299 if (!(match_type == ExtensionIconSet::MATCH_EXACTLY || 300 match_type == ExtensionIconSet::MATCH_SMALLER || 301 match_type == ExtensionIconSet::MATCH_BIGGER)) 302 match_type = ExtensionIconSet::MATCH_EXACTLY; 312 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...] |
/external/chromium_org/chrome/browser/autocomplete/ |
history_url_provider.h | 211 // |match_type| is NORMAL, |match_number| is a number [0, 213 // more relevant). For other values of |match_type|, |match_number| 217 int CalculateRelevance(MatchType match_type, size_t match_number) const; 291 MatchType match_type,
|
/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/chromium_org/chrome/browser/omnibox/ |
omnibox_field_trial_unittest.cc | 44 // EXPECTS that demotions[match_type] exists with value expected_value. 47 AutocompleteMatchType::Type match_type, 66 AutocompleteMatchType::Type match_type, 69 demotions.find(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/chrome/browser/extensions/api/declarative_webrequest/ |
webrequest_condition_attribute.cc | 468 StringMatchTest::MatchType match_type; local 471 match_type = StringMatchTest::kPrefix; 474 match_type = StringMatchTest::kSuffix; 477 match_type = StringMatchTest::kContains; 480 match_type = StringMatchTest::kEquals; 482 match_type = StringMatchTest::kPrefix; 484 match_type = StringMatchTest::kSuffix; 486 match_type = StringMatchTest::kContains; 488 match_type = StringMatchTest::kEquals; 504 StringMatchTest::Create(*it, match_type, !is_name).release()) [all...] |
/external/chromium/chrome/browser/ui/webui/ |
extension_icon_source.cc | 267 ExtensionIconSet::MatchType match_type; local 271 match_type = static_cast<ExtensionIconSet::MatchType>(match_num); 281 SetData(request_id, extension, grayscale, size, match_type);
|
/external/chromium_org/chrome/browser/extensions/ |
extension_icon_image.cc | 49 ExtensionIconSet::MatchType match_type) { 50 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) {
|