Home
last modified time | relevance | path

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

123

/llvm-project-15.0.7/clang/test/APINotes/Inputs/Frameworks/SomeKit.framework/Headers/
H A DSomeKit.apinotes4 Methods:
54 Methods:
59 Methods:
87 Methods:
H A DSomeKit_private.apinotes4 Methods:
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/google/
H A DUpgradeGoogletestCaseCheck.cpp138 auto Methods = in registerMatchers() local
173 Finder->addMatcher(expr(anyOf(callExpr(callee(Methods)).bind("call"), in registerMatchers()
174 declRefExpr(to(Methods)).bind("ref")), in registerMatchers()
179 usingDecl(hasAnyUsingShadowDecl(hasTargetDecl(Methods)), LocationFilter) in registerMatchers()
183 Finder->addMatcher(cxxMethodDecl(Methods, LocationFilter), this); in registerMatchers()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/misc/
H A Dconst-correctness-pointer-as-values.cpp55 void EmitProtocolMethodList(T &&Methods) { in EmitProtocolMethodList() argument
63 for (const auto *I : Methods) { in EmitProtocolMethodList()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DBuiltinOps.td70 // SymbolOpInterface Methods
77 // DataLayoutOpInterface Methods
83 // OpAsmOpInterface Methods
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDeclObjC.cpp3521 Methods.push_back(M->getMethod()); in CollectMultipleMethodsInGlobalPool()
3525 if (!Methods.empty()) in CollectMultipleMethodsInGlobalPool()
3526 return Methods.size() > 1; in CollectMultipleMethodsInGlobalPool()
3537 Methods.push_back(M->getMethod()); in CollectMultipleMethodsInGlobalPool()
3540 return Methods.size() > 1; in CollectMultipleMethodsInGlobalPool()
3550 for (auto *M : Methods) in AreMultipleMethodsInGlobalPool()
3601 if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_strict)) { in DiagnoseMultipleMethodInGlobalPool()
3615 if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_loose) && in DiagnoseMultipleMethodInGlobalPool()
3616 !isAcceptableMethodMismatch(Methods[0], Methods[I])) { in DiagnoseMultipleMethodInGlobalPool()
3632 Diag(Methods[0]->getBeginLoc(), in DiagnoseMultipleMethodInGlobalPool()
[all …]
H A DSemaExprObjC.cpp2953 SmallVector<ObjCMethodDecl*, 4> Methods; in BuildInstanceMessage() local
2957 if (!Methods.empty()) { in BuildInstanceMessage()
2960 Method = Methods[0]; in BuildInstanceMessage()
3013 SmallVector<ObjCMethodDecl*, 4> Methods; in BuildInstanceMessage() local
3017 if (!Methods.empty()) { in BuildInstanceMessage()
3020 Method = Methods[0]; in BuildInstanceMessage()
3034 Methods)) in BuildInstanceMessage()
3100 SmallVector<ObjCMethodDecl*, 4> Methods; in BuildInstanceMessage() local
3104 if (!Methods.empty()) { in BuildInstanceMessage()
3107 Method = Methods[0]; in BuildInstanceMessage()
[all …]
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclObjC.cpp553 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const { in getDesignatedInitializers()
566 Methods.push_back(MD); in getDesignatedInitializers()
570 Methods.push_back(MD); in getDesignatedInitializers()
1238 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse()
1243 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1255 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse()
1261 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1266 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1269 CollectOverriddenMethodsRecurse(Cat, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1272 return CollectOverriddenMethodsRecurse(Super, Method, Methods, in CollectOverriddenMethodsRecurse()
[all …]
/llvm-project-15.0.7/clang/test/APINotes/Inputs/Frameworks/SimpleKit.framework/Headers/
H A DSimpleKit.apinotes4 Methods:
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h697 ArrayRef<StringRef> Methods) in VFTableRecord() argument
701 llvm::append_range(MethodNames, Methods); in VFTableRecord()
756 MethodOverloadListRecord(ArrayRef<OneMethodRecord> Methods) in MethodOverloadListRecord() argument
757 : TypeRecord(TypeRecordKind::MethodOverloadList), Methods(Methods) {} in MethodOverloadListRecord()
759 ArrayRef<OneMethodRecord> getMethods() const { return Methods; } in getMethods()
761 std::vector<OneMethodRecord> Methods; variable
/llvm-project-15.0.7/mlir/include/mlir/Dialect/MLProgram/IR/
H A DMLProgramOps.td75 // FunctionOpInterface Methods
85 // RegionKindInterface Methods
92 // SymbolOpInterface Methods
422 // FunctionOpInterface Methods
432 // SymbolOpInterface Methods
/llvm-project-15.0.7/lld/test/COFF/Inputs/
H A Dpdb-type-server-guid-collision-b-pdb.yaml142 Methods:
343 Methods:
453 Methods:
563 Methods:
966 Methods:
H A Dpdb-type-server-guid-collision-a-pdb.yaml114 Methods:
315 Methods:
425 Methods:
535 Methods:
938 Methods:
H A Dpdb-file-statics-b.yaml257 Methods:
468 Methods:
588 Methods:
708 Methods:
1163 Methods:
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/clang/test/ASTMerge/interface/Inputs/
H A Dinterface2.m25 // Methods match
H A Dinterface1.m25 // Methods match
/llvm-project-15.0.7/lld/test/COFF/
H A Dpdb-thunk.yaml453 Methods:
492 Methods:
627 Methods:
666 Methods:
779 Methods:
828 Methods:
1102 Methods:
1313 Methods:
1433 Methods:
1553 Methods:
[all …]
H A Dpdb-heapsite.yaml427 Methods:
638 Methods:
758 Methods:
878 Methods:
1333 Methods:
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGObjCGNU.cpp449 ArrayRef<const ObjCMethodDecl*> Methods,
483 llvm::Constant *Methods,
501 for (const auto *I : Methods) in EmitProtocolMethodList()
1183 for (auto *M : Methods) { in GenerateProtocolMethodList()
2872 if (Methods.empty()) in GenerateMethodList()
2910 for (const auto *OMD : Methods) { in GenerateMethodList()
2979 llvm::Constant *Methods, in GenerateClassStructure() argument
3001 Methods->getType(), // methods in GenerateClassStructure()
3042 Elements.add(Methods); in GenerateClassStructure()
3091 MethodList.addInt(IntTy, Methods.size()); in GenerateProtocolMethodList()
[all …]
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Func/IR/
H A DFuncOps.td302 // FunctionOpInterface Methods
312 // OpAsmOpInterface Methods
319 // SymbolOpInterface Methods
/llvm-project-15.0.7/llvm/test/DebugInfo/PDB/
H A Dpdbdump-yaml-types.test100 YAML: Methods:
213 YAML: Methods:
323 YAML: Methods:
426 YAML: Methods:
579 YAML: Methods:
/llvm-project-15.0.7/clang/docs/
H A DAPINotes.rst112 Each entry under 'Classes' and 'Protocols' can contain "Methods" and
115 :Methods:
124 Methods:
/llvm-project-15.0.7/clang/lib/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.cpp597 serializeMembers(Record, Record.Methods); in serializeObjCContainerRecord()
615 serializeMembers(Record, Category->Methods); in serializeObjCContainerRecord()

123