HomeSort by relevance Sort by last modified time
    Searched refs:func_dict (Results 1 - 24 of 24) sorted by null

  /external/llvm/utils/
update_llc_test_checks.py 75 def build_function_body_dictionary(raw_tool_output, prefixes, func_dict, verbose):
89 if func in func_dict[prefix] and func_dict[prefix][func] != scrubbed_body:
94 func_dict[prefix][func] = None
97 func_dict[prefix][func] = scrubbed_body
100 def add_checks(output_lines, prefix_list, func_dict, func_name):
106 if not func_dict[checkprefix][func_name]:
113 func_body = func_dict[checkprefix][func_name].splitlines()
188 func_dict = {}
191 func_dict.update({prefix: dict()}
    [all...]
update_test_checks.py 113 def build_function_body_dictionary(raw_tool_output, prefixes, func_dict, verbose, tool_basename):
131 if func in func_dict[prefix] and func_dict[prefix][func] != scrubbed_body:
136 func_dict[prefix][func] = None
139 func_dict[prefix][func] = scrubbed_body
188 def add_checks(output_lines, prefix_list, func_dict, func_name, tool_basename):
200 if not func_dict[checkprefix][func_name]:
208 func_body = func_dict[checkprefix][func_name].splitlines()
326 func_dict = {}
329 func_dict.update({prefix: dict()}
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
funcobject.c 38 op->func_dict = NULL;
191 if (op->func_dict == NULL) {
192 op->func_dict = PyDict_New();
193 if (op->func_dict == NULL)
196 Py_INCREF(op->func_dict);
197 return op->func_dict;
207 /* It is illegal to del f.func_dict */
213 /* Can only set func_dict to a dictionary */
219 tmp = op->func_dict;
221 op->func_dict = value;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
funcobject.c 38 op->func_dict = NULL;
191 if (op->func_dict == NULL) {
192 op->func_dict = PyDict_New();
193 if (op->func_dict == NULL)
196 Py_INCREF(op->func_dict);
197 return op->func_dict;
207 /* It is illegal to del f.func_dict */
213 /* Can only set func_dict to a dictionary */
219 tmp = op->func_dict;
221 op->func_dict = value;
    [all...]
  /external/python/cpython2/Objects/
funcobject.c 38 op->func_dict = NULL;
189 if (op->func_dict == NULL) {
190 op->func_dict = PyDict_New();
191 if (op->func_dict == NULL)
194 Py_INCREF(op->func_dict);
195 return op->func_dict;
205 /* It is illegal to del f.func_dict */
211 /* Can only set func_dict to a dictionary */
217 tmp = op->func_dict;
219 op->func_dict = value
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
funcobject.h 29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ member in struct:__anon4332
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
funcobject.h 29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ member in struct:__anon4639
  /external/python/cpython2/Include/
funcobject.h 29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ member in struct:__anon32580
  /prebuilts/gdb/darwin-x86/include/python2.7/
funcobject.h 29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ member in struct:__anon66471
  /prebuilts/gdb/linux-x86/include/python2.7/
funcobject.h 29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ member in struct:__anon66593
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
funcobject.h 29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ member in struct:__anon986
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
funcobject.h 29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ member in struct:__anon1109
  /external/python/cpython3/Include/
funcobject.h 30 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ member in struct:__anon33142
  /external/python/cpython3/Objects/
funcobject.c 47 op->func_dict = NULL;
534 Py_XDECREF(op->func_dict);
558 Py_VISIT(f->func_dict);
663 offsetof(PyFunctionObject, func_dict), /* tp_dictoffset */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_funcattrs.py 257 self.cannot_set_attr(self.b, 'func_dict', None, TypeError)
270 self.assertIs(d, self.b.func_dict)
279 self.assertEqual(self.b.func_dict['known_attr'], 7)
294 del self.b.func_dict
  /external/python/cpython2/Lib/test/
test_funcattrs.py 257 self.cannot_set_attr(self.b, 'func_dict', None, TypeError)
270 self.assertIs(d, self.b.func_dict)
279 self.assertEqual(self.b.func_dict['known_attr'], 7)
294 del self.b.func_dict
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_funcattrs.py 257 self.cannot_set_attr(self.b, 'func_dict', None, TypeError)
270 self.assertIs(d, self.b.func_dict)
279 self.assertEqual(self.b.func_dict['known_attr'], 7)
294 del self.b.func_dict
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_funcattrs.py 257 self.cannot_set_attr(self.b, 'func_dict', None, TypeError)
270 self.assertIs(d, self.b.func_dict)
279 self.assertEqual(self.b.func_dict['known_attr'], 7)
294 del self.b.func_dict
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_funcattrs.py 257 self.cannot_set_attr(self.b, 'func_dict', None, TypeError)
270 self.assertIs(d, self.b.func_dict)
279 self.assertEqual(self.b.func_dict['known_attr'], 7)
294 del self.b.func_dict
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_funcattrs.py 257 self.cannot_set_attr(self.b, 'func_dict', None, TypeError)
270 self.assertIs(d, self.b.func_dict)
279 self.assertEqual(self.b.func_dict['known_attr'], 7)
294 del self.b.func_dict
  /prebuilts/gdb/darwin-x86/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]

Completed in 546 milliseconds