HomeSort by relevance Sort by last modified time
    Searched refs:dict (Results 101 - 125 of 2670) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
FileList.py 13 self.dict = {}
28 if key in self.dict:
29 edit = self.dict[key]
60 del self.dict[key]
75 del self.dict[key]
82 if newkey in self.dict:
83 conflict = self.dict[newkey]
89 self.dict[newkey] = edit
93 del self.dict[key]
WindowList.py 6 self.dict = {}
11 self.dict[str(window)] = window
15 del self.dict[str(window)]
23 for key in self.dict.keys():
24 window = self.dict[key]
70 if not registry.dict:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 13 self.dict = {}
28 if key in self.dict:
29 edit = self.dict[key]
60 del self.dict[key]
75 del self.dict[key]
82 if newkey in self.dict:
83 conflict = self.dict[newkey]
89 self.dict[newkey] = edit
93 del self.dict[key]
WindowList.py 6 self.dict = {}
11 self.dict[str(window)] = window
15 del self.dict[str(window)]
23 for key in self.dict.keys():
24 window = self.dict[key]
70 if not registry.dict:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 13 self.dict = {}
28 if key in self.dict:
29 edit = self.dict[key]
60 del self.dict[key]
75 del self.dict[key]
82 if newkey in self.dict:
83 conflict = self.dict[newkey]
89 self.dict[newkey] = edit
93 del self.dict[key]
WindowList.py 6 self.dict = {}
11 self.dict[str(window)] = window
15 del self.dict[str(window)]
23 for key in self.dict.keys():
24 window = self.dict[key]
70 if not registry.dict:
  /device/google/marlin/dataservices/datatop/src/
datatop_meminfo_file_poll.c 70 * @param dict Dictionary the keys and values are added to.
73 int l, struct dt_procdict *dict)
79 if (line1 == 0 || dict == 0)
83 dict->key[k] = &line1[0];
90 dict->val[k] = &line1[n];
98 dict->max = k;
116 struct dt_procdict dict; local
141 (dpg->priv))->line[i], line_len[i], i, &dict);
145 i = dt_find_dict_idx(dpg->data_points[j].name, &dict);
146 if (i >= 0 && i < dict.max)
225 struct dt_procdict dict; local
    [all...]
datatop_stat_poll.c 69 * @param dict Dictionary the keys and values are added to.
72 int n_index, int v_index, struct dt_procdict *dict)
78 if (line1 == 0 || dict == 0)
81 dict->key[n_index] = &line1[0];
93 dict->val[k] = &line1[i];
105 dict->max = k;
123 struct dt_procdict dict; local
149 (dpg->priv))->line[i], line_len[i], i, dp_count, &dict);
154 dict.val[n]);
226 struct dt_procdict dict; local
    [all...]
  /external/python/cpython2/Lib/test/
test_weakref.py 490 # attributes ("J") in the class dict first. The class (II) wants to
974 dict, objects = self.make_weak_valued_dict()
    [all...]
