Searched defs:HasKey (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/tools/json_schema_compiler/
H A Djson_schema.py16 def HasKey(thing): function in function:DeleteNodes
22 if HasKey(value):
30 for thing in item if not HasKey(thing)]
/external/chromium_org/ppapi/c/
H A Dppb_var_dictionary.h85 PP_Bool (*HasKey)(struct PP_Var dict, struct PP_Var key); member in struct:PPB_VarDictionary_1_0
/external/chromium_org/ppapi/cpp/
H A Dvar_dictionary.cc91 bool VarDictionary::HasKey(const Var& key) const { function in class:pp::VarDictionary
95 return PP_ToBool(get_interface<PPB_VarDictionary_1_0>()->HasKey(
/external/chromium_org/ppapi/thunk/
H A Dppb_var_dictionary_thunk.cc52 PP_Bool HasKey(PP_Var dict, PP_Var key) { function in namespace:ppapi::thunk::__anon9654
58 return dict_var->HasKey(key);
75 &HasKey,
/external/chromium_org/content/browser/
H A Dnotification_service_impl.cc37 bool NotificationServiceImpl::HasKey(const NotificationSourceMap& map, function in class:content::NotificationServiceImpl
58 if (HasKey(observers_[type], source)) {
80 CHECK(HasKey(observers_[type], source));
106 if (HasKey(observers_[NOTIFICATION_ALL], AllSources()) &&
114 if (HasKey(observers_[NOTIFICATION_ALL], source)) {
121 if (HasKey(observers_[type], AllSources()) &&
129 if (HasKey(observers_[type], source)) {
/external/chromium_org/ppapi/shared_impl/
H A Ddictionary_var.cc74 PP_Bool DictionaryVar::HasKey(const PP_Var& key) const { function in class:ppapi::DictionaryVar
/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Dscreen_context.cc80 bool ScreenContext::HasKey(const KeyType& key) const { function in class:chromeos::ScreenContext
82 return storage_.HasKey(key);
/external/chromium_org/chrome/common/extensions/
H A Dmanifest.cc108 if (value_->HasKey(keys::kTheme)) {
110 } else if (value_->HasKey(keys::kExport)) {
112 } else if (value_->HasKey(keys::kApp)) {
151 // Use Get instead of HasKey because the former uses path expansion.
177 bool Manifest::HasKey(const std::string& key) const { function in class:extensions::Manifest
178 return CanAccessKey(key) && value_->HasKey(key);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dwin32regkey.cc758 bool RegKey::HasKey(const wchar_t* full_key_name) { function in class:talk_base::RegKey
/external/chromium/base/
H A Dvalues.cc321 bool DictionaryValue::HasKey(const std::string& key) const { function in class:DictionaryValue
388 if (HasKey(key)) {
/external/chromium_org/base/
H A Dvalues.cc361 bool DictionaryValue::HasKey(const std::string& key) const { function in class:base::DictionaryValue
/external/v8/src/
H A Delements.cc112 static bool HasKey(FixedArray* array, Object* key) { function in namespace:v8::internal
539 if (!HasKey(to, value)) {
575 if (!value->IsTheHole() && !HasKey(to, value)) {
/external/chromium_org/v8/src/
H A Delements.cc128 static bool HasKey(FixedArray* array, Object* key) { function in namespace:v8::internal
828 if (!HasKey(to, value)) {
862 if (!value->IsTheHole() && !HasKey(to, value)) {

Completed in 540 milliseconds