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

1 2

  /external/chromium_org/chrome/renderer/safe_browsing/
test_utils.h 9 class FeatureMap;
11 // Compares two FeatureMap objects using gMock. Always use this instead of
14 void ExpectFeatureMapsAreEqual(const FeatureMap& first,
15 const FeatureMap& second);
features.cc 12 const size_t FeatureMap::kMaxFeatureMapSize = 10000;
14 FeatureMap::FeatureMap() {}
15 FeatureMap::~FeatureMap() {}
17 bool FeatureMap::AddBooleanFeature(const std::string& name) {
21 bool FeatureMap::AddRealFeature(const std::string& name, double value) {
45 void FeatureMap::Clear() {
features_unittest.cc 15 FeatureMap features;
16 for (size_t i = 0; i < FeatureMap::kMaxFeatureMapSize; ++i) {
20 EXPECT_EQ(FeatureMap::kMaxFeatureMapSize, features.features().size());
27 EXPECT_EQ(FeatureMap::kMaxFeatureMapSize, features.features().size());
31 FeatureMap features;
38 FeatureMap expected_features;
features.h 21 // The intermediate storage of the features for a URL is a FeatureMap, which is
36 class FeatureMap {
38 FeatureMap();
39 ~FeatureMap();
41 // Adds a boolean feature to a FeatureMap with a value of 1.0.
46 // Adds a real-valued feature to a FeatureMap with the given value.
62 // the FeatureMap from growing too large.
68 DISALLOW_COPY_AND_ASSIGN(FeatureMap);
phishing_url_feature_extractor.h 20 class FeatureMap;
29 bool ExtractFeatures(const GURL& url, FeatureMap* features);
scorer.h 25 class FeatureMap;
39 virtual double ComputeScore(const FeatureMap& features) const;
80 const FeatureMap& features) const;
test_utils.cc 15 void ExpectFeatureMapsAreEqual(const FeatureMap& first,
16 const FeatureMap& second) {
phishing_dom_feature_extractor.h 33 class FeatureMap;
50 // Begins extracting features into the given FeatureMap for the page
57 void ExtractFeatures(FeatureMap* features, const DoneCallback& done_callback);
133 FeatureMap* features_; // The caller keeps ownership of this.
phishing_term_feature_extractor.h 9 // features::kPageTerm feature to be added to the FeatureMap.
32 class FeatureMap;
67 // Begins extracting features from |page_text| into the given FeatureMap.
81 FeatureMap* features,
153 FeatureMap* features_; // The caller keeps ownership of this.
phishing_classifier.h 7 // - Run each feature extractor over the page, building up a FeatureMap of
36 class FeatureMap;
139 scoped_ptr<FeatureMap> features_;
phishing_dom_feature_extractor_browsertest.cc 94 bool ExtractFeatures(FeatureMap* features) {
103 void ExtractFeaturesInternal(FeatureMap* features) {
193 FeatureMap expected_features;
199 FeatureMap features;
248 FeatureMap expected_features;
254 FeatureMap features;
300 FeatureMap expected_features;
303 FeatureMap features;
365 FeatureMap expected_features;
381 FeatureMap features
    [all...]
phishing_term_feature_extractor_unittest.cc 91 FeatureMap* features,
105 FeatureMap* features,
144 FeatureMap expected_features; // initially empty
147 FeatureMap features;
322 FeatureMap expected_features;
383 FeatureMap features;
433 FeatureMap features;
452 FeatureMap expected_features;
scorer.cc 78 double Scorer::ComputeScore(const FeatureMap& features) const {
115 const FeatureMap& features) const {
  /external/chromium_org/extensions/common/features/
base_feature_provider.h 39 typedef std::map<std::string, linked_ptr<Feature> > FeatureMap;
40 FeatureMap features_;
base_feature_provider.cc 123 for (FeatureMap::const_iterator iter = features_.begin();
134 FeatureMap::const_iterator iter = features_.find(name);
159 const FeatureMap::const_iterator first_child = features_.lower_bound(prefix);
163 const FeatureMap::const_iterator after_children =
168 for (FeatureMap::const_iterator it = first_child; it != after_children;
  /external/icu/icu4c/source/layout/
OpenTypeTables.h 44 struct FeatureMap
GlyphPositioningTables.cpp 22 const LEFontInstance *fontInstance, const FeatureMap *featureMap, le_int32 featureMapCount, le_bool featureOrder) const
28 GlyphPositioningLookupProcessor processor(base, scriptTag, languageTag, featureMap, featureMapCount, featureOrder, success);
GlyphPositioningTables.h 33 const LEFontInstance *fontInstance, const FeatureMap *featureMap, le_int32 featureMapCount, le_bool featureOrder) const;
GlyphPosnLookupProc.h 32 const FeatureMap *featureMap,
GlyphSubstLookupProc.h 34 const FeatureMap *featureMap,
GlyphSubstitutionTables.cpp 27 const FeatureMap *featureMap,
36 GlyphSubstitutionLookupProcessor processor(base, scriptTag, languageTag, filter, featureMap, featureMapCount, featureOrder, success);
GlyphSubstitutionTables.h 35 const FeatureMap *featureMap,
ArabicShaping.h 62 static const FeatureMap *getFeatureMap(le_int32 &count);
HanLayoutEngine.cpp 30 static const FeatureMap featureMap[] =
37 static const le_int32 featureMapCount = LE_ARRAY_SIZE(featureMap);
45 fFeatureMap = featureMap;
KhmerReordering.h 120 static const FeatureMap *getFeatureMap(le_int32 &count);

Completed in 163 milliseconds

1 2