OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FeatureMap
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/renderer/safe_browsing/
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
);
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() {
/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/
OpenTypeTables.h
43
struct
FeatureMap
/external/chromium_org/gpu/config/
gpu_control_list.h
89
// Register a feature to
FeatureMap
- used to construct a GpuControlList.
279
typedef base::hash_map<std::string, int>
FeatureMap
;
288
const
FeatureMap
& feature_map,
411
const
FeatureMap
& feature_map,
425
const
FeatureMap
& feature_map);
476
FeatureMap
feature_map_;
Completed in 198 milliseconds