/aosp_15_r20/external/clang/test/SemaObjCXX/ |
H A D | instantiate-message.mm | 5 @interface ClassMethods interface 6 + (ClassMethods *)method1:(void*)ptr; 18 …lt3 = [ClassMethods method1:arg1]; // expected-error{{cannot initialize a variable of type 'ClassM… 21 template void test_class_method<ClassMethods, ClassMethods>(void*); function 22 template void test_class_method<ClassMethods, ClassMethods>(int*); function
|
/aosp_15_r20/external/llvm/test/tools/llvm-objdump/X86/ |
H A D | macho-objc-meta-data.test | 80 OBJC2_64BIT_EXE: classMethods 0x0 (struct method_list_t *) 117 OBJC2_64BIT_EXE: classMethods 0x0 (struct method_list_t *) 162 OBJC2_64BIT_OBJ: classMethods 0x0 (struct method_list_t *) 199 OBJC2_64BIT_OBJ: classMethods 0x0 (struct method_list_t *) 267 OBJC2_32BIT_EXE: classMethods 0x0 (struct method_list_t *) 276 OBJC2_32BIT_EXE: classMethods 0x0 (struct method_list_t *) 321 OBJC2_32BIT_EXE: classMethods 0x0 (struct method_list_t *) 330 OBJC2_32BIT_EXE: classMethods 0x0 (struct method_list_t *)
|
/aosp_15_r20/external/cronet/third_party/protobuf/ruby/lib/google/protobuf/ |
H A D | message_exts.rb | 35 #this is only called in jruby; mri loades the ClassMethods differently 37 klass.extend(ClassMethods) 40 module ClassMethods module
|
/aosp_15_r20/external/protobuf/ruby/lib/google/protobuf/ |
H A D | message_exts.rb | 35 #this is only called in jruby; mri loades the ClassMethods differently 37 klass.extend(ClassMethods) 40 module ClassMethods module
|
/aosp_15_r20/external/sdk-platform-java/gapic-generator-java/src/main/java/com/google/api/generator/gapic/composer/grpc/ |
H A D | GrpcServiceCallableFactoryClassComposer.java | 51 List<MethodDefinition> classMethods = in createClassMethods() local 53 classMethods.addAll( in createClassMethods() 58 return classMethods; in createClassMethods()
|
/aosp_15_r20/external/antlr/runtime/Ruby/lib/antlr3/ |
H A D | template.rb | 12 module ClassMethods module 35 Class === klass and klass.extend( ClassMethods ) 62 Class === klass and klass.extend( Builder::ClassMethods )
|
/aosp_15_r20/external/testng/src/main/java/org/testng/internal/ |
H A D | TestMethodWorker.java | 156 ITestNGMethod[] classMethods= testClass.getBeforeClassMethods(); in invokeBeforeClassMethods() local 157 if(null == classMethods || classMethods.length == 0) { in invokeBeforeClassMethods()
|
/aosp_15_r20/external/sdk-platform-java/gapic-generator-java/src/main/java/com/google/api/generator/gapic/composer/rest/ |
H A D | HttpJsonServiceCallableFactoryClassComposer.java | 92 List<MethodDefinition> classMethods = in createClassMethods() local 94 classMethods.addAll(Arrays.asList(createServerStreamingCallableMethod(service, typeStore))); in createClassMethods() 95 return classMethods; in createClassMethods()
|
/aosp_15_r20/external/llvm/tools/llvm-objdump/ |
H A D | MachODump.cpp | 2730 uint64_t classMethods; /* method_list_t * (64-bit pointer) */ member 2743 uint32_t classMethods; /* method_list_t * (32-bit pointer) */ member 2804 uint64_t classMethods; /* struct method_list_t * (64-bit pointer) */ member 2814 uint32_t classMethods; /* struct method_list_t * (32-bit pointer) */ member 3026 sys::swapByteOrder(p.classMethods); in swapStruct() 3037 sys::swapByteOrder(p.classMethods); in swapStruct() 3093 sys::swapByteOrder(c.classMethods); in swapStruct() 3102 sys::swapByteOrder(c.classMethods); in swapStruct() 3784 outs() << "\t\t classMethods "; in print_protocol_list64_t() 3786 get_symbol_64(offset + offsetof(struct protocol64_t, classMethods), S, in print_protocol_list64_t() [all …]
|
/aosp_15_r20/external/python/google-api-python-client/docs/epy/ |
D | googleapiclient.http.MediaInMemoryUpload-class.html | 143 <a name="section-ClassMethods"></a> 152 ><span class="options">[<a href="#section-ClassMethods"
|
D | googleapiclient.http.MediaFileUpload-class.html | 194 <a name="section-ClassMethods"></a> 203 ><span class="options">[<a href="#section-ClassMethods"
|
D | googleapiclient.http.MediaIoBaseUpload-class.html | 295 <a name="section-ClassMethods"></a> 304 ><span class="options">[<a href="#section-ClassMethods"
|
D | googleapiclient.http.MediaUpload-class.html | 290 <a name="section-ClassMethods"></a> 299 ><span class="options">[<a href="#section-ClassMethods"
|
/aosp_15_r20/external/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 6629 ArrayRef<ObjCMethodDecl *> ClassMethods, in Write_category_t() argument 6664 if (ClassMethods.size() > 0) { in Write_category_t() 6866 std::vector<ObjCMethodDecl *> InstanceMethods, ClassMethods; in RewriteObjCProtocolMetaData() local 6880 ClassMethods.push_back(MD); in RewriteObjCProtocolMetaData() 6886 for (unsigned i = 0, e = ClassMethods.size(); i < e; i++) in RewriteObjCProtocolMetaData() 6887 AllMethods.push_back(ClassMethods[i]); in RewriteObjCProtocolMetaData() 6907 Write_method_list_t_initializer(*this, Context, Result, ClassMethods, in RewriteObjCProtocolMetaData() 6949 if (ClassMethods.size() > 0) { in RewriteObjCProtocolMetaData() 7063 SmallVector<ObjCMethodDecl *, 32> ClassMethods(IDecl->class_methods()); in RewriteObjCClassMetaData() local 7065 Write_method_list_t_initializer(*this, Context, Result, ClassMethods, in RewriteObjCClassMetaData() [all …]
|
/aosp_15_r20/external/clang/lib/CodeGen/ |
H A D | CGObjCMac.cpp | 2733 std::vector<llvm::Constant*> InstanceMethods, ClassMethods; in GetOrEmitProtocol() local 2759 ClassMethods.push_back(C); in GetOrEmitProtocol() 2778 ClassMethods)}; in GetOrEmitProtocol() 3101 SmallVector<llvm::Constant *, 16> InstanceMethods, ClassMethods; in GenerateCategory() local 3108 ClassMethods.push_back(GetMethodConstant(I)); in GenerateCategory() 3119 ClassMethods); in GenerateCategory() 3285 SmallVector<llvm::Constant *, 16> InstanceMethods, ClassMethods; in GenerateClass() local 3292 ClassMethods.push_back(GetMethodConstant(I)); in GenerateClass() 3308 Values[ 0] = EmitMetaClass(ID, Protocols, ClassMethods); in GenerateClass() 6485 std::vector<llvm::Constant*> InstanceMethods, ClassMethods; in GetOrEmitProtocol() local [all …]
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/ |
H A D | abc.py | 29 """A decorator indicating abstract classmethods.
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/ |
D | abc.py | 29 """A decorator indicating abstract classmethods.
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/ |
D | abc.py | 29 """A decorator indicating abstract classmethods.
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/ |
D | abc.py | 29 """A decorator indicating abstract classmethods.
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/ |
D | abc.py | 29 """A decorator indicating abstract classmethods.
|
/aosp_15_r20/external/python/cpython3/Lib/ |
D | abc.py | 29 """A decorator indicating abstract classmethods.
|
/aosp_15_r20/external/python/cpython2/Doc/howto/ |
D | descriptor.rst | 404 reference and does not care about any underlying data. One use for classmethods
|
/aosp_15_r20/external/pytorch/test/dynamo/ |
H A D | test_decorators.py | 553 # TODO fix me: we do not resolve classmethods properly
|
/aosp_15_r20/external/grpc-grpc/src/ruby/ |
H A D | .rubocop_todo.yml | 504 Style/ClassMethods:
|
/aosp_15_r20/external/python/cpython2/Lib/plat-mac/ |
D | bundlebuilder.py | 49 not functions or classmethods are (deep)copied to self.__dict__.
|