HomeSort by relevance Sort by last modified time
    Searched defs:dict (Results 76 - 100 of 458) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/feedback/system_logs/log_sources/
chrome_internal_log_source.cc 76 base::DictionaryValue* dict = NULL; local
77 if ((*it)->GetAsDictionary(&dict)) {
79 dict->GetString("title", &title);
  /external/chromium_org/chrome/common/extensions/api/identity/
oauth2_manifest_handler.cc 50 const base::DictionaryValue* dict = NULL; local
51 if (!extension->manifest()->GetDictionary(keys::kOAuth2, &dict)) {
58 // GetBoolean reads the value of auto_approve directly from dict to prevent
61 !dict->GetBoolean(kAutoApprove, &info->auto_approve)) {
68 if ((!dict->GetString(kClientId, &info->client_id) ||
76 if (!dict->GetList(kScopes, &list)) {
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
settings_overrides_handler.cc 132 const base::Value* dict = NULL; local
133 CHECK(extension->manifest()->Get(manifest_keys::kSettingsOverride, &dict));
135 ChromeSettingsOverrides::FromValue(*dict, error));
  /external/chromium_org/chrome/test/chromedriver/chrome/
log.cc 37 const base::DictionaryValue* dict = NULL; local
39 if (value->GetAsDictionary(&dict)) {
41 for (base::DictionaryValue::Iterator it(*dict); !it.IsAtEnd();
48 dict->GetWithoutPathExpansion(it.key(), &child);
web_view_impl_unittest.cc 93 base::DictionaryValue dict; local
94 ASSERT_NO_FATAL_FAILURE(AssertEvalFails(dict));
98 base::DictionaryValue dict; local
99 dict.SetBoolean("wasThrown", false);
100 ASSERT_NO_FATAL_FAILURE(AssertEvalFails(dict));
104 base::DictionaryValue dict; local
105 dict.SetBoolean("wasThrown", true);
106 dict.SetString("result.type", "undefined");
107 ASSERT_NO_FATAL_FAILURE(AssertEvalFails(dict));
112 base::DictionaryValue dict; local
126 base::DictionaryValue dict; local
137 base::DictionaryValue dict; local
150 base::DictionaryValue dict; local
165 base::DictionaryValue dict; local
179 base::DictionaryValue dict; local
199 base::DictionaryValue dict; local
211 base::DictionaryValue dict; local
    [all...]
  /external/chromium_org/chromeos/dbus/
fake_shill_ipconfig_client.cc 47 const base::DictionaryValue* dict = NULL; local
49 &dict))
54 dict,
63 base::DictionaryValue* dict = NULL; local
65 &dict)) {
67 dict->SetWithoutPathExpansion(name, value.DeepCopy());
  /external/chromium_org/components/autofill/content/browser/wallet/
full_wallet_unittest.cc 379 dict.reset(static_cast<base::DictionaryValue*>(value.release()));
381 scoped_ptr<base::DictionaryValue> dict; member in class:autofill::wallet::FullWalletTest
386 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get());
391 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get());
396 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get());
401 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get());
406 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get());
411 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get());
430 EXPECT_EQ(full_wallet, *FullWallet::CreateFullWallet(*dict));
446 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get())
    [all...]
  /external/chromium_org/net/ftp/
ftp_ctrl_response_buffer.cc 87 base::DictionaryValue* dict = new base::DictionaryValue(); local
88 dict->SetInteger("status_code", response->status_code);
89 dict->Set("lines", lines);
90 return dict;
  /external/chromium_org/tools/json_schema_compiler/
util.h 37 const base::DictionaryValue* dict; local
38 if (!from.GetDictionary(index, &dict))
41 if (!T::Populate(*dict, obj.get()))
  /external/lldb/tools/lldb-perf/lib/
