/external/clang/test/SemaObjCXX/ |
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
|
/external/robolectric/buildSrc/src/main/groovy/ |
D | CheckApiChangesPlugin.groovy | 59 Set<String> allMethods = new TreeSet<>(prev.classMethods.keySet()) 60 allMethods.addAll(cur.classMethods.keySet()) 66 ClassMethod prevClassMethod = prev.classMethods.get(classMethodName) 67 ClassMethod curClassMethod = cur.classMethods.get(classMethodName) 80 curClassMethod = cur.classMethods[parentMethodName] 164 final Map<String, ClassMethod> classMethods = new HashMap<>() 190 classMethods.put(classMethod.desc, classMethod) 199 classMethods
|
/external/protobuf/ruby/lib/google/protobuf/ |
D | message_exts.rb | 35 #this is only called in jruby; mri loades the ClassMethods differently 37 klass.extend(ClassMethods) 40 module ClassMethods module
|
/external/antlr/runtime/Ruby/lib/antlr3/ |
D | template.rb | 12 module ClassMethods module 35 Class === klass and klass.extend( ClassMethods ) 62 Class === klass and klass.extend( Builder::ClassMethods )
|
/external/testng/src/main/java/org/testng/internal/ |
D | TestMethodWorker.java | 156 ITestNGMethod[] classMethods= testClass.getBeforeClassMethods(); in invokeBeforeClassMethods() local 157 if(null == classMethods || classMethods.length == 0) { in invokeBeforeClassMethods()
|
/external/llvm/test/tools/llvm-objdump/X86/ |
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 *)
|
/external/python/cpython3/Lib/ |
D | abc.py | 29 """A decorator indicating abstract classmethods.
|
/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.MediaUpload-class.html | 290 <a name="section-ClassMethods"></a> 299 ><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"
|
/external/llvm/tools/llvm-objdump/ |
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 …]
|
/external/clang/lib/Frontend/Rewrite/ |
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 …]
|
/external/grpc-grpc/src/ruby/ |
D | .rubocop_todo.yml | 310 Style/ClassMethods:
|
/external/clang/lib/CodeGen/ |
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 …]
|
/external/python/cpython2/Doc/howto/ |
D | descriptor.rst | 404 reference and does not care about any underlying data. One use for classmethods
|
/external/python/cpython2/Lib/plat-mac/ |
D | bundlebuilder.py | 49 not functions or classmethods are (deep)copied to self.__dict__.
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | message.c | 726 klass, rb_eval_string("::Google::Protobuf::MessageExts::ClassMethods")); in build_class_from_descriptor()
|
/external/python/cpython2/Lib/ |
D | inspect.py | 940 # implicit 'self' (or 'cls' for classmethods) argument
|
/external/python/cpython2/Lib/test/ |
D | test_doctest.py | 416 modules, functions, classes, methods, staticmethods, classmethods, and 481 methods, classmethods, staticmethods, properties, and nested classes.
|
/external/python/cpython3/Lib/test/ |
D | test_doctest.py | 439 modules, functions, classes, methods, staticmethods, classmethods, and 504 methods, classmethods, staticmethods, properties, and nested classes.
|
/external/pdfium/third_party/pymock/ |
D | mock.py | 182 # instance methods and classmethods need to lose the self argument
|
/external/python/cpython3/Doc/library/ |
D | doctest.rst | 1311 methods, staticmethods, classmethods, and properties.
|
D | functions.rst | 1711 is useful for classmethods).
|
/external/python/cpython2/Doc/library/ |
D | doctest.rst | 1355 modules, functions, classes, methods, staticmethods, classmethods, and
|