/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | class_inplace_op2.py | 5 def __imul__(self, other): argument 9 def __imatmul__(self, other): argument 13 def __ifloordiv__(self, other): argument 17 def __itruediv__(self, other): argument 21 def __imod__(self, other): argument 25 def __ipow__(self, other): argument 29 def __ior__(self, other): argument 33 def __ixor__(self, other): argument 37 def __iand__(self, other): argument 41 def __ilshift__(self, other): argument [all …]
|
A D | special_methods.py | 10 def __lt__(self, other): argument 13 def __le__(self, other): argument 16 def __eq__(self, other): argument 19 def __ne__(self, other): argument 22 def __ge__(self, other): argument 25 def __gt__(self, other): argument 31 def __add__(self, other): argument 34 def __and__(self, other): argument 55 def __mul__(self, other): argument 64 def __or__(self, other): argument [all …]
|
A D | special_methods2.py | 11 def __lt__(self, other): argument 14 def __le__(self, other): argument 17 def __eq__(self, other): argument 20 def __ne__(self, other): argument 23 def __ge__(self, other): argument 26 def __gt__(self, other): argument 32 def __add__(self, other): argument 35 def __and__(self, other): argument 56 def __mul__(self, other): argument 65 def __or__(self, other): argument [all …]
|
A D | class_binop.py | 5 def __eq__(self, other): argument 9 def __lt__(self, other): argument 13 def __gt__(self, other): argument 17 def __le__(self, other): argument 21 def __ge__(self, other): argument
|
A D | special_comparisons.py | 2 def __eq__(self, other): argument 7 def __ne__(self, other): argument 12 def __eq__(self, other): argument 17 def __ne__(self, other): argument
|
A D | special_comparisons2.py | 5 def __eq__(self, other): argument 13 def __ne__(self, other): argument
|
A D | list_sort.py | 40 def __lt__(self, other): argument
|
/AliOS-Things-master/components/jsoncpp/src/lib_json/ |
A D | json_valueiterator.h | 32 ValueIteratorBase::computeDistance(const SelfType& other) const { in computeDistance() 55 bool ValueIteratorBase::isEqual(const SelfType& other) const { in isEqual() 62 void ValueIteratorBase::copy(const SelfType& other) { in copy() 122 ValueConstIterator::ValueConstIterator(ValueIterator const& other) in ValueConstIterator() 144 ValueIterator::ValueIterator(const ValueConstIterator& other) in ValueIterator()
|
A D | json_value.cpp | 277 void Value::CZString::swap(CZString& other) { in swap() 431 Value::Value(const Value& other) { in Value() 436 Value::Value(Value&& other) noexcept { in Value() function in Json::Value 446 Value& Value::operator=(const Value& other) { in operator =() 451 Value& Value::operator=(Value&& other) noexcept { in operator =() 456 void Value::swapPayload(Value& other) { in swapPayload() 461 void Value::copyPayload(const Value& other) { in copyPayload() 466 void Value::swap(Value& other) { in swap() 473 void Value::copy(const Value& other) { in copy() 975 void Value::dupPayload(const Value& other) { in dupPayload() [all …]
|
/AliOS-Things-master/components/oss/src/http/ |
A D | HttpMessage.cc | 27 HttpMessage::HttpMessage(const HttpMessage &other) : in HttpMessage() 33 HttpMessage::HttpMessage(HttpMessage &&other) in HttpMessage() function in HttpMessage 38 HttpMessage& HttpMessage::operator=(const HttpMessage &other) in operator =() 47 HttpMessage& HttpMessage::operator=(HttpMessage &&other) in operator =()
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/src/ |
A D | HttpMessage.cc | 47 HttpMessage::HttpMessage(const HttpMessage &other) in HttpMessage() 52 HttpMessage::HttpMessage(HttpMessage &&other) { *this = std::move(other); } in HttpMessage() function in AlibabaCloud::HttpMessage 54 HttpMessage &HttpMessage::operator=(const HttpMessage &other) { in operator =() 64 HttpMessage &HttpMessage::operator=(HttpMessage &&other) { in operator =()
|
A D | ServiceRequest.cc | 32 ServiceRequest::ServiceRequest(const ServiceRequest &other) in ServiceRequest() 41 ServiceRequest::ServiceRequest(ServiceRequest &&other) { in ServiceRequest() function in AlibabaCloud::ServiceRequest 45 ServiceRequest &ServiceRequest::operator=(const ServiceRequest &other) { in operator =() 57 ServiceRequest &ServiceRequest::operator=(ServiceRequest &&other) { in operator =()
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/include/alibabacloud/core/ |
A D | Outcome.h | 28 Outcome(const Outcome &other) in Outcome() 30 Outcome(Outcome &&other) { *this = std::move(other); } in Outcome() function
|
/AliOS-Things-master/components/py_engine/tests/perf_bench/ |
A D | bm_chaos.py | 20 def dist(self, other): argument 25 def __add__(self, other): argument 31 def __sub__(self, other): argument 34 def __mul__(self, other): argument 40 def linear_combination(self, other, l1, l2=None): argument
|
A D | bm_float.py | 29 def maximize(self, other): argument
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/test/core/ |
A D | servicerequest_ut.cc | 18 explicit TestServiceRequest(const ServiceRequest &other): in TestServiceRequest() 21 explicit TestServiceRequest(ServiceRequest &&other): in TestServiceRequest()
|
/AliOS-Things-master/components/oss/include/alibabacloud/oss/utils/ |
A D | Outcome.h | 43 Outcome(const Outcome& other) : in Outcome() 49 Outcome(Outcome&& other): in Outcome() function
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | objset.c | 177 mp_obj_set_t *other = m_new_obj(mp_obj_set_t); in set_copy() local 204 mp_obj_t other = args[i]; in set_diff_int() local 231 STATIC mp_obj_t set_intersect_int(mp_obj_t self_in, mp_obj_t other, bool update) { in set_intersect_int() 263 STATIC mp_obj_t set_intersect(mp_obj_t self_in, mp_obj_t other) { in set_intersect() 268 STATIC mp_obj_t set_intersect_update(mp_obj_t self_in, mp_obj_t other) { in set_intersect_update() 273 STATIC mp_obj_t set_isdisjoint(mp_obj_t self_in, mp_obj_t other) { in set_isdisjoint() 299 mp_obj_set_t *other; in set_issubset_internal() local 353 mp_obj_set_t *other = MP_OBJ_TO_PTR(other_in); in set_equal() local
|
/AliOS-Things-master/components/py_engine/tests/feature_check/ |
A D | reverse_ops.py | 2 def __radd__(self, other): argument
|
/AliOS-Things-master/components/py_engine/tests/cpydiff/ |
A D | types_int_subclassconv.py | 10 __add__ = lambda self, other: A(int(self) + other) argument
|
/AliOS-Things-master/components/py_engine/tests/extmod/ |
A D | uasyncio_cancel_fair.py | 14 async def task(id, other): argument
|
A D | uasyncio_cancel_fair2.py | 23 async def task_b(id, other): argument
|
A D | uasyncio_wait_for.py | 34 async def task_cancel_other(t, other): argument
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/resource/ |
A D | resource_variable.cc | 30 ResourceVariable::ResourceVariable(ResourceVariable&& other) { in ResourceVariable() function in tflite::resource::ResourceVariable
|
/AliOS-Things-master/components/jsoncpp/include/json/ |
A D | allocator.h | 71 template <typename U> struct rebind { using other = SecureAllocator<U>; }; member
|