Results.cpp 52 CFCMutableDictionary dict; local
53 value->ForEach([&dict](const std::string &key, const Results::ResultSP &value_sp) -> bool
55 AddResultToDictionary (dict, key.c_str(), value_sp.get());
60 dict.AddValueCString(CFSTR("description"), result->GetDescription());
62 parent_array.AppendValue(dict.get(), true);
123 CFCMutableDictionary dict; local
124 value->ForEach([&dict](const std::string &key, const Results::ResultSP &value_sp) -> bool
126 AddResultToDictionary (dict, key.c_str(), value_sp.get());
131 dict.AddValueCString(CFSTR("description"), result->GetDescription());
133 parent_dict.AddValue(cf_key.get(), dict.get(), true)
161 CFCMutableDictionary dict; local
    [all...]
  /external/ltrace/
dict.h 28 struct dict { struct
41 /* Initialize a dictionary DICT. The dictionary will hold keys of the
46 void dict_init(struct dict *dict,
74 int dict_clone(struct dict *target, const struct dict *source,
87 const struct dict *_source_d = (SRC_DICTP); \
107 /* Return number of key-value pairs stored in DICT. */
108 size_t dict_size(const struct dict *dict);
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Info.java 39 private static void showInfo(final FusionDictionary dict, final boolean plumbing) {
41 System.out.print(dict.mOptions.toString(2, plumbing));
46 for (final WordProperty wordProperty : dict) {
67 private static void showWordInfo(final FusionDictionary dict, final String word,
69 final PtNode ptNode = FusionDictionary.findWordInTree(dict.mRootNodeArray, word);
121 final FusionDictionary dict = BinaryDictOffdeviceUtils.getDictionary(filename, local
124 showInfo(dict, plumbing);
127 showWordInfo(dict, mArgs[i], plumbing);
CombinedInputOutput.java 94 final FusionDictionary dict = local
108 dict.add(word, probabilityInfo, shortcuts.isEmpty() ? null : shortcuts,
111 dict.setBigram(word, s.mWord, s.mProbabilityInfo);
192 dict.add(word, probabilityInfo, shortcuts.isEmpty() ? null : shortcuts, isNotAWord);
194 dict.setBigram(word, s.mWord, s.mProbabilityInfo);
198 return dict;
205 * @param dict the dictionary to write.
208 final FusionDictionary dict) throws IOException {
210 for (final WordProperty wordProperty : dict) {
214 destination.write(CombinedFormatUtils.formatAttributeMap(dict.mOptions.mAttributes))
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnClauseConverterJAJP.java 85 * @param dict The dictionary for phrase conversion
87 public void setDictionary(WnnDictionary dict) {
89 mConnectMatrix = dict.getConnectMatrix();
92 mDictionary = dict;
93 dict.clearDictionary();
94 dict.clearApproxPattern();
102 mPosDefault = dict.getPOS(WnnDictionary.POS_TYPE_MEISI);
103 mPosEndOfClause1 = dict.getPOS(WnnDictionary.POS_TYPE_V1);
104 mPosEndOfClause2 = dict.getPOS(WnnDictionary.POS_TYPE_V2);
105 mPosEndOfClause3 = dict.getPOS(WnnDictionary.POS_TYPE_V3)
409 WnnDictionary dict = mDictionary; local
469 WnnDictionary dict = mDictionary; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ACBTree.h 41 __strong AMutableDictionary *dict; /* The dictionary that this node belongs to */ variable
59 @property (retain) AMutableDictionary *dict; variable
  /external/chromium_org/base/json/
json_value_converter_unittest.cc 51 const base::DictionaryValue* dict = NULL; local
52 if (!value->GetAsDictionary(&dict))
55 if (!dict->GetString("val", result))
  /external/chromium_org/chrome/browser/android/
new_tab_page_prefs.cc 89 const base::DictionaryValue* dict = profile_->GetPrefs()->GetDictionary( local
91 return dict && dict->HasKey(ConvertJavaStringToUTF8(env, session_tag));
  /external/chromium_org/chrome/browser/chromeos/policy/
app_pack_updater.cc 141 base::DictionaryValue* dict = NULL; local
142 if (!(*it)->GetAsDictionary(&dict)) {
148 if (dict->GetString(chromeos::kAppPackKeyExtensionId, &id) &&
149 dict->GetString(chromeos::kAppPackKeyUpdateUrl, &update_url)) {
login_profile_policy_provider.cc 171 const base::DictionaryValue* dict = NULL; local
172 if (value && value->GetAsDictionary(&dict)) {
173 scoped_ptr<base::DictionaryValue> policy_value(dict->DeepCopy());
  /external/chromium_org/chrome/browser/extensions/api/content_settings/
content_settings_api.cc 278 base::DictionaryValue* dict = new base::DictionaryValue(); local
279 dict->SetString(keys::kIdKey, group_identifier);
280 dict->SetString(keys::kDescriptionKey, plugin_metadata->name());
281 list->Append(dict);
  /external/chromium_org/chrome/browser/extensions/api/cookies/
cookies_helpers.cc 97 base::DictionaryValue dict; local
98 dict.SetString(keys::kIdKey, GetStoreIdFromProfile(profile));
99 dict.Set(keys::kTabIdsKey, tab_ids);
102 bool rv = CookieStore::Populate(dict, cookie_store);
  /external/chromium_org/chrome/browser/extensions/api/declarative/
deduping_factory_unittest.cc 62 const base::DictionaryValue* dict = NULL; local
63 CHECK(value->GetAsDictionary(&dict));
65 if (!dict->GetInteger("parameter", &parameter)) {
74 scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue);
75 dict->SetInteger("parameter", parameter);
76 return dict.Pass();
  /external/chromium_org/chrome/browser/extensions/api/declarative_content/
content_condition.cc 101 const base::DictionaryValue* dict = NULL; local
102 if (!condition_attribute_value.GetAsDictionary(&dict)) {
108 url_matcher_condition_factory, dict, ++g_next_id, error);
  /external/chromium_org/chrome/browser/extensions/api/feedback_private/
feedback_private_api.cc 102 base::DictionaryValue* dict = new base::DictionaryValue(); local
103 SetResult(dict);
106 dict->SetString(id, l10n_util::GetStringUTF16(idr))
129 webui::SetFontAndTextDirection(dict);
  /external/chromium_org/chrome/browser/extensions/api/management/
management_api_browsertest.cc 280 base::DictionaryValue* dict = local
283 EXPECT_TRUE(dict->GetStringASCII(keys::kDisabledReasonKey, &reason));

Completed in 945 milliseconds

1 2 34 5 6 7 8 91011>>