/aosp_15_r20/external/clang/test/Index/ |
H A D | annotate-comments-property-accessor.m | 16 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 22 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 23 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 32 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 33 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 42 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 52 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 53 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert…
|
H A D | overriding-method-comments.mm | 22 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 31 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 37 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 51 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 57 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 64 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 70 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 76 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 81 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 86 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… [all …]
|
/aosp_15_r20/external/clang/lib/AST/ |
H A D | DeclObjC.cpp | 90 if (MD && MD->isInstanceMethod() == isInstance) in getMethod() 108 if (MD && MD->isInstanceMethod() && !MD->isImplicit()) in HasUserDeclaredSetterMethod() 853 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 858 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 864 Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 870 Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 877 isInstanceMethod()); in getNextRedeclarationImpl() 889 isInstanceMethod())) in getCanonicalDecl() 896 isInstanceMethod())) in getCanonicalDecl() 902 isInstanceMethod()); in getCanonicalDecl() [all …]
|
H A D | Mangle.cpp | 262 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName(); in mangleObjCMethodNameWithoutSize()
|
H A D | Comment.cpp | 183 IsInstanceMethod = MD->isInstanceMethod(); in fill()
|
H A D | ASTImporter.cpp | 3561 if (FoundMethod->isInstanceMethod() != D->isInstanceMethod()) in VisitObjCMethodDecl() 3568 << D->isInstanceMethod() << Name << D->getReturnType() in VisitObjCMethodDecl() 3572 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3579 << D->isInstanceMethod() << Name in VisitObjCMethodDecl() 3583 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3595 << D->isInstanceMethod() << Name in VisitObjCMethodDecl() 3607 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3610 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3628 Name.getObjCSelector(), ResultTy, ReturnTInfo, DC, D->isInstanceMethod(), in VisitObjCMethodDecl()
|
/aosp_15_r20/external/ow2-asm/asm-analysis/src/main/java/org/objectweb/asm/tree/analysis/ |
H A D | Analyzer.java | 487 boolean isInstanceMethod = (method.access & ACC_STATIC) == 0; in computeInitialFrame() 488 if (isInstanceMethod) { in computeInitialFrame() 491 currentLocal, interpreter.newParameterValue(isInstanceMethod, currentLocal, ownerType)); in computeInitialFrame() 498 interpreter.newParameterValue(isInstanceMethod, currentLocal, argumentType)); in computeInitialFrame()
|
H A D | Interpreter.java | 95 public V newParameterValue(final boolean isInstanceMethod, final int local, final Type type) { in newParameterValue() argument
|
/aosp_15_r20/external/clang/tools/libclang/ |
H A D | CIndexUSRs.cpp | 104 unsigned isInstanceMethod, in clang_constructUSR_ObjCMethod() argument 109 generateUSRForObjCMethod(name, isInstanceMethod, OS); in clang_constructUSR_ObjCMethod()
|
/aosp_15_r20/external/clang/lib/Sema/ |
H A D | SemaDeclObjC.cpp | 273 if (MDecl->isInstanceMethod()) in AddAnyMethodToGlobalPool() 367 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 421 MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 1672 (PrevMethod->isInstanceMethod() == Method->isInstanceMethod()) && in DiagnoseClassExtensionDupMethods() 3341 if (!chosen->isInstanceMethod()) in isAcceptableMethodMismatch() 3448 BestMethod->isInstanceMethod() ? Pos->second.first : Pos->second.second; in AreMultipleMethodsInGlobalPool() 3722 if (Method->isInstanceMethod()) { in ActOnAtEnd() 3973 method->isInstanceMethod() ? it->second.first : it->second.second; in OverrideSearch() 4076 Method->isInstanceMethod(), in search() 4129 ObjCMethod->isInstanceMethod()? It->second.first: It->second.second; in CheckObjCMethodOverrides() [all …]
|
H A D | SemaExprObjC.cpp | 1309 if (Method->isInstanceMethod() && isClassMessage) in getBaseMessageSendResultType() 1424 iface->getMethod(MD->getSelector(), MD->isInstanceMethod()); in findExplicitInstancetypeDeclarer() 1490 << Method->isInstanceMethod() << Method->getSelector() in EmitRelatedResultTypeNote() 1956 if (CurMethod->isInstanceMethod()) { in ActOnClassPropertyRefExpr() 2186 if (Method->isInstanceMethod()) { in ActOnSuperMessage() 2653 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage() 2709 if (Method->isInstanceMethod()) { in BuildInstanceMessage() 2719 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), in BuildInstanceMessage() 2797 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), in BuildInstanceMessage()
|
/aosp_15_r20/external/clang/lib/StaticAnalyzer/Checkers/ |
H A D | IvarInvalidationChecker.cpp | 434 InterfD->isInstanceMethod()); in visit() 486 InterfD->isInstanceMethod()); in visit()
|
/aosp_15_r20/prebuilts/cmdline-tools/tools/lib/external/org/ow2/asm/asm-analysis/9.6/ |
HD | asm-analysis-9.6.jar | META-INF/
META-INF/MANIFEST.MF
module-info.class
<Unknown>
... |
/aosp_15_r20/out/soong/.intermediates/external/ow2-asm/ow2-asm-analysis/linux_glibc_common/local-javac-header/ |
D | ow2-asm-analysis.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/objectweb/
org/ ... |
/aosp_15_r20/prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/ |
HD | asm-analysis-8.0.1.jar | META-INF/
META-INF/MANIFEST.MF
module-info.class
<Unknown>
... |
/aosp_15_r20/out/soong/.intermediates/external/ow2-asm/ow2-asm-analysis/linux_glibc_common/javac/ |
D | ow2-asm-analysis.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/objectweb/
org/ ... |
/aosp_15_r20/prebuilts/misc/common/asm/ |
HD | asm-analysis-9.6.jar | META-INF/
META-INF/MANIFEST.MF
module-info.class
<Unknown>
... |
/aosp_15_r20/external/clang/lib/ARCMigrate/ |
H A D | TransZeroOutPropsInDealloc.cpp | 102 !(D->isInstanceMethod() && D->getSelector() == FinalizeSel)) in TraverseObjCMethodDecl()
|
H A D | TransEmptyStatementsAndDealloc.cpp | 214 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in cleanupDeallocOrFinalize()
|
H A D | ObjCMT.cpp | 980 ClassString = OM->isInstanceMethod() ? '-' : '+'; in ReplaceWithInstancetype() 1167 if (Method->isPropertyAccessor() || !Method->isInstanceMethod() || in migrateProperty() 1262 !OM->isInstanceMethod() || in migrateNsReturnsInnerPointer() 1305 if (OM->isInstanceMethod() || in migrateFactoryMethod()
|
/aosp_15_r20/external/clang/lib/Index/ |
H A D | IndexDecl.cpp | 44 D->isInstanceMethod()); in hasUserDefined()
|
H A D | IndexSymbol.cpp | 140 if (cast<ObjCMethodDecl>(D)->isInstanceMethod()) in getSymbolInfo()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/AST/ |
D | DeclObjC.h | 426 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod() function 434 bool isClassMethod() const { return !isInstanceMethod(); } in isClassMethod() 1026 &ObjCMethodDecl::isInstanceMethod>;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/AST/ |
D | DeclObjC.h | 426 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod() function 434 bool isClassMethod() const { return !isInstanceMethod(); } in isClassMethod() 1026 &ObjCMethodDecl::isInstanceMethod>;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/AST/ |
D | DeclObjC.h | 426 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod() function 434 bool isClassMethod() const { return !isInstanceMethod(); } in isClassMethod() 1026 &ObjCMethodDecl::isInstanceMethod>;
|