HomeSort by relevance Sort by last modified time
    Searched refs:dictionary (Results 1 - 25 of 453) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/generators/test_parser/
dictionary.idl 6 dictionary MyDict {
14 dictionary MyDict {
  /external/chromium_org/tools/idl_parser/test_parser/
dictionary_web.idl 5 /* Test Dictionary productions
34 *Dictionary(MyDict)
36 dictionary MyDict { };
39 *Dictionary(MyDictInherit)
42 dictionary MyDictInherit : Foo {};
45 *Dictionary(MyDictPartial)
47 partial dictionary MyDictPartial { };
50 partial dictionary MyDictInherit : Foo {};
53 *Dictionary(MyDictBig)
66 dictionary MyDictBig
    [all...]
  /external/chromium_org/content/browser/battery_status/
battery_status_manager_linux_unittest.cc 15 base::DictionaryValue dictionary; local
17 blink::WebBatteryStatus status = ComputeWebBatteryStatus(dictionary);
26 base::DictionaryValue dictionary; local
27 dictionary.SetDouble("State", UPOWER_DEVICE_STATE_CHARGING);
28 dictionary.SetDouble("TimeToFull", 0);
29 dictionary.SetDouble("Percentage", 50);
31 blink::WebBatteryStatus status = ComputeWebBatteryStatus(dictionary);
40 base::DictionaryValue dictionary; local
41 dictionary.SetDouble("State", UPOWER_DEVICE_STATE_CHARGING);
42 dictionary.SetDouble("TimeToFull", 100.f)
54 base::DictionaryValue dictionary; local
69 base::DictionaryValue dictionary; local
84 base::DictionaryValue dictionary; local
99 base::DictionaryValue dictionary; local
114 base::DictionaryValue dictionary; local
129 base::DictionaryValue dictionary; local
    [all...]
battery_status_manager_linux.h 28 // Returns the WebBatteryStatus computed using the provided dictionary.
30 const base::DictionaryValue& dictionary);
  /external/chromium_org/chrome/browser/ui/webui/options/
language_options_handler_unittest.cc 14 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"));
autofill_options_handler_unittest.cc 31 base::DictionaryValue dictionary; local
33 &dictionary);
36 EXPECT_TRUE(dictionary.GetString("addrLines", &value));
38 EXPECT_TRUE(dictionary.GetString("city", &value));
40 EXPECT_TRUE(dictionary.GetString("country", &value));
42 EXPECT_TRUE(dictionary.GetString("dependentLocality", &value));
44 EXPECT_TRUE(dictionary.GetString("guid", &value));
46 EXPECT_TRUE(dictionary.GetString("languageCode", &value));
48 EXPECT_TRUE(dictionary.GetString("postalCode", &value));
50 EXPECT_TRUE(dictionary.GetString("sortingCode", &value))
    [all...]
language_options_dictionary_download_browsertest.js 6 * TestFixture for testing messages of dictionary download progress in language
22 * Register a mock dictionary handler.
33 // Verify that dictionary download success shows 'This language is used for
40 expectTrue($('language-options-dictionary-downloading-message').hidden);
41 expectTrue($('language-options-dictionary-download-failed-message').hidden);
43 $('language-options-dictionary-download-fail-help-message').hidden);
46 // Verify that dictionary download in progress shows 'Downloading spell check
53 expectFalse($('language-options-dictionary-downloading-message').hidden);
54 expectTrue($('language-options-dictionary-download-failed-message').hidden);
56 $('language-options-dictionary-download-fail-help-message').hidden)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geofencing/
CircularGeofencingRegion.cpp 8 #include "bindings/core/v8/Dictionary.h"
13 CircularGeofencingRegion* CircularGeofencingRegion::create(const Dictionary& dictionary)
16 DictionaryHelper::get(dictionary, "id", id);
18 DictionaryHelper::get(dictionary, "latitude", region.latitude);
19 DictionaryHelper::get(dictionary, "longitude", region.longitude);
20 DictionaryHelper::get(dictionary, "radius", region.radius);
  /external/chromium_org/chrome/browser/resources/options/
language_dictionary_overlay.css 5 #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/task_profiler/
task_profiler_data_serializer.cc 28 // Re-serializes the |location| into |dictionary|.
30 base::DictionaryValue* dictionary) {
31 dictionary->SetString("file_name", location.file_name);
35 dictionary->SetString("function_name", location.function_name);
36 dictionary->SetInteger("line_number", location.line_number);
39 // Re-serializes the |birth| into |dictionary|. Prepends the |prefix| to the
40 // "thread" and "location" key names in the dictionary.
43 base::DictionaryValue* dictionary) {
48 dictionary->Set(prefix + "_location", location_value.release());
50 dictionary->Set(prefix + "_thread", new base::StringValue(birth.thread_name))
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/signed_in_devices/
id_mapping_helper_unittest.cc 22 const base::DictionaryValue& dictionary) {
24 if (dictionary.GetString(path, &out)) {
48 base::DictionaryValue dictionary; local
50 CreateMappingForUnmappedDevices(&(devices.get()), &dictionary);
68 CreateMappingForUnmappedDevices(&(devices.get()), &dictionary);
80 // Verify the dictionary.
81 EXPECT_TRUE(VerifyDictionary(public_id1, devices[0]->guid(), dictionary));
82 EXPECT_TRUE(VerifyDictionary(public_id2, devices[1]->guid(), dictionary));
83 EXPECT_TRUE(VerifyDictionary(public_id3, devices[2]->guid(), dictionary));
85 EXPECT_EQ(dictionary.size(), 3U)
    [all...]
  /external/chromium_org/mojo/public/python/mojo/bindings/
reflection.py 28 def __new__(mcs, name, bases, dictionary):
29 dictionary['__slots__'] = ()
30 dictionary['__new__'] = None
31 for value in dictionary.pop('VALUES', []):
36 dictionary[key] = enum_value
39 return type.__new__(mcs, name, bases, dictionary)
81 def __new__(mcs, name, bases, dictionary):
82 dictionary['__slots__'] = ('_fields')
83 descriptor = dictionary.pop('DESCRIPTOR', {})
86 dictionary.update(descriptor.get('constants', {})
    [all...]
  /external/lldb/test/plugins/
builder_darwin.py 8 def buildDsym(sender=None, architecture=None, compiler=None, dictionary=None, clean=True):
12 "make clean" + getCmdLine(dictionary)
15 + getCmdLine(dictionary)],
21 + getCmdLine(dictionary)],
builder_freebsd.py 3 def buildDsym(sender=None, architecture=None, compiler=None, dictionary=None, clean=True):
builder_linux2.py 3 def buildDsym(sender=None, architecture=None, compiler=None, dictionary=None, clean=True):
  /external/chromium_org/sdch/open-vcdiff/src/
vcdiff_test.sh 48 -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, and dictionary is smaller than the origina
    [all...]
  /external/lzma/CPP/7zip/UI/Console/
BenchCon.h 12 FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
14 HRESULT CrcBenchCon(FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
  /external/lldb/test/types/
HideTestFailures.py 46 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=d
    [all...]
  /external/lldb/examples/scripting/
dictionary.c 1 //===-- dictionary.c ---------------------------------------------*- C -*-===//
94 populate_dictionary (tree_node **dictionary, char *filename)
106 if (*dictionary == NULL)
112 *dictionary = new_node;
115 insert (*dictionary, new_word);
124 find_word (tree_node *dictionary, char *word)
126 if (!word || !dictionary)
129 int compare_value = strcmp (word, dictionary->word);
134 return find_word (dictionary->left, word);
136 return find_word (dictionary->right, word)
161 tree_node *dictionary = NULL; local
    [all...]
  /external/chromium_org/content/renderer/manifest/
manifest_parser.cc 26 base::NullableString16 ParseString(const base::DictionaryValue& dictionary,
29 if (!dictionary.HasKey(key))
33 if (!dictionary.GetString(key, &value)) {
44 // Helper function to parse URLs present on a given |dictionary| in a given
48 GURL ParseURL(const base::DictionaryValue& dictionary,
51 base::NullableString16 url_str = ParseString(dictionary, key, NoTrim);
61 base::NullableString16 ParseName(const base::DictionaryValue& dictionary) {
62 return ParseString(dictionary, "name", Trim);
69 const base::DictionaryValue& dictionary) {
70 return ParseString(dictionary, "short_name", Trim)
295 base::DictionaryValue* dictionary = 0; local
    [all...]
  /external/clang/test/PCH/
objc_container.h 19 NSMutableDictionary *dictionary; local
22 oldObject = dictionary[key];
24 dictionary[key] = newObject;
  /external/lldb/test/lang/cpp/enum_types/
TestCPP11EnumTypes.py 17 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={'CFLAGS_EXTRAS': '"-DTEST_BLOCK_CAPTURED_VARS=int16_t"'}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCIceCandidate.idl 33 Constructor(Dictionary dictionary),
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DictionaryHelperForBindings.h 29 #include "Source/bindings/core/v8/Dictionary.h"
38 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, PointerType<T>& value)
41 if (!dictionary.get(key, v8Value))
44 value = DictionaryHelperTraits<T>::type::toImplWithTypeCheck(dictionary.isolate(), v8Value);
49 bool DictionaryHelper::convert(const Dictionary& dictionary, Dictionary::ConversionContext& context, const String& key, PointerType<T>& value)
51 Dictionary::ConversionContextScope scope(context);
53 if (!DictionaryHelper::get(dictionary, key, value)
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_address.cc 26 Address* CreateAddressInternal(const base::DictionaryValue& dictionary,
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.GetString("postal_address.administrative_area_name"
    [all...]

Completed in 788 milliseconds

1 2 3 4 5 6 7 8 91011>>