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

1 2 34 5 6 7 8 91011>>

  /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...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkPdfFont.h 233 static SkPdfFont* fontFromPdfDictionary(SkPdfNativeDoc* doc, SkPdfFontDictionary* dict);
237 SkPdfType0FontDictionary* dict);
239 SkPdfType1FontDictionary* dict);
241 SkPdfType3FontDictionary* dict);
243 SkPdfTrueTypeFontDictionary* dict);
245 SkPdfNativeDoc* doc, SkPdfMultiMasterFontDictionary* dict);
257 static SkPdfFont* fontFromPdfDictionaryOnce(SkPdfNativeDoc* doc, SkPdfFontDictionary* dict);
287 SkPdfType0Font(SkPdfNativeDoc* doc, SkPdfType0FontDictionary* dict);
302 SkPdfType1Font(SkPdfNativeDoc* doc, SkPdfType1FontDictionary* dict) {
303 if (dict->has_FontDescriptor())
    [all...]
SkPdfFont.cpp 230 SkPdfFont* SkPdfFont::fontFromPdfDictionaryOnce(SkPdfNativeDoc* doc, SkPdfFontDictionary* dict) {
232 // 1) flag, isResolved (1bit): reset at reset, add/remove/update (array) and set(dict)
234 // if is a dict, reserve a few bytes to encode type of dict, and so on like in a tree
236 switch (doc->mapper()->mapFontDictionary(dict)) {
238 return fontFromType0FontDictionary(doc, dict->asType0FontDictionary());
241 return fontFromTrueTypeFontDictionary(doc, dict->asTrueTypeFontDictionary());
244 return fontFromType1FontDictionary(doc, dict->asType1FontDictionary());
247 return fontFromMultiMasterFontDictionary(doc, dict->asMultiMasterFontDictionary());
250 return fontFromType3FontDictionary(doc, dict->asType3FontDictionary())
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/lldb/
lldb_webkit.py 35 def __lldb_init_module(debugger, dict):
48 def WTFString_SummaryProvider(valobj, dict):
49 provider = WTFStringProvider(valobj, dict)
53 def WTFStringImpl_SummaryProvider(valobj, dict):
54 provider = WTFStringImplProvider(valobj, dict)
58 def WTFAtomicString_SummaryProvider(valobj, dict):
59 return WTFString_SummaryProvider(valobj.GetChildMemberWithName('m_string'), dict)
62 def WTFVector_SummaryProvider(valobj, dict):
63 provider = WTFVectorProvider(valobj, dict)
67 def WTFHashTable_SummaryProvider(valobj, dict)
    [all...]
  /external/chromium_org/components/policy/core/common/
preg_parser_win_unittest.cc 55 void SetInteger(RegistryDict* dict,
58 dict->SetValue(
63 void SetString(RegistryDict* dict,
66 dict->SetValue(
77 RegistryDict dict; local
78 SetInteger(&dict, "DeleteValuesTest1", 1);
79 SetString(&dict, "DeleteValuesTest2", "2");
80 dict.SetKey("DeleteKeysTest1", make_scoped_ptr(new RegistryDict()));
83 dict.SetKey("DeleteKeysTest2", delete_keys_test.Pass());
84 SetInteger(&dict, "DelTest", 1)
    [all...]
  /external/llvm/utils/
llvm-compilers-check 211 abbrevs = dict(zip(paths, [base for base in unique_bases]))
247 abbrevs = dict(zip(unique_bases, abbrevs))
268 self.component_abbrev = dict(
368 configure_flags = dict(
369 llvm=dict(debug=["--prefix=" + self.install_prefix,
381 dragonegg=dict(debug=[],
390 configure_env = dict(
391 llvm=dict(debug=dict(CC=self.cc,
393 release=dict(CC=self.cc
    [all...]
  /external/chromium_org/net/quic/
quic_connection_logger.cc 41 base::DictionaryValue* dict = new base::DictionaryValue(); local
42 dict->SetString("self_address", self_address->ToString());
43 dict->SetString("peer_address", peer_address->ToString());
44 dict->SetInteger("size", packet_size);
45 return dict;
55 base::DictionaryValue* dict = new base::DictionaryValue(); local
56 dict->SetInteger("encryption_level", level);
57 dict->SetInteger("transmission_type", transmission_type);
58 dict->SetString("packet_sequence_number",
60 dict->SetInteger("size", packet_size)
71 base::DictionaryValue* dict = new base::DictionaryValue(); local
81 base::DictionaryValue* dict = new base::DictionaryValue(); local
96 base::DictionaryValue* dict = new base::DictionaryValue(); local
106 base::DictionaryValue* dict = new base::DictionaryValue(); local
148 base::DictionaryValue* dict = new base::DictionaryValue(); local
162 base::DictionaryValue* dict = new base::DictionaryValue(); local
172 base::DictionaryValue* dict = new base::DictionaryValue(); local
181 base::DictionaryValue* dict = new base::DictionaryValue(); local
190 base::DictionaryValue* dict = new base::DictionaryValue(); local
198 base::DictionaryValue* dict = new base::DictionaryValue(); local
208 base::DictionaryValue* dict = new base::DictionaryValue(); local
219 base::DictionaryValue* dict = new base::DictionaryValue(); local
232 base::DictionaryValue* dict = new base::DictionaryValue(); local
241 base::DictionaryValue* dict = new base::DictionaryValue(); local
254 base::DictionaryValue* dict = new base::DictionaryValue(); local
    [all...]
  /external/chromium_org/chrome/browser/prefs/
proxy_config_dictionary.cc 32 ProxyConfigDictionary::ProxyConfigDictionary(const base::DictionaryValue* dict)
33 : dict_(dict->DeepCopy()) {
132 base::DictionaryValue* dict = new base::DictionaryValue(); local
133 dict->SetString(kProxyMode, ProxyModeToString(mode));
135 dict->SetString(kProxyPacUrl, pac_url);
136 dict->SetBoolean(kProxyPacMandatory, pac_mandatory);
139 dict->SetString(kProxyServer, proxy_server);
141 dict->SetString(kProxyBypassList, bypass_list);
142 return dict;
  /external/chromium_org/chromeos/network/
network_ui_data.cc 76 NetworkUIData::NetworkUIData(const base::DictionaryValue& dict) {
78 dict.GetString(kKeyONCSource, &source);
84 if (dict.GetDictionary(kKeyUserSettings, &user_settings))
91 void NetworkUIData::set_user_settings(scoped_ptr<base::DictionaryValue> dict) {
92 user_settings_ = dict.Pass();
99 void NetworkUIData::FillDictionary(base::DictionaryValue* dict) const {
100 dict->Clear();
104 dict->SetString(kKeyONCSource, source_string);
107 dict->SetWithoutPathExpansion(kKeyUserSettings,
network_ui_data.h 34 explicit NetworkUIData(const base::DictionaryValue& dict);
42 void set_user_settings(scoped_ptr<base::DictionaryValue> dict);
47 // Fills in |dict| with the currently configured values. This will write the
49 void FillDictionary(base::DictionaryValue* dict) const;
  /external/chromium_org/tools/json_schema_compiler/test/
test_util.cc 48 scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue());
49 dict->SetWithoutPathExpansion(ak, av);
50 return dict.Pass();
55 scoped_ptr<base::DictionaryValue> dict = Dictionary(ak, av); local
56 dict->SetWithoutPathExpansion(bk, bv);
57 return dict.Pass();
63 scoped_ptr<base::DictionaryValue> dict = Dictionary(ak, av, bk, bv); local
64 dict->SetWithoutPathExpansion(ck, cv);
65 return dict.Pass();
  /external/chromium_org/cc/test/
layer_tree_json_parser.cc 22 base::DictionaryValue* dict; local
24 success &= val->GetAsDictionary(&dict);
26 success &= dict->GetString("LayerType", &layer_type);
28 success &= dict->GetList("Bounds", &list);
32 success &= dict->GetList("Position", &list);
38 success &= dict->GetBoolean("DrawsContent", &draws_content);
46 success &= dict->GetList("ImageAperture", &list);
54 success &= dict->GetList("ImageBounds", &bounds);
59 success &= dict->GetList("Border", &list);
67 success &= dict->GetBoolean("FillCenter", &fill_center)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_action_storage_manager.cc 93 // Set |action|'s default values to those specified in |dict|.
94 void SetDefaultsFromValue(const base::DictionaryValue* dict,
103 if (dict->GetString(kPopupUrlStorageKey, &str_value) &&
107 if (dict->GetString(kTitleStorageKey, &str_value) &&
111 if (dict->GetString(kBadgeTextStorageKey, &str_value) &&
115 if (dict->GetString(kBadgeBackgroundColorStorageKey, &str_value) &&
120 if (dict->GetString(kBadgeTextColorStorageKey, &str_value) &&
124 if (dict->GetInteger(kAppearanceStorageKey, &int_value) &&
138 if (dict->GetDictionary(kIconStorageKey, &icon_value) &&
158 scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue())
268 const base::DictionaryValue* dict = NULL; local
    [all...]
  /external/chromium_org/chrome/browser/supervised_user/
permission_request_creator_sync.cc 47 scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue);
50 dict->SetDouble(kSupervisedUserAccessRequestTime,
53 dict->SetString(kSupervisedUserName, name_);
63 dict->SetBoolean(kNotificationSetting, notifications_enabled);
65 settings_service_->UploadItem(key, dict.PassAs<base::Value>());
  /external/chromium_org/components/cloud_devices/common/
printer_description.cc 541 static bool Load(const base::DictionaryValue& dict, ContentType* option) {
542 return dict.GetString(kKeyContentType, option);
545 static void Save(ContentType option, base::DictionaryValue* dict) {
546 dict->SetString(kKeyContentType, option);
553 static bool Load(const base::DictionaryValue& dict, PwgRasterConfig* option) {
556 if (dict.GetString(kPwgRasterDocumentSheetBack, &document_sheet_back)) {
564 dict.GetBoolean(kPwgRasterReverseOrderStreaming,
566 dict.GetBoolean(kPwgRasterRotateAllPages, &option_out.rotate_all_pages);
571 static void Save(const PwgRasterConfig& option, base::DictionaryValue* dict) {
572 dict->SetString
    [all...]
  /external/chromium_org/components/policy/core/common/cloud/
user_info_fetcher_unittest.cc 65 scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue());
66 dict->SetString("email", "test_user@test.com");
67 dict->SetBoolean("verified_email", true);
68 dict->SetString("hd", "test.com");
72 EXPECT_CALL(delegate, OnGetUserInfoSuccess(MatchDict(dict.get())));
  /external/lldb/examples/summaries/
sp_cp.py 10 def __init__(self,valobj,dict):
30 def SharedPtr_SummaryProvider (valobj,dict):
34 def __init__(self,valobj,dict):
54 def ValueObjectSP_SummaryProvider (valobj,dict):
57 def __lldb_init_module(debugger, dict):
  /external/chromium_org/remoting/webapp/
typecheck.js 6 * Get the |key| attribute in the given |dict| and verify that it is an
12 * @param {Object.<string,*>} dict The dictionary containing the |key|
13 * @param {string} key The key to typecheck in the |dict|.
17 function getArrayAttr(dict, key, opt_default) {
18 var value = /** @type {Array} */ (dict[key]);
31 * Get the |key| attribute in the given |dict| and verify that it is a
37 * @param {Object.<string,*>} dict The dictionary containing the |key|
38 * @param {string} key The key to typecheck in the |dict|.
42 function getBooleanAttr(dict, key, opt_default) {
43 var value = /** @type {boolean} */ (dict[key])
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_items_unittest.cc 395 dict.reset(static_cast<base::DictionaryValue*>(value.release()));
397 scoped_ptr<base::DictionaryValue> dict; member in class:autofill::wallet::WalletItemsTest
403 WalletItems::MaskedInstrument::CreateMaskedInstrument(*dict).get());
409 WalletItems::MaskedInstrument::CreateMaskedInstrument(*dict).get());
415 WalletItems::MaskedInstrument::CreateMaskedInstrument(*dict).get());
421 WalletItems::MaskedInstrument::CreateMaskedInstrument(*dict).get());
427 WalletItems::MaskedInstrument::CreateMaskedInstrument(*dict).get());
433 WalletItems::MaskedInstrument::CreateMaskedInstrument(*dict).get());
460 *WalletItems::MaskedInstrument::CreateMaskedInstrument(*dict));
465 EXPECT_EQ(NULL, WalletItems::LegalDocument::CreateLegalDocument(*dict).get())
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
ui_account_tweaks.cc 48 base::DictionaryValue dict; local
49 AddAccountUITweaksLocalizedValues(&dict, profile);
50 source->AddLocalizedStrings(dict);
  /external/chromium_org/chrome/common/extensions/api/extension_action/
browser_action_handler.cc 27 const base::DictionaryValue* dict = NULL; local
29 manifest_keys::kBrowserAction, &dict)) {
34 scoped_ptr<ActionInfo> action_info = ActionInfo::Load(extension, dict, error);
  /external/chromium_org/chrome/common/extensions/api/omnibox/
omnibox_handler.cc 39 const base::DictionaryValue* dict = NULL; local
41 &dict) ||
42 !dict->GetString(kKeyword, &info->keyword) ||
  /external/chromium_org/components/omnibox/
search_suggestion_parser_unittest.cc 17 base::DictionaryValue* dict; local
18 if (value && value->GetAsDictionary(&dict))
19 return scoped_ptr<base::DictionaryValue>(dict);
  /external/chromium_org/content/child/webcrypto/test/
hmac_unittest.cc 180 base::DictionaryValue dict; local
181 dict.SetString("kty", "oct");
182 dict.SetString("k", "GADWrMRHwQfoNaXU5fZvTg==");
184 dict.Set("key_ops", key_ops); // Takes ownership.
190 dict,
202 dict,
214 base::DictionaryValue dict; local
215 dict.SetString("kty", "oct");
216 dict.SetString("k", "GADWrMRHwQfoNaXU5fZvTg==");
218 dict.Set("key_ops", key_ops); // Takes ownership
237 base::DictionaryValue dict; local
264 base::DictionaryValue dict; local
420 base::DictionaryValue dict; local
    [all...]
  /external/chromium_org/net/cert/
ct_signed_certificate_timestamp_log_param.cc 77 // Base64 encode the given |value| string and put it in |dict| with the
82 base::DictionaryValue* dict) {
86 dict->SetString(key, b64_value);
133 base::DictionaryValue* dict = new base::DictionaryValue(); local
135 dict->Set("verified_scts",
138 dict->Set("invalid_scts",
141 dict->Set("unknown_logs_scts",
144 return dict;
152 base::DictionaryValue* dict = new base::DictionaryValue(); local
154 SetBinaryData("embedded_scts", *embedded_scts, dict);
    [all...]

Completed in 1190 milliseconds

1 2 34 5 6 7 8 91011>>