Home | History | Annotate | Download | only in page

Lines Matching refs:features

40 WindowFeatures::WindowFeatures(const String& features)
49 The IE rule is: all features except for channelmode and fullscreen default to YES, but
50 if the user specifies a feature string, all features default to NO. (There is no public
57 if (features.length() == 0) {
79 int length = features.length();
80 String buffer = features.lower();
160 bool WindowFeatures::boolFeature(const HashMap<String, String>& features, const char* key, bool defaultValue)
162 HashMap<String, String>::const_iterator it = features.find(key);
163 if (it == features.end())
169 float WindowFeatures::floatFeature(const HashMap<String, String>& features, const char* key, float min, float max, float defaultValue)
171 HashMap<String, String>::const_iterator it = features.find(key);
172 if (it == features.end())