Searched refs:methods (Results 251 - 269 of 269) sorted by relevance

<<11

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h623 /// all method members of the class, including non-instance methods,
624 /// special methods, etc.
629 method_range methods() const { function in class:clang::CXXRecordDecl
633 /// Method begin iterator. Iterates in the order the methods
2059 /// Should only be called for instance (i.e., non-static) methods. Note
3933 /// The getter and putter methods are permitted to be overloaded,
3939 /// and putter methods.
H A DDeclObjC.h119 /// ObjC methods can be declared within 4 contexts: class interfaces,
125 /// Setter/getter instance methods:
136 /// the above methods are setMenu:, menu, replaceSubview:with:, and defaultMenu.
462 /// Return overridden methods for the given \p Method.
873 // Helper methods for accessing attributes.
1046 // Iterator access to instance/class methods.
1051 method_range methods() const { function in class:clang::ObjCContainerDecl
1168 /// // no instance variables or methods.
1247 /// the properties/methods. For example, this will be the '>', '}', or
1523 /// If this declaration does not have methods marke
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp1830 for (const auto *const Method : methods())
2358 assert(isInstance() && "No 'this' for static methods!");
2366 assert(isInstance() && "No 'this' for static methods!");
H A DASTImporter.cpp1863 "Import implicit methods to or from non-definition");
1865 for (CXXMethodDecl *FromM : From->methods())
2746 // user-defined methods.
2754 // because implicit methods are created only if they are used.
5394 // Import those methods which have been instantiated in the
5396 for (CXXMethodDecl *FromM : D->methods()) {
/freebsd-11-stable/sys/dev/usb/serial/
H A Duftdi.c264 .methods = uftdi_methods,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp45 // This castAs is safe: methods that don't return an object
296 // Warn about implementing unavailable methods, unless the unavailable
434 // Warn on deprecated methods under -Wdeprecated-implementations,
1750 for (auto *MD : ID->methods())
1755 for (const auto *Method : CAT->methods()) {
2215 // Previously we grouped all unimplemented methods under a single
2243 /// ivars of B and all of the methods of B.
2245 /// This substitutability is important when type checking methods, because
2475 /// In ARC, check whether the conventional meanings of the two methods
2519 // Mismatches for these methods do
[all...]
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dp2p_supplicant.c2375 u16 methods; local
2382 methods = WPA_GET_BE16(buf);
2405 info->device_name, methods,
/freebsd-11-stable/sys/dev/usb/wlan/
H A Dif_rum.c3249 .methods = rum_methods,
H A Dif_zyd.c941 * RFMD RF methods.
998 * AL2230 RF methods.
1235 * AL7230B RF methods.
1329 * AL2210 RF methods.
1399 * GCT RF methods.
1561 * Maxim2 RF methods.
2895 .methods = zyd_methods,
H A Dif_urtw.c4433 .methods = urtw_methods,
H A Dif_run.c6265 .methods = run_methods,
/freebsd-11-stable/sys/dev/otus/
H A Dif_otus.c221 .methods = otus_methods,
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGClass.cpp2623 for (const CXXMethodDecl *MD : RD->methods()) {
H A DCGDebugInfo.cpp1589 // C++ ABI does not include all virtual methods from non-primary bases in
1591 // A and B, C's primary vftable will not include B's virtual methods.
1681 // Ditto 'nodebug' methods, for consistency with CodeGenFunction.cpp.
2004 // methods, or in the MS ABI if those virtual methods only come from virtually
2107 /// Return true if the class or any of its methods are marked dllimport.
2111 for (const CXXMethodDecl *MD : RD->methods())
2213 // methods are marked dllimport. This isn't a complete solution, since objects
2214 // without any dllimport methods can be used in one DLL and constructed in
2222 // its methods ar
[all...]
H A DCodeGenModule.cpp1792 // Non-static class methods are handled via vtable or member function pointer
3273 // If we ever change our AST traversal to walk into class methods,
5162 // Determine which methods need to be implemented, some may have
5261 for (auto *M : OID->methods())
/freebsd-11-stable/sys/dev/sound/usb/
H A Duaudio.c717 .methods = uaudio_methods,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp4391 const char *r, *methods, *name, *SymbolName; local
4413 methods = r + sizeof(struct objc_method_list_t);
4419 memcpy(&method, methods + i * sizeof(struct objc_method_t),
5608 outs() << "\t\t methods " << format("0x%08" PRIx32, objc_class->methodLists);
5650 outs() << "\t instance methods "
5655 outs() << "\t class methods "
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTContext.cpp138 // If decl is a virtual method, walk the base classes looking for methods that
139 // decl overrides. This table of overridden methods is used by IRGen to
7305 for (auto *method : record->methods())
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp870 // Load instance methods
877 // Load factory methods
3968 /// Move the given method to the back of the global list of methods.
7565 /// Under non-PCH compilation the consumer receives the objc methods
7567 /// We simulate this by deserializing and passing to consumer the methods of the
7573 for (auto *I : ImplD->methods())
8007 // Also, should entries without methods count as misses?
8022 /// Retrieve the instance methods found by this visitor.
8027 /// Retrieve the instance methods found by this visitor.
8045 /// Add the given set of methods t
[all...]

Completed in 684 milliseconds

<<11