test_plistlib.py 15 <dict>
19 <dict>
29 <dict>
40 </dict>
41 </dict>
85 </dict>
99 pl = dict(
104 aDict=dict(
109 deeperDict=dict(a=17, b=32.5, c=[1, 2, "text"]),
128 self.assertEqual(dict(pl), dict(pl2)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
UserDict.py 4 def __init__(self, dict=None, **kwargs):
6 if dict is not None:
7 self.update(dict)
11 def __cmp__(self, dict):
12 if isinstance(dict, UserDict):
13 return cmp(self.data, dict.data)
15 return cmp(self.data, dict)
46 def update(self, dict=None, **kwargs):
47 if dict is None:
49 elif isinstance(dict, UserDict):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
UserDict.py 4 def __init__(self, dict=None, **kwargs):
6 if dict is not None:
7 self.update(dict)
11 def __cmp__(self, dict):
12 if isinstance(dict, UserDict):
13 return cmp(self.data, dict.data)
15 return cmp(self.data, dict)
46 def update(self, dict=None, **kwargs):
47 if dict is None:
49 elif isinstance(dict, UserDict):
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
UserDict.py 4 def __init__(self, dict=None, **kwargs):
6 if dict is not None:
7 self.update(dict)
11 def __cmp__(self, dict):
12 if isinstance(dict, UserDict):
13 return cmp(self.data, dict.data)
15 return cmp(self.data, dict)
46 def update(self, dict=None, **kwargs):
47 if dict is None:
49 elif isinstance(dict, UserDict)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
UserDict.py 4 def __init__(self, dict=None, **kwargs):
6 if dict is not None:
7 self.update(dict)
11 def __cmp__(self, dict):
12 if isinstance(dict, UserDict):
13 return cmp(self.data, dict.data)
15 return cmp(self.data, dict)
46 def update(self, dict=None, **kwargs):
47 if dict is None:
49 elif isinstance(dict, UserDict)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserDict.py 4 def __init__(self, dict=None, **kwargs):
6 if dict is not None:
7 self.update(dict)
11 def __cmp__(self, dict):
12 if isinstance(dict, UserDict):
13 return cmp(self.data, dict.data)
15 return cmp(self.data, dict)
46 def update(self, dict=None, **kwargs):
47 if dict is None:
49 elif isinstance(dict, UserDict)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserDict.py 4 def __init__(self, dict=None, **kwargs):
6 if dict is not None:
7 self.update(dict)
11 def __cmp__(self, dict):
12 if isinstance(dict, UserDict):
13 return cmp(self.data, dict.data)
15 return cmp(self.data, dict)
46 def update(self, dict=None, **kwargs):
47 if dict is None:
49 elif isinstance(dict, UserDict)
    [all...]
  /external/python/cpython2/Lib/idlelib/
WindowList.py 6 self.dict = {}
11 self.dict[str(window)] = window
15 del self.dict[str(window)]
23 for key in self.dict.keys():
24 window = self.dict[key]
70 if not registry.dict:
  /external/python/cpython3/Lib/idlelib/
windows.py 7 self.dict = {}
12 self.dict[str(window)] = window
16 del self.dict[str(window)]
24 for key in self.dict:
25 window = self.dict[key]
72 if not registry.dict:
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
WindowList.py 6 self.dict = {}
11 self.dict[str(window)] = window
15 del self.dict[str(window)]
23 for key in self.dict.keys():
24 window = self.dict[key]
70 if not registry.dict:
  /tools/test/connectivity/acts/framework/acts/libs/config/
data_source.py 38 self.dict = d
52 return self.dict[key]
62 self.dict[key] = value
66 return key in self.dict
70 return iter(self.dict)
87 self.dict = json.load(fd)
  /external/python/cpython3/Lib/test/
test_weakref.py 529 # attributes ("J") in the class dict first. The class (II) wants to
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_plistlib.py 15 <dict>
19 <dict>
29 <dict>
40 </dict>
41 </dict>
85 </dict>
99 pl = dict(
104 aDict=dict(
109 deeperDict=dict(a=17, b=32.5, c=[1, 2, "text"]),
128 self.assertEqual(dict(pl), dict(pl2)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_plistlib.py 15 <dict>
19 <dict>
29 <dict>
40 </dict>
41 </dict>
85 </dict>
99 pl = dict(
104 aDict=dict(
109 deeperDict=dict(a=17, b=32.5, c=[1, 2, "text"]),
128 self.assertEqual(dict(pl), dict(pl2)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_plistlib.py 15 <dict>
19 <dict>
29 <dict>
40 </dict>
41 </dict>
85 </dict>
99 pl = dict(
104 aDict=dict(
109 deeperDict=dict(a=17, b=32.5, c=[1, 2, "text"]),
128 self.assertEqual(dict(pl), dict(pl2)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_plistlib.py 15 <dict>
19 <dict>
29 <dict>
40 </dict>
41 </dict>
85 </dict>
99 pl = dict(
104 aDict=dict(
109 deeperDict=dict(a=17, b=32.5, c=[1, 2, "text"]),
128 self.assertEqual(dict(pl), dict(pl2)
    [all...]

Completed in 529 milliseconds

1 2 3 45 6 7 8 91011>>