Home
last modified time | relevance | path

Searched refs:getMethodInfo (Results 1 – 25 of 27) sorted by relevance

12

/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
DJavassistTypeDeclarationAdapter.java43 .filter(m -> ((m.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0) in getDeclaredMethods()
44 && ((m.getMethodInfo().getAccessFlags() & AccessFlag.SYNTHETIC) == 0)) in getDeclaredMethods()
50 .filter(m -> (m.getMethodInfo().getAccessFlags() & AccessFlag.SYNTHETIC) == 0) in getConstructors()
DJavassistUtils.java44 && ((method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0) in getMethodUsage()
45 && ((method.getMethodInfo().getAccessFlags() & AccessFlag.SYNTHETIC) == 0)) { in getMethodUsage()
184 MethodInfo methodInfo = method.getMethodInfo(); in extractParameterName()
DJavassistEnumDeclaration.java182 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod()
183 … boolean isNotBridge = (method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0; in solveMethod()
DJavassistInterfaceDeclaration.java112 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod()
113 … boolean isNotBridge = (method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0; in solveMethod()
DJavassistClassDeclaration.java203 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod()
204 … boolean isNotBridge = (method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0; in solveMethod()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/
Dcom_github_javaparser_symbolsolver_javassistmodel_JavassistEnumDeclaration.txt49 …Line 172) method.getMethodInfo().getAttribute(SyntheticAttribute.tag) ==> javassist.bytecode.Metho…
50 Line 172) method.getMethodInfo() ==> javassist.CtBehavior.getMethodInfo()
51 …Line 173) method.getMethodInfo().getAccessFlags() ==> javassist.bytecode.MethodInfo.getAccessFlags…
52 Line 173) method.getMethodInfo() ==> javassist.CtBehavior.getMethodInfo()
Dcom_github_javaparser_symbolsolver_javassistmodel_JavassistInterfaceDeclaration.txt24 …Line 109) method.getMethodInfo().getAttribute(SyntheticAttribute.tag) ==> javassist.bytecode.Metho…
25 Line 109) method.getMethodInfo() ==> javassist.CtBehavior.getMethodInfo()
26 …Line 110) method.getMethodInfo().getAccessFlags() ==> javassist.bytecode.MethodInfo.getAccessFlags…
27 Line 110) method.getMethodInfo() ==> javassist.CtBehavior.getMethodInfo()
Dcom_github_javaparser_symbolsolver_javassistmodel_JavassistClassDeclaration.txt44 …Line 177) method.getMethodInfo().getAttribute(SyntheticAttribute.tag) ==> javassist.bytecode.Metho…
45 Line 177) method.getMethodInfo() ==> javassist.CtBehavior.getMethodInfo()
46 …Line 178) method.getMethodInfo().getAccessFlags() ==> javassist.bytecode.MethodInfo.getAccessFlags…
47 Line 178) method.getMethodInfo() ==> javassist.CtBehavior.getMethodInfo()
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DServiceConfigInterceptor.java360 MethodInfo info = getMethodInfo(method); in interceptCall()
400 private MethodInfo getMethodInfo(MethodDescriptor<?, ?> method) { in getMethodInfo() method in ServiceConfigInterceptor
418 MethodInfo info = getMethodInfo(method); in getRetryPolicyFromConfig()
424 MethodInfo info = getMethodInfo(method); in getHedgingPolicyFromConfig()
/external/javassist/src/test/test4/
DJIRA195.java29 mth.getMethodInfo().rebuildStackMap(cc.getClassPool()); in main()
/external/turbine/java/com/google/turbine/processing/
DTurbineMessager.java145 MethodInfo minfo = factory.getMethodInfo(sym.owner()); in paramPosition()
154 MethodInfo methodInfo = factory.getMethodInfo(sym); in methodPosition()
192 MethodInfo minfo = factory.getMethodInfo((MethodSymbol) owner); in tyParamPosition()
DModelFactory.java313 MethodInfo getMethodInfo(MethodSymbol method) { in getMethodInfo() method
324 MethodInfo info = getMethodInfo(sym.owner()); in getParamInfo()
350 tyParams = getMethodInfo((MethodSymbol) owner).tyParams(); in getTyVarInfo()
/external/javassist/src/test/javassist/
DJvstTest4.java27 m1.getMethodInfo().getCodeAttribute().insertLocalVar(2, 20); in testInsertLocalVars()
28 m1.getMethodInfo().rebuildStackMapIf6(cc.getClassPool(), cc.getClassFile()); in testInsertLocalVars()
30 m2.getMethodInfo().getCodeAttribute().insertLocalVar(2, 0x101); in testInsertLocalVars()
31 m2.getMethodInfo().rebuildStackMapIf6(cc.getClassPool(), cc.getClassFile()); in testInsertLocalVars()
85 CodeIterator it = m3.getMethodInfo().getCodeAttribute().iterator(); in testInsGap()
93 m3.getMethodInfo().rebuildStackMapIf6(cc.getClassPool(), cc.getClassFile()); in testInsGap()
170 mth.getMethodInfo().rebuildStackMap(cc.getClassPool()); in testNewRemover()
171 mth.getMethodInfo().rebuildStackMapForME(cc.getClassPool()); in testNewRemover()
917 mth.getMethodInfo().rebuildStackMap(cc.getClassPool()); in testJIRA195()
1113 m.getMethodInfo().addAttribute(attr); in testAnnotationLoader()
DJvstTest5.java277 …AnnotationsAttribute aa2 = (AnnotationsAttribute)foo.getMethodInfo().getAttribute(AnnotationsAttri… in testRemoveAnnotatino()
281 …AnnotationsAttribute aa3 = (AnnotationsAttribute)bar.getMethodInfo().getAttribute(AnnotationsAttri… in testRemoveAnnotatino()
284 AttributeInfo ai2 = bar.getMethodInfo().removeAttribute(AnnotationsAttribute.invisibleTag); in testRemoveAnnotatino()
288 AttributeInfo ai3 = run.getMethodInfo().removeAttribute(AnnotationsAttribute.invisibleTag); in testRemoveAnnotatino()
/external/javassist/src/test/javassist/bytecode/
DStackMapTest.java496 CodeAttribute ca = method.getMethodInfo().getCodeAttribute(); in writeLdcw()
629 MethodInfo mi = cc.getDeclaredMethod("foo").getMethodInfo(); in testConstructor3()
657 if (!f.where().getMethodInfo().isMethod()) in testJIRA175()
686 if (!f.where().getMethodInfo().isMethod()) in testJIRA175b()
818 …MethodInfo minfo = getMethodInfo(cc.getClassFile(), "getFields", "(Ljava/util/ArrayList;Ljavassist… in tstCtClassType()
822 MethodInfo getMethodInfo(ClassFile cf, String name, String desc) { in getMethodInfo() method in StackMapTest
DBytecodeTest.java139 m.getMethodInfo().setCodeAttribute(code.toCodeAttribute()); in test2byteLocalVar()
260 MethodInfo minfo = m.getMethodInfo(); in testLineNumberAttribute()
316 MethodInfo minfo = m.getMethodInfo(); in testDeprecatedAttribute()
321 minfo = m.getMethodInfo(); in testDeprecatedAttribute()
330 MethodInfo minfo = m.getMethodInfo(); in testLocalVarAttribute()
339 CodeAttribute ca2 = m2.getMethodInfo().getCodeAttribute(); in testLocalVarAttribute()
DInsertGap0.java227 CodeAttribute ca = m.getMethodInfo().getCodeAttribute(); in addMethod()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/javassistmodel/
DJavassistEnumDeclaration.java172 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod()
173 … boolean isNotBridge = (method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0; in solveMethod()
DJavassistInterfaceDeclaration.java109 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod()
110 … boolean isNotBridge = (method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0; in solveMethod()
DJavassistClassDeclaration.java177 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod()
178 … boolean isNotBridge = (method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0; in solveMethod()
/external/javassist/src/test/
DJassist150.java91 mth.getMethodInfo().rebuildStackMap(ClassPool.getDefault()); in testJIRA152()
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
DJavassistHelper.java97 CodeAttribute codeAttribute = method.getMethodInfo().getCodeAttribute(); in getSignature()
/external/javassist/src/main/javassist/compiler/
DJavac.java163 cons.getMethodInfo().setCodeAttribute( in compileMethod()
177 method.getMethodInfo().setCodeAttribute( in compileMethod()
/external/deqp/modules/glshared/
DglsDrawTest.cpp266 static MethodInfo getMethodInfo (gls::DrawTestSpec::DrawMethod method) in getMethodInfo() function
2417 const MethodInfo methodInfo = getMethodInfo(drawMethod); in getName()
2845 const MethodInfo methodInfo = getMethodInfo(drawMethod); in hash()
2870 const MethodInfo methodInfo = getMethodInfo(drawMethod); in valid()
2943 const MethodInfo methodInfo = getMethodInfo(drawMethod); in isCompatibilityTest()
3178 const MethodInfo methodInfo = getMethodInfo(spec.drawMethod); in iterate()
/external/javassist/src/main/javassist/
DCtBehavior.java129 public MethodInfo getMethodInfo() { in getMethodInfo() method in CtBehavior

12