Home
last modified time | relevance | path

Searched refs:SetWithStringKey (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/ppapi/proxy/
Draw_var_data_unittest.cc145 dictionary->SetWithStringKey("1", PP_MakeUndefined()); in TEST_F()
146 dictionary->SetWithStringKey("2", PP_MakeNull()); in TEST_F()
147 dictionary->SetWithStringKey("3", PP_MakeInt32(-100)); in TEST_F()
148 dictionary->SetWithStringKey("4", PP_MakeBool(PP_TRUE)); in TEST_F()
149 dictionary->SetWithStringKey("5", PP_MakeDouble(-103.52)); in TEST_F()
153 dictionary->SetWithStringKey("6", release_string.get()); in TEST_F()
154 dictionary->SetWithStringKey("7", release_string.get()); in TEST_F()
161 dictionary2->SetWithStringKey("abc", release_string.get()); in TEST_F()
162 dictionary->SetWithStringKey("8", release_dictionary2.get()); in TEST_F()
171 dictionary->SetWithStringKey("9", release_array2.get()); in TEST_F()
[all …]
Draw_var_data.cc633 bool success = dictionary_var->SetWithStringKey(children_[i].first, in PopulatePPVar()
/external/chromium_org/content/renderer/pepper/
Dv8_var_converter_unittest.cc297 dictionary->SetWithStringKey("1", PP_MakeUndefined()); in TEST_F()
298 dictionary->SetWithStringKey("2", PP_MakeNull()); in TEST_F()
299 dictionary->SetWithStringKey("3", PP_MakeInt32(-100)); in TEST_F()
300 dictionary->SetWithStringKey("4", PP_MakeBool(PP_TRUE)); in TEST_F()
301 dictionary->SetWithStringKey("5", PP_MakeDouble(-103.52)); in TEST_F()
305 dictionary->SetWithStringKey("6", release_string.get()); in TEST_F()
306 dictionary->SetWithStringKey("7", release_string.get()); in TEST_F()
313 dictionary2->SetWithStringKey("abc", release_string.get()); in TEST_F()
314 dictionary->SetWithStringKey("8", release_dictionary2.get()); in TEST_F()
323 dictionary->SetWithStringKey("9", release_array2.get()); in TEST_F()
[all …]
Dv8_var_converter.cc610 bool success = dict_var->SetWithStringKey( in FromV8ValueInternal()
/external/chromium_org/ppapi/shared_impl/
Ddictionary_var.h45 bool SetWithStringKey(const std::string& utf8_key, const PP_Var& value);
Ddictionary_var.cc91 bool DictionaryVar::SetWithStringKey(const std::string& utf8_key, in SetWithStringKey() function in ppapi::DictionaryVar