Searched refs:dictionary (Results 1 - 25 of 349) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/generators/test_parser/
H A Ddictionary.idl6 dictionary MyDict {
14 dictionary MyDict {
/external/chromium_org/tools/idl_parser/test_parser/
H A Ddictionary_web.idl36 dictionary MyDict { };
42 dictionary MyDictInherit : Foo {};
47 partial dictionary MyDictPartial { };
50 partial dictionary MyDictInherit : Foo {};
66 dictionary MyDictBig {
73 /* ERROR Unexpected "{" after keyword "dictionary". */
74 dictionary {
80 dictionary ForParent NoColon {
91 dictionary MyDictNull {
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dlanguage_options_handler_unittest.cc14 scoped_ptr<base::DictionaryValue> dictionary(
16 EXPECT_TRUE(dictionary->HasKey("en-US"));
19 // EXPECT_FALSE(dictionary->HasKey("no"));
24 scoped_ptr<base::DictionaryValue> dictionary(
26 EXPECT_TRUE(dictionary->HasKey("en-US"));
/external/lldb/test/plugins/
H A Dbuilder_darwin.py8 def buildDsym(sender=None, architecture=None, compiler=None, dictionary=None, clean=True):
12 "make clean" + getCmdLine(dictionary)
15 + getCmdLine(dictionary)],
21 + getCmdLine(dictionary)],
H A Dbuilder_freebsd.py3 def buildDsym(sender=None, architecture=None, compiler=None, dictionary=None, clean=True):
H A Dbuilder_linux2.py3 def buildDsym(sender=None, architecture=None, compiler=None, dictionary=None, clean=True):
H A Dbuilder_base.py88 def buildDefault(sender=None, architecture=None, compiler=None, dictionary=None, clean=True):
92 getMake() + "clean" + getCmdLine(dictionary) + ";"
95 + getCmdLine(dictionary)],
100 + getCmdLine(dictionary)],
106 def buildDwarf(sender=None, architecture=None, compiler=None, dictionary=None, clean=True):
110 getMake() + "clean" + getCmdLine(dictionary)
113 + getCmdLine(dictionary)],
119 + getCmdLine(dictionary)],
125 def cleanup(sender=None, dictionary=None):
131 getMake() + "clean" + getCmdLine(dictionary)],
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dlanguage_dictionary_overlay.css5 #language-dictionary-overlay-no-matches {
12 #language-dictionary-overlay-page h1 {
17 html[dir=rtl] #language-dictionary-overlay-page h1 {
22 #language-dictionary-overlay-search-field {
28 html[dir=rtl] #language-dictionary-overlay-search-field {
33 #language-dictionary-overlay-word-list {
37 #language-dictionary-overlay-word-list.no-search-matches {
41 #language-dictionary-overlay-word-list > * {
45 .language-dictionary-overlay-word-list-item {
/external/chromium_org/chrome/browser/extensions/api/signed_in_devices/
H A Did_mapping_helper_unittest.cc22 const base::DictionaryValue& dictionary) {
24 if (dictionary.GetString(path, &out)) {
42 base::DictionaryValue dictionary; local
44 CreateMappingForUnmappedDevices(&(devices.get()), &dictionary);
59 CreateMappingForUnmappedDevices(&(devices.get()), &dictionary);
71 // Verify the dictionary.
72 EXPECT_TRUE(VerifyDictionary(public_id1, devices[0]->guid(), dictionary));
73 EXPECT_TRUE(VerifyDictionary(public_id2, devices[1]->guid(), dictionary));
74 EXPECT_TRUE(VerifyDictionary(public_id3, devices[2]->guid(), dictionary));
76 EXPECT_EQ(dictionary
19 VerifyDictionary( const std::string& path, const std::string& expected_value, const base::DictionaryValue& dictionary) argument
[all...]
/external/chromium_org/sdch/open-vcdiff/src/
H A Dvcdiff_test.sh48 -dictionary $DICTIONARY_FILE -target $TARGET_FILE -delta $DELTA_FILE \
55 encode -dictionary $DICTIONARY_FILE \
60 $VCDIFF decode -dictionary $DICTIONARY_FILE \
75 encode -dictionary $DICTIONARY_FILE \
80 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
95 encode -dictionary $DICTIONARY_FILE \
100 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
114 encode -dictionary $DICTIONARY_FILE \
119 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
132 # If using the wrong dictionary, an
[all...]
/external/lzma/CPP/7zip/UI/Console/
H A DBenchCon.h12 FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
14 HRESULT CrcBenchCon(FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
/external/lldb/test/types/
H A DHideTestFailures.py46 self.buildDsym(dictionary=d)
47 self.setTearDownCleanup(dictionary=d)
53 self.buildDwarf(dictionary=d)
54 self.setTearDownCleanup(dictionary=d)
61 self.buildDsym(dictionary=d)
62 self.setTearDownCleanup(dictionary=d)
68 self.buildDwarf(dictionary=d)
69 self.setTearDownCleanup(dictionary=d)
76 self.buildDsym(dictionary=d)
77 self.setTearDownCleanup(dictionary
[all...]
/external/lldb/examples/scripting/
H A Ddictionary.c1 //===-- dictionary.c ---------------------------------------------*- C -*-===//
94 populate_dictionary (tree_node **dictionary, char *filename) argument
106 if (*dictionary == NULL)
112 *dictionary = new_node;
115 insert (*dictionary, new_word);
124 find_word (tree_node *dictionary, char *word) argument
126 if (!word || !dictionary)
129 int compare_value = strcmp (word, dictionary->word);
134 return find_word (dictionary->left, word);
136 return find_word (dictionary
142 print_tree(tree_node *dictionary) argument
161 tree_node *dictionary = NULL; local
[all...]
/external/chromium_org/ui/webui/resources/js/
H A Di18n_template_no_process.js39 * @param {string} key The name of the value in the dictionary.
40 * @param {LoadTimeData} dictionary The dictionary of strings to draw from.
42 'i18n-content': function(element, key, dictionary) {
43 element.textContent = dictionary.getString(key);
49 * @param {string} key The name of the value in the dictionary. It should
53 * @param {LoadTimeData} dictionary The dictionary of strings to draw from.
55 'i18n-options': function(select, key, dictionary) {
56 var options = dictionary
[all...]
/external/chromium_org/third_party/protobuf/python/google/protobuf/
H A Dreflection.py100 def __new__(cls, name, bases, dictionary):
113 dictionary: The class dictionary of the class we're
114 constructing. dictionary[_DESCRIPTOR_KEY] must contain
121 descriptor = dictionary[GeneratedProtocolMessageType._DESCRIPTOR_KEY]
122 bases = _NewMessage(bases, descriptor, dictionary)
125 new_class = superclass.__new__(cls, name, bases, dictionary)
129 def __init__(cls, name, bases, dictionary):
141 dictionary: The class dictionary o
[all...]
/external/clang/test/PCH/
H A Dobjc_container.h19 NSMutableDictionary *dictionary; local
22 oldObject = dictionary[key];
24 dictionary[key] = newObject;
/external/lldb/test/lang/cpp/enum_types/
H A DTestCPP11EnumTypes.py17 self.buildDsym(dictionary={'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=int8_t"'})
24 self.buildDsym(dictionary={'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=int16_t"'})
31 self.buildDsym(dictionary={'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=int32_t"'})
38 self.buildDsym(dictionary={'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=int64_t"'})
45 self.buildDsym(dictionary={'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=uint8_t"'})
52 self.buildDsym(dictionary={'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=uint16_t"'})
59 self.buildDsym(dictionary={'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=uint32_t"'})
66 self.buildDsym(dictionary={'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=uint64_t"'})
72 self.buildDwarf(dictionary={'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=int8_t"'})
78 self.buildDwarf(dictionary
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCIceCandidate.idl33 Constructor(Dictionary dictionary),
/external/chromium_org/chrome/browser/task_profiler/
H A Dtask_profiler_data_serializer.cc28 // Re-serializes the |location| into |dictionary|.
30 base::DictionaryValue* dictionary) {
31 dictionary->Set("file_name",
36 dictionary->Set("function_name",
38 dictionary->Set("line_number",
42 // Re-serializes the |birth| into |dictionary|. Prepends the |prefix| to the
43 // "thread" and "location" key names in the dictionary.
46 base::DictionaryValue* dictionary) {
51 dictionary->Set(prefix + "_location", location_value.release());
53 dictionary
29 LocationSnapshotToValue(const LocationSnapshot& location, base::DictionaryValue* dictionary) argument
44 BirthOnThreadSnapshotToValue(const BirthOnThreadSnapshot& birth, const std::string& prefix, base::DictionaryValue* dictionary) argument
58 DeathDataSnapshotToValue(const DeathDataSnapshot& death_data, base::DictionaryValue* dictionary) argument
82 TaskSnapshotToValue(const TaskSnapshot& snapshot, base::DictionaryValue* dictionary) argument
100 ToValue( const ProcessDataSnapshot& process_data, int process_type, base::DictionaryValue* dictionary) argument
[all...]
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dwallet_address.cc26 Address* CreateAddressInternal(const base::DictionaryValue& dictionary, argument
29 if (!dictionary.GetString("postal_address.country_name_code",
36 if (!dictionary.GetString("postal_address.recipient_name",
43 if (!dictionary.GetString("postal_address.postal_code_number",
51 if (!dictionary.GetString("postal_address.sorting_code",
57 if (!dictionary.GetString("phone_number", &phone_number))
62 if (dictionary.GetList("postal_address.address_line", &address_line_list)) {
73 if (!dictionary.GetString("postal_address.locality_name",
79 if (!dictionary.GetString("postal_address.dependent_locality_name",
85 if (!dictionary
169 CreateAddressWithID( const base::DictionaryValue& dictionary) argument
180 CreateAddress( const base::DictionaryValue& dictionary) argument
188 CreateDisplayAddress( const base::DictionaryValue& dictionary) argument
[all...]
/external/chromium_org/mojo/bindings/js/
H A Dcore.cc12 #include "gin/dictionary.h"
53 gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate()); local
54 dictionary.Set("handle0", mojo::Handle(handle0));
55 dictionary.Set("handle1", mojo::Handle(handle1));
56 return dictionary;
90 gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate()); local
91 dictionary.Set("result", result);
92 return dictionary;
114 gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate()); local
115 dictionary
123 gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate()); local
166 gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate()); local
179 gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate()); local
193 gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate()); local
[all...]
/external/chromium_org/chrome/browser/sync/test/integration/
H A Ddictionary_helper.cc29 SpellcheckCustomDictionary* dictionary,
31 int result = change.Sanitize(dictionary->GetWords());
32 dictionary->Apply(change);
33 dictionary->Notify(change);
34 dictionary->Sync(change);
55 void LoadDictionary(SpellcheckCustomDictionary* dictionary) { argument
56 if (dictionary->IsLoaded())
60 dictionary->AddObserver(&observer);
61 dictionary->Load();
63 dictionary
28 ApplyChange( SpellcheckCustomDictionary* dictionary, SpellcheckCustomDictionary::Change& change) argument
91 const chrome::spellcheck_common::WordSet& dictionary = local
[all...]
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dnative_messaging_host_manifest.cc52 base::DictionaryValue* dictionary; local
53 if (!parsed->GetAsDictionary(&dictionary)) {
60 if (!result->Parse(dictionary, error_message)) {
70 bool NativeMessagingHostManifest::Parse(base::DictionaryValue* dictionary, argument
72 if (!dictionary->GetString("name", &name_) ||
78 if (!dictionary->GetString("description", &description_) ||
86 if (!dictionary->GetString("type", &type) ||
95 if (!dictionary->GetString("path", &path) ||
102 if (!dictionary->GetList("allowed_origins", &allowed_origins_list)) {
/external/chromium_org/chrome/browser/local_discovery/
H A Dgcd_registration_ticket_request_unittest.cc54 const base::DictionaryValue* dictionary = NULL; local
55 ASSERT_TRUE(value->GetAsDictionary(&dictionary));
56 request.OnGCDAPIFlowComplete(*dictionary);
61 ASSERT_TRUE(value->GetAsDictionary(&dictionary));
62 request.OnGCDAPIFlowComplete(*dictionary);
H A Dprivet_confirm_api_flow_unittest.cc51 const base::DictionaryValue* dictionary = NULL; local
52 ASSERT_TRUE(value->GetAsDictionary(&dictionary));
53 confirmation.OnGCDAPIFlowComplete(*dictionary);
58 ASSERT_TRUE(value->GetAsDictionary(&dictionary));
59 confirmation.OnGCDAPIFlowComplete(*dictionary);

Completed in 1650 milliseconds

1234567891011>>