Searched refs:__obj (Results 1 – 5 of 5) sorted by relevance
/external/libmojo/third_party/jinja2/ |
D | runtime.py | 167 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)
|
D | sandbox.py | 350 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/ |
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/bison/lib/ |
D | obstack.h | 403 void *__obj = (OBJ); \ 404 if (__obj > (void *)__o->chunk && __obj < (void *)__o->chunk_limit) \ 405 __o->next_free = __o->object_base = (char *)__obj; \ 406 else (__obstack_free) (__o, __obj); })
|
/external/libcxx/include/ |
D | utility | 890 _T1 exchange(_T1& __obj, _T2 && __new_value) 892 _T1 __old_value = _VSTD::move(__obj); 893 __obj = _VSTD::forward<_T2>(__new_value);
|