HomeSort by relevance Sort by last modified time
    Searched full:featuremap (Results 1 - 25 of 51) sorted by null

1 2 3

  /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_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.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() {
test_utils.cc 15 void ExpectFeatureMapsAreEqual(const FeatureMap& first,
16 const FeatureMap& second) {
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);
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.
scorer.h 25 class FeatureMap;
39 virtual double ComputeScore(const FeatureMap& features) const;
74 const FeatureMap& features) const;
phishing_term_feature_extractor_unittest.cc 81 bool ExtractFeatures(const base::string16* page_text, FeatureMap* features) {
93 FeatureMap* features) {
130 FeatureMap expected_features; // initially empty
132 FeatureMap features;
241 FeatureMap expected_features;
247 FeatureMap features;
294 FeatureMap features;
311 FeatureMap expected_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.
  /external/icu4c/layout/
GlyphSubstitutionTables.cpp 26 const FeatureMap *featureMap,
35 GlyphSubstitutionLookupProcessor processor(this, scriptTag, languageTag, filter, featureMap, featureMapCount, featureOrder, success);
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);
GlyphSubstitutionTables.h 34 const FeatureMap *featureMap,
GlyphPositioningTables.h 32 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,
HanLayoutEngine.cpp 30 static const FeatureMap featureMap[] =
37 static const le_int32 featureMapCount = LE_ARRAY_SIZE(featureMap);
45 fFeatureMap = featureMap;
OpenTypeTables.h 43 struct FeatureMap
GlyphSubstLookupProc.cpp 33 const FeatureMap *featureMap,
42 scriptTag, languageTag, featureMap, featureMapCount, featureOrder, success), fFilter(filter)
LookupProcessor.h 55 const FeatureMap *featureMap,
GlyphPosnLookupProc.cpp 38 const FeatureMap *featureMap,
49 featureMap,
ArabicShaping.cpp 87 static const FeatureMap featureMap[] = {
105 const FeatureMap *ArabicShaping::getFeatureMap(le_int32 &count)
107 count = LE_ARRAY_SIZE(featureMap);
109 return featureMap;
ArabicShaping.h 62 static const FeatureMap *getFeatureMap(le_int32 &count);
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
FeatureAssembly.java 72 HashMap<String, String> featureMap = new HashMap<String, String>();
83 featureMap.putAll(features);
90 if (featureMap.containsKey(pair.first) &&
91 featureMap.containsKey(pair.second)) {
93 String value = featureMap.get(pair.first) + Predictor.FEATURE_SEPARATOR +
94 featureMap.get(pair.second);
95 featureMap.put(key, value);
99 return (Map)featureMap;
  /external/chromium_org/chrome/common/extensions/features/
base_feature_provider.h 40 typedef std::map<std::string, linked_ptr<Feature> > FeatureMap;
41 FeatureMap features_;

Completed in 3143 milliseconds

1 2 3