Searched refs:getattr (Results 1 - 25 of 294) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DFuture.py4 return getattr(__future__, name, object())
/external/lldb/test/unittest2/
H A Dsuite.py109 if (getattr(test.__class__, '_classSetupFailed', False) or
110 getattr(result, '_moduleSetUpFailed', False)):
121 previousClass = getattr(result, '_previousTestClass', None)
127 if getattr(currentClass, "__unittest_skip__", False):
137 setUpClass = getattr(currentClass, 'setUpClass', None)
151 previousClass = getattr(result, '_previousTestClass', None)
171 setUpModule = getattr(module, 'setUpModule', None)
184 addSkip = getattr(result, 'addSkip', None)
202 tearDownModule = getattr(module, 'tearDownModule', None)
213 previousClass = getattr(resul
[all...]
/external/chromium_org/tools/cr/cr/commands/
H A Dinfo.py28 if getattr(cr.context.args, '_short', False):
34 if getattr(cr.context.args, '_short', False):
H A Dselect.py58 if not getattr(cr.context.args, '_no_prepare', None):
/external/chromium_org/third_party/cython/src/Cython/
H A DDebugging.py15 c = getattr(s, "__class__", None)
/external/elfutils/0.153/libdw/
H A Ddwarf_getscopevar.c69 getattr (Dwarf_Die *die, int search_name, Dwarf_Word *value) function
150 if (getattr (result, DW_AT_decl_file, &i) != 0
158 && (getattr (result, DW_AT_decl_line, &i) != 0
162 && (getattr (result, DW_AT_decl_column, &i) != 0
/external/sepolicy/
H A Dapp.te35 allow appdomain devpts:chr_file { getattr read write ioctl };
39 allow appdomain system_server:unix_stream_socket { read write setopt getattr getopt shutdown };
40 allow appdomain system_server:tcp_socket { read write getattr getopt shutdown };
46 allow appdomain surfaceflinger:unix_stream_socket { read write setopt getattr getopt shutdown };
74 allow appdomain wallpaper_file:file { getattr read write };
82 allow appdomain dumpstate:unix_stream_socket { read write getopt getattr shutdown };
83 allow appdomain shell_data_file:file { write getattr };
106 allow appdomain appdomain:unix_stream_socket { getopt getattr read write shutdown };
110 allow appdomain backup_data_file:file { read write getattr };
111 allow appdomain cache_backup_file:file { read write getattr };
[all...]
H A Daccess_vectors17 getattr
44 getattr
73 getattr
90 getattr
102 getattr
138 getattr
318 getattr
475 getattr
493 getattr
507 getattr
[all...]
H A Dmls26 mlsconstrain process { getsched getsession getpgid getcap getattr ptrace share }
64 mlsconstrain dir { read getattr search }
67 mlsconstrain { file lnk_file sock_file chr_file blk_file } { read getattr execute }
82 mlsconstrain fifo_file { read getattr }
/external/chromium_org/third_party/cython/src/Cython/Distutils/
H A Dbuild_ext.py132 return getattr(self, 'cython_' + name[6:])
160 if getattr(ext, 'cython_gdb', False)]:
214 getattr(extension, 'cython_create_listing', 0)
216 getattr(extension, 'cython_line_directives', 0)
218 getattr(extension, 'no_c_in_traceback', 0)
219 cplus = self.cython_cplus or getattr(extension, 'cython_cplus', 0) or \
221 cython_gen_pxi = self.cython_gen_pxi or getattr(extension, 'cython_gen_pxi', 0)
222 cython_gdb = self.cython_gdb or getattr(extension, 'cython_gdb', False)
224 getattr(extension, 'cython_compile_time_env', None)
261 or getattr(extensio
[all...]
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_n_a_m_e.py136 getattr(self, "platformID", None),
137 getattr(self, "platEncID", None),
138 getattr(self, "langID", None),
139 getattr(self, "nameID", None),
140 getattr(self, "string", None),
143 getattr(other, "platformID", None),
144 getattr(other, "platEncID", None),
145 getattr(other, "langID", None),
146 getattr(other, "nameID", None),
147 getattr(othe
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_n_a_m_e.py136 getattr(self, "platformID", None),
137 getattr(self, "platEncID", None),
138 getattr(self, "langID", None),
139 getattr(self, "nameID", None),
140 getattr(self, "string", None),
143 getattr(other, "platformID", None),
144 getattr(other, "platEncID", None),
145 getattr(other, "langID", None),
146 getattr(other, "nameID", None),
147 getattr(othe
[all...]
/external/llvm/bindings/python/llvm/
H A Dobject.py278 getattr(self, 'name')
279 getattr(self, 'size')
280 getattr(self, 'contents')
281 getattr(self, 'address')
346 getattr(self, 'name')
347 getattr(self, 'address')
348 getattr(self, 'size')
428 getattr(self, 'address')
429 getattr(self, 'offset')
430 getattr(sel
[all...]
/external/chromium_org/third_party/protobuf/python/
H A Dstubout.py55 - The stubbing is using the builtin getattr and setattr. So, the __get__
57 probably be to manipulate obj.__dict__ instead of getattr() and
65 orig_attr = getattr(obj, attr_name)
80 orig_attr = getattr(obj, attr_name)
87 # Calling getattr() on a staticmethod transforms it to a 'normal' function.
119 old_child = getattr(parent, child_name)
/external/protobuf/python/
H A Dstubout.py55 - The stubbing is using the builtin getattr and setattr. So, the __get__
57 probably be to manipulate obj.__dict__ instead of getattr() and
65 orig_attr = getattr(obj, attr_name)
80 orig_attr = getattr(obj, attr_name)
87 # Calling getattr() on a staticmethod transforms it to a 'normal' function.
119 old_child = getattr(parent, child_name)
/external/chromium_org/tools/grit/grit/
H A Dlazy_re.py37 return getattr(self._lazy_re, name)
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Ddump_dependency_json.py43 generator_additional_non_configuration_keys = getattr(msvs_generator,
45 generator_additional_path_sections = getattr(msvs_generator,
/external/compiler-rt/test/
H A Dlit.common.configured.in6 if not getattr(config, attr, None):
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt056lexer.py21 result = getattr(parser, grammarEntry)()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
H A Dskip.py36 attr = getattr(klass, name)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A D__init__.py44 return getattr(_the_coverage, name)(*args, **kwargs)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
H A Dmocktool.py53 if getattr(self, key, None) == None:
/external/chromium_org/third_party/cython/src/Cython/Tempita/
H A D_looper.py157 return getattr(item, getter)() != getattr(other, getter)()
159 return getattr(item, getter) != getattr(other, getter)
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dflock_tool.py29 getattr(self, method)(*args[1:])
/external/chromium_org/tools/cr/cr/
H A Dloader.py51 scanner_tags = getattr(module, _MODULE_SCANNED_TAG, None)
90 path = getattr(module, '__path__', None)

Completed in 653 milliseconds

1234567891011>>