Searched refs:cls (Results 1 – 15 of 15) sorted by relevance
/AliOS-Things-master/components/py_engine/tests/misc/sys_settrace_subdir/ |
A D | sys_settrace_generic.py | 74 cls = TestClass() 75 cls.method() 76 print("test_class_property", cls.prprty) 77 cls.prprty = 12 78 print("test_class_property", cls.prprty)
|
/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | subclass_classmethod.py | 5 def foo(cls): argument 6 print(cls.__name__) 26 def bar(cls): argument 27 print(cls.foo)
|
A D | class_new.py | 10 def __new__(cls): argument 12 return super(cls, A).__new__(cls) 57 def __new__(cls): argument
|
A D | class_descriptor.py | 2 def __get__(self, obj, cls): argument 5 print(cls is Main)
|
A D | object_new.py | 15 def __new__(cls): argument
|
/AliOS-Things-master/components/py_engine/framework/ |
A D | network.py | 8 def singleton(cls, *args, **kw): argument 11 if cls not in instances: 12 instances[cls] = cls(*args, **kw) 14 return instances[cls]
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | objobject.c | 51 STATIC mp_obj_t object___new__(mp_obj_t cls) { in object___new__() argument 52 …if (!mp_obj_is_type(cls, &mp_type_type) || !mp_obj_is_instance_type((mp_obj_type_t *)MP_OBJ_TO_PTR… in object___new__() 60 return MP_OBJ_FROM_PTR(mp_obj_new_instance(MP_OBJ_TO_PTR(cls), &native_base)); in object___new__()
|
A D | objtype.h | 42 mp_obj_instance_t *mp_obj_new_instance(const mp_obj_type_t *cls, const mp_obj_type_t **native_base);
|
/AliOS-Things-master/components/py_engine/tests/jni/ |
A D | object.py | 4 Integer = jni.cls("java/lang/Integer") 15 System = jni.cls("java/lang/System")
|
A D | system_out.py | 4 System = jni.cls("java/lang/System")
|
A D | list.py | 4 ArrayList = jni.cls("java/util/ArrayList")
|
/AliOS-Things-master/components/SDL2/src/core/android/ |
A D | SDL_android.c | 70 JNIEnv *env, jclass cls); 73 JNIEnv *env, jclass cls, 86 JNIEnv *env, jclass cls); 128 JNIEnv *env, jclass cls); 149 JNIEnv *env, jclass cls, 153 JNIEnv *env, jclass cls, 157 JNIEnv *env, jclass cls, 161 JNIEnv* env, jclass cls, 165 JNIEnv* env, jclass cls, 2309 jclass cls; in Android_JNI_GetPowerInfo() local [all …]
|
A D | SDL_android.h | 114 JNIEXPORT void JNICALL SDL_Android_Init(JNIEnv* mEnv, jclass cls);
|
/AliOS-Things-master/components/lwip/lwip2.0.0/apps/netbiosns/ |
A D | netbiosns.c | 112 PACK_STRUCT_FIELD(u16_t cls); 297 resp->resp_name.cls = netbios_name_hdr->cls; in netbiosns_recv()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ |
A D | dns.c | 189 u16_t cls; member 199 u16_t cls; member 818 qry.cls = PP_HTONS(DNS_RRCLASS_IN); in dns_send() 1243 if ((qry.cls != PP_HTONS(DNS_RRCLASS_IN)) || in dns_recv() 1269 if (ans.cls == PP_HTONS(DNS_RRCLASS_IN)) { in dns_recv()
|
Completed in 33 milliseconds