Home
last modified time | relevance | path

Searched refs:__obj (Results 1 – 6 of 6) sorted by relevance

/external/libmojo/third_party/jinja2/
Druntime.py167 def call(__self, __obj, *args, **kwargs): argument
177 fn = __obj.__call__
182 __obj = fn
185 if isinstance(__obj, _context_function_types):
186 if getattr(__obj, 'contextfunction', 0):
188 elif getattr(__obj, 'evalcontextfunction', 0):
190 elif getattr(__obj, 'environmentfunction', 0):
193 return __obj(*args, **kwargs)
Dsandbox.py350 def call(__self, __context, __obj, *args, **kwargs): argument
354 if not __self.is_safe_callable(__obj):
355 raise SecurityError('%r is not safely callable' % (__obj,))
356 return __context.call(__obj, *args, **kwargs)
/external/clang/test/CXX/special/class.copy/
Dp15-0x.cpp9 void find_or_insert(const foo& __obj) { in find_or_insert() argument
10 foo x(__obj); in find_or_insert()
/external/python/cpython2/Lib/test/
Dtest_descr.py2365 self.__obj = obj
2367 return "Wrapper(%s)" % repr(self.__obj)
2369 return Wrapper(self.__obj[key])
2371 return len(self.__obj)
2373 return Wrapper(getattr(self.__obj, name))
4305 self.__obj = obj
4310 return getattr(self.__obj, name)
4344 self.__obj = obj
4349 return getattr(self.__obj, name)
/external/python/cpython3/Lib/test/
Dtest_descr.py2421 self.__obj = obj
2423 return "Wrapper(%s)" % repr(self.__obj)
2425 return Wrapper(self.__obj[key])
2427 return len(self.__obj)
2429 return Wrapper(getattr(self.__obj, name))
4128 self.__obj = obj
4133 return getattr(self.__obj, name)
4167 self.__obj = obj
4172 return getattr(self.__obj, name)
/external/libcxx/include/
Dutility894 _T1 exchange(_T1& __obj, _T2 && __new_value)
896 _T1 __old_value = _VSTD::move(__obj);
897 __obj = _VSTD::forward<_T2>(__new_value);