/external/llvm-project/pstl/include/pstl/internal/ |
D | unseq_backend_simd.h | 540 _Combiner(const _Combiner& __obj) : __value{}, __bin_op(__obj.__bin_op) {} in _Combiner() 543 operator()(const _Combiner& __obj) in operator() 545 __value = (*__bin_op)(__value, __obj.__value); in operator() 635 _ComplexType(const _ComplexType& __obj) in __simd_min_element() 636 : __min_val(__obj.__min_val), __min_ind(__obj.__min_ind), __min_comp(__obj.__min_comp) in __simd_min_element() 642 operator()(const _ComplexType& __obj) in __simd_min_element() 644 if (!(*__min_comp)(__min_val, __obj.__min_val) && in __simd_min_element() 645 ((*__min_comp)(__obj.__min_val, __min_val) || __obj.__min_ind - __min_ind < 0)) in __simd_min_element() 647 __min_val = __obj.__min_val; in __simd_min_element() 648 __min_ind = __obj.__min_ind; in __simd_min_element() [all …]
|
/external/python/jinja/src/jinja2/ |
D | sandbox.py | 370 def call(__self, __context, __obj, *args, **kwargs): # noqa: B902 argument 372 fmt = inspect_format_method(__obj) 374 return __self.format_string(fmt, args, kwargs, __obj) 378 if not __self.is_safe_callable(__obj): 380 return __context.call(__obj, *args, **kwargs)
|
D | runtime.py | 263 def call(__self, __obj, *args, **kwargs): # noqa: B902 argument 273 if hasattr(__obj, "__call__"): # noqa: B004 274 fn = __obj.__call__ 281 __obj = fn 284 if callable(__obj): 285 if getattr(__obj, "contextfunction", False) is True: 287 elif getattr(__obj, "evalcontextfunction", False) is True: 289 elif getattr(__obj, "environmentfunction", False) is True: 292 return __obj(*args, **kwargs)
|
/external/clang/test/CXX/special/class.copy/ |
D | p15-0x.cpp | 9 void find_or_insert(const foo& __obj) { in find_or_insert() argument 10 foo x(__obj); in find_or_insert()
|
/external/llvm-project/clang/test/CXX/special/class.copy/ |
D | p15-0x.cpp | 9 void find_or_insert(const foo& __obj) { in find_or_insert() argument 10 foo x(__obj); in find_or_insert()
|
/external/libchrome/third_party/jinja2/ |
D | sandbox.py | 417 def call(__self, __context, __obj, *args, **kwargs): argument 419 fmt = inspect_format_method(__obj) 425 if not __self.is_safe_callable(__obj): 426 raise SecurityError('%r is not safely callable' % (__obj,)) 427 return __context.call(__obj, *args, **kwargs)
|
D | runtime.py | 235 def call(__self, __obj, *args, **kwargs): argument 245 if hasattr(__obj, '__call__'): 246 fn = __obj.__call__ 251 __obj = fn 254 if isinstance(__obj, _context_function_types): 255 if getattr(__obj, 'contextfunction', 0): 257 elif getattr(__obj, 'evalcontextfunction', 0): 259 elif getattr(__obj, 'environmentfunction', 0): 262 return __obj(*args, **kwargs)
|
/external/python/cpython2/Lib/test/ |
D | test_descr.py | 2497 self.__obj = obj 2499 return "Wrapper(%s)" % repr(self.__obj) 2501 return Wrapper(self.__obj[key]) 2503 return len(self.__obj) 2505 return Wrapper(getattr(self.__obj, name)) 4455 self.__obj = obj 4460 return getattr(self.__obj, name) 4494 self.__obj = obj 4499 return getattr(self.__obj, name)
|
/external/python/cpython3/Lib/test/ |
D | test_descr.py | 2536 self.__obj = obj 2538 return "Wrapper(%s)" % repr(self.__obj) 2540 return Wrapper(self.__obj[key]) 2542 return len(self.__obj) 2544 return Wrapper(getattr(self.__obj, name)) 4245 self.__obj = obj 4250 return getattr(self.__obj, name) 4284 self.__obj = obj 4289 return getattr(self.__obj, name)
|
/external/llvm-project/libcxx/include/ |
D | utility | 917 _T1 exchange(_T1& __obj, _T2 && __new_value) 919 _T1 __old_value = _VSTD::move(__obj); 920 __obj = _VSTD::forward<_T2>(__new_value);
|
/external/libcxx/include/ |
D | utility | 922 _T1 exchange(_T1& __obj, _T2 && __new_value) 924 _T1 __old_value = _VSTD::move(__obj); 925 __obj = _VSTD::forward<_T2>(__new_value);
|