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;
74 const FeatureMap& features) const;
test_utils.cc 15 void ExpectFeatureMapsAreEqual(const FeatureMap& first,
16 const FeatureMap& second) {
phishing_classifier.h 7 // - Run each feature extractor over the page, building up a FeatureMap of
34 class FeatureMap;
137 scoped_ptr<FeatureMap> features_;
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;
60 // Begins extracting features from |page_text| into the given FeatureMap.
74 FeatureMap* features,
150 FeatureMap* features_; // The caller keeps ownership of this.
phishing_dom_feature_extractor_browsertest.cc 64 bool ExtractFeatures(FeatureMap* features) {
106 FeatureMap expected_features;
112 FeatureMap features;
163 FeatureMap expected_features;
169 FeatureMap features;
201 FeatureMap expected_features;
204 FeatureMap features;
256 FeatureMap expected_features;
272 FeatureMap features;
326 FeatureMap expected_features
    [all...]
phishing_term_feature_extractor_unittest.cc 81 bool ExtractFeatures(const string16* page_text, FeatureMap* features) {
92 void PartialExtractFeatures(const string16* page_text, FeatureMap* features) {
129 FeatureMap expected_features; // initially empty
131 FeatureMap features;
240 FeatureMap expected_features;
246 FeatureMap features;
292 FeatureMap features;
309 FeatureMap expected_features;
scorer.cc 78 double Scorer::ComputeScore(const FeatureMap& features) const {
107 const FeatureMap& features) const {
  /external/chromium_org/chrome/common/extensions/features/
base_feature_provider.h 40 typedef std::map<std::string, linked_ptr<Feature> > FeatureMap;
41 FeatureMap features_;
  /external/icu4c/layout/
GlyphPosnLookupProc.h 32 const FeatureMap *featureMap,
OpenTypeTables.h 43 struct FeatureMap
GlyphPositioningTables.cpp 22 const LEFontInstance *fontInstance, const FeatureMap *featureMap, le_int32 featureMapCount, le_bool featureOrder) const
28 GlyphPositioningLookupProcessor processor(this, scriptTag, languageTag, featureMap, featureMapCount, featureOrder, success);
GlyphPositioningTables.h 32 const LEFontInstance *fontInstance, const FeatureMap *featureMap, le_int32 featureMapCount, le_bool featureOrder) const;
GlyphSubstLookupProc.h 34 const FeatureMap *featureMap,
GlyphSubstitutionTables.cpp 26 const FeatureMap *featureMap,
35 GlyphSubstitutionLookupProcessor processor(this, scriptTag, languageTag, filter, featureMap, featureMapCount, featureOrder, success);
GlyphSubstitutionTables.h 34 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);
LookupProcessor.h 55 const FeatureMap *featureMap,

Completed in 141 milliseconds

1 2