Home
last modified time | relevance | path

Searched refs:Methods (Results 1 – 25 of 100) sorted by relevance

1234

/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
H A DASTSrcLocProcessor.cpp168 std::vector<std::string> Methods; in CaptureMethods() local
192 Methods.push_back(Node->getName().str()); in CaptureMethods()
195 return Methods; in CaptureMethods()
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc4513.txt14 Authentication Methods and Security Mechanisms
60 RFC 4513 LDAP Authentication Methods June 2006
116 RFC 4513 LDAP Authentication Methods June 2006
172 RFC 4513 LDAP Authentication Methods June 2006
228 RFC 4513 LDAP Authentication Methods June 2006
284 RFC 4513 LDAP Authentication Methods June 2006
340 RFC 4513 LDAP Authentication Methods June 2006
396 RFC 4513 LDAP Authentication Methods June 2006
452 RFC 4513 LDAP Authentication Methods June 2006
508 RFC 4513 LDAP Authentication Methods June 2006
[all …]
H A Drfc4370.txt188 "Authentication Methods for LDAP", RFC 2829, May 2000.
202 "Authentication Methods for LDAP", RFC 2829, May 2000.
H A DINDEX44 rfc4513.txt LDAP: Authentication Methods and Security Mechanisms (PS)
H A Drfc4510.txt44 LDAP: Authentication Methods and Security Mechanisms [RFC4513]
188 Protocol (LDAP): Authentication Methods and Security
H A Drfc4521.txt89 4.3. Authentication Methods ....................................10
514 4.3. Authentication Methods
754 (LDAP): Authentication Methods and Security Mechanisms",
H A Drfc3829.txt198 "Authentication Methods for LDAP", RFC 2829, May 2000.
H A Drfc3062.txt239 "Authentication Methods for LDAP", RFC 2829, May 2000.
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclObjC.cpp3497 Selector Sel, SmallVectorImpl<ObjCMethodDecl *> &Methods, in CollectMultipleMethodsInGlobalPool() argument
3513 Methods.push_back(M->getMethod()); in CollectMultipleMethodsInGlobalPool()
3517 if (!Methods.empty()) in CollectMultipleMethodsInGlobalPool()
3518 return Methods.size() > 1; in CollectMultipleMethodsInGlobalPool()
3529 Methods.push_back(M->getMethod()); in CollectMultipleMethodsInGlobalPool()
3532 return Methods.size() > 1; in CollectMultipleMethodsInGlobalPool()
3537 bool receiverIdOrClass, SmallVectorImpl<ObjCMethodDecl *> &Methods) { in AreMultipleMethodsInGlobalPool() argument
3542 for (auto *M : Methods) in AreMultipleMethodsInGlobalPool()
3572 SmallVector<ObjCMethodDecl *, 4> Methods; in LookupMethodInGlobalPool() local
3580 void Sema::DiagnoseMultipleMethodInGlobalPool(SmallVectorImpl<ObjCMethodDecl*> &Methods, in DiagnoseMultipleMethodInGlobalPool() argument
[all …]
H A DSemaExprObjC.cpp2953 SmallVector<ObjCMethodDecl*, 4> Methods; in BuildInstanceMessage() local
2955 CollectMultipleMethodsInGlobalPool(Sel, Methods, true/*InstanceFirst*/, in BuildInstanceMessage()
2957 if (!Methods.empty()) { in BuildInstanceMessage()
2960 Method = Methods[0]; in BuildInstanceMessage()
2963 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage()
2968 receiverIsIdLike, Methods)) in BuildInstanceMessage()
3013 SmallVector<ObjCMethodDecl*, 4> Methods; in BuildInstanceMessage() local
3014 CollectMultipleMethodsInGlobalPool(Sel, Methods, in BuildInstanceMessage()
3017 if (!Methods.empty()) { in BuildInstanceMessage()
3020 Method = Methods[0]; in BuildInstanceMessage()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclObjC.cpp541 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const { in getDesignatedInitializers()
554 Methods.push_back(MD); in getDesignatedInitializers()
558 Methods.push_back(MD); in getDesignatedInitializers()
1203 SmallVectorImpl<const ObjCMethodDecl *> &Methods, in CollectOverriddenMethodsRecurse() argument
1222 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse()
1227 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1239 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse()
1245 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1250 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1253 CollectOverriddenMethodsRecurse(Cat, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h696 ArrayRef<StringRef> Methods) in VFTableRecord() argument
700 llvm::append_range(MethodNames, Methods); in VFTableRecord()
755 MethodOverloadListRecord(ArrayRef<OneMethodRecord> Methods) in MethodOverloadListRecord() argument
756 : TypeRecord(TypeRecordKind::MethodOverloadList), Methods(Methods) {} in MethodOverloadListRecord()
758 ArrayRef<OneMethodRecord> getMethods() const { return Methods; } in getMethods()
760 std::vector<OneMethodRecord> Methods; variable
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndexHigh.cpp24 SmallVectorImpl<const Decl *> &Methods) { in getTopOverriddenMethods() argument
34 Methods.push_back(D->getCanonicalDecl()); in getTopOverriddenMethods()
40 getTopOverriddenMethods(TU, cxcursor::getCursorDecl(*I), Methods); in getTopOverriddenMethods()
/netbsd-src/external/public-domain/sqlite/dist/
H A DReplace.cs85 #region Private Support Methods
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGObjCGNU.cpp448 ArrayRef<const ObjCMethodDecl*> Methods,
482 llvm::Constant *Methods,
493 ArrayRef<const ObjCMethodDecl*> Methods);
496 void EmitProtocolMethodList(T &&Methods, llvm::Constant *&Required, in EmitProtocolMethodList() argument
500 for (const auto *I : Methods) in EmitProtocolMethodList()
1154 GenerateProtocolMethodList(ArrayRef<const ObjCMethodDecl*> Methods) override { in GenerateProtocolMethodList() argument
1173 MethodList.addInt(IntTy, Methods.size()); in GenerateProtocolMethodList()
1180 for (auto *M : Methods) { in GenerateProtocolMethodList()
2785 ArrayRef<const ObjCMethodDecl*> Methods, in GenerateMethodList() argument
2787 if (Methods.empty()) in GenerateMethodList()
[all …]
H A DCGObjCMac.cpp1168 SmallVector<const ObjCMethodDecl *, 4> Methods[NumProtocolMethodLists]; member in __anon0cc8f9a20111::__anon0cc8f9a20211::ProtocolMethodLists
1176 result.Methods[index].push_back(MD); in get()
1193 for (auto &list : Methods) { in emitExtendedTypesArray()
1206 getMethodListKind(kind), Methods[kind]); in emitMethodList()
1268 ArrayRef<const ObjCMethodDecl *> Methods);
1279 ArrayRef<const ObjCMethodDecl *> Methods);
1451 ArrayRef<const ObjCMethodDecl *> Methods);
3420 SmallVector<const ObjCMethodDecl *, 16> Methods[NumMethodLists]; in GenerateCategory() local
3423 Methods[unsigned(MD->isClassMethod())].push_back(MD); in GenerateCategory()
3431 Methods[InstanceMethods])); in GenerateCategory()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DAPINotes.rst112 Each entry under 'Classes' and 'Protocols' can contain "Methods" and
115 :Methods:
124 Methods:
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2162 MethodsMap Methods; member
2239 Info.Methods[SP->getRawName()].push_back(SP); in collectClassInfo()
2460 for (auto &MethodItr : Info.Methods) { in lowerRecordFieldList()
2463 std::vector<OneMethodRecord> Methods; in lowerRecordFieldList() local
2472 Methods.push_back(OneMethodRecord( in lowerRecordFieldList()
2478 assert(!Methods.empty() && "Empty methods map entry"); in lowerRecordFieldList()
2479 if (Methods.size() == 1) in lowerRecordFieldList()
2480 ContinuationBuilder.writeMemberType(Methods[0]); in lowerRecordFieldList()
2484 MethodOverloadListRecord MOLR(Methods); in lowerRecordFieldList()
2487 OverloadedMethodRecord OMR(Methods.size(), MethodList, Name); in lowerRecordFieldList()
/netbsd-src/external/apache2/llvm/dist/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp249 MethodsSeq Methods; member
273 IO.mapOptional("Methods", C.Methods); in mapping()
/netbsd-src/external/bsd/wpa/dist/wpa_supplicant/
H A DREADME-P2P308 p2p_service_add asp <auto accept> <adv id> <status 0/1> <Config Methods>
331 Config Methods - Mandatory ASCII hex-encoded u16 (bitmask of WSC config
342 p2p_service_rep asp <auto accept> <adv id> <status 0/1> <Config Methods>
361 Config Methods - Mandatory ASCII hex-encoded u16 (bitmask of WSC config
716 Set WPS Configuration Methods.
/netbsd-src/crypto/external/bsd/openssl/dist/doc/internal/man3/
H A DOSSL_METHOD_STORE.pod48 Methods are expected to be library internal structures.
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp3015 data_type_ref Methods) { in EmitKeyDataLength() argument
3018 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitKeyDataLength()
3022 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitKeyDataLength()
3046 data_type_ref Methods, unsigned DataLen) { in EmitData() argument
3051 LE.write<uint32_t>(Methods.ID); in EmitData()
3053 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitData()
3059 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitData()
3064 unsigned InstanceBits = Methods.Instance.getBits(); in EmitData()
3067 Methods.Instance.hasMoreThanOneDecl(); in EmitData()
3071 unsigned FactoryBits = Methods.Factory.getBits(); in EmitData()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6329 ArrayRef<ObjCMethodDecl *> Methods, in Write_method_list_t_initializer() argument
6333 if (Methods.size() > 0) { in Write_method_list_t_initializer()
6335 Write_method_list_t_TypeDecl(Result, Methods.size()); in Write_method_list_t_initializer()
6340 Result += "\t"; Result += utostr(Methods.size()); Result += ",\n"; in Write_method_list_t_initializer()
6341 for (unsigned i = 0, e = Methods.size(); i < e; i++) { in Write_method_list_t_initializer()
6342 ObjCMethodDecl *MD = Methods[i]; in Write_method_list_t_initializer()
6707 ArrayRef<ObjCMethodDecl *> Methods, in Write__extendedMethodTypes_initializer() argument
6710 if (Methods.size() == 0) in Write__extendedMethodTypes_initializer()
6717 for (unsigned i = 0, e = Methods.size(); i < e; i++) { in Write__extendedMethodTypes_initializer()
6718 ObjCMethodDecl *MD = Methods[i]; in Write__extendedMethodTypes_initializer()
/netbsd-src/external/bsd/flex/dist/doc/
H A Dflex.info134 Node: Accessor Methods131426
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp479 for (auto &M : Overloads.Methods) in visitKnownRecord()

1234