HomeSort by relevance Sort by last modified time
    Searched refs:DialogFeaturesMap (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/page/
WindowFeatures.h 82 typedef HashMap<String, String> DialogFeaturesMap;
84 static bool boolFeature(const DialogFeaturesMap&, const char* key, bool defaultValue = false);
85 static float floatFeature(const DialogFeaturesMap&, const char* key, float min, float max, float defaultValue);
WindowFeatures.cpp 173 DialogFeaturesMap features;
210 bool WindowFeatures::boolFeature(const DialogFeaturesMap& features, const char* key, bool defaultValue)
212 DialogFeaturesMap::const_iterator it = features.find(key);
219 float WindowFeatures::floatFeature(const DialogFeaturesMap& features, const char* key, float min, float max, float defaultValue)
221 DialogFeaturesMap::const_iterator it = features.find(key);
238 void WindowFeatures::parseDialogFeatures(const String& string, DialogFeaturesMap& map)

Completed in 55 milliseconds