/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/ |
D | JavassistTypeDeclarationAdapter.java | 43 .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()
|
D | JavassistUtils.java | 44 && ((method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0) in getMethodUsage() 45 && ((method.getMethodInfo().getAccessFlags() & AccessFlag.SYNTHETIC) == 0)) { in getMethodUsage() 184 MethodInfo methodInfo = method.getMethodInfo(); in extractParameterName()
|
D | JavassistEnumDeclaration.java | 182 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod() 183 … boolean isNotBridge = (method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0; in solveMethod()
|
D | JavassistInterfaceDeclaration.java | 112 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod() 113 … boolean isNotBridge = (method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0; in solveMethod()
|
D | JavassistClassDeclaration.java | 203 … 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/ |
D | com_github_javaparser_symbolsolver_javassistmodel_JavassistEnumDeclaration.txt | 49 …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()
|
D | com_github_javaparser_symbolsolver_javassistmodel_JavassistInterfaceDeclaration.txt | 24 …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()
|
D | com_github_javaparser_symbolsolver_javassistmodel_JavassistClassDeclaration.txt | 44 …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/ |
D | ServiceConfigInterceptor.java | 360 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/ |
D | JIRA195.java | 29 mth.getMethodInfo().rebuildStackMap(cc.getClassPool()); in main()
|
/external/turbine/java/com/google/turbine/processing/ |
D | TurbineMessager.java | 145 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()
|
D | ModelFactory.java | 313 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/ |
D | JvstTest4.java | 27 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()
|
D | JvstTest5.java | 277 …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/ |
D | StackMapTest.java | 496 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
|
D | BytecodeTest.java | 139 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()
|
D | InsertGap0.java | 227 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/ |
D | JavassistEnumDeclaration.java | 172 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod() 173 … boolean isNotBridge = (method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0; in solveMethod()
|
D | JavassistInterfaceDeclaration.java | 109 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod() 110 … boolean isNotBridge = (method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0; in solveMethod()
|
D | JavassistClassDeclaration.java | 177 … 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/ |
D | Jassist150.java | 91 mth.getMethodInfo().rebuildStackMap(ClassPool.getDefault()); in testJIRA152()
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/ |
D | JavassistHelper.java | 97 CodeAttribute codeAttribute = method.getMethodInfo().getCodeAttribute(); in getSignature()
|
/external/javassist/src/main/javassist/compiler/ |
D | Javac.java | 163 cons.getMethodInfo().setCodeAttribute( in compileMethod() 177 method.getMethodInfo().setCodeAttribute( in compileMethod()
|
/external/deqp/modules/glshared/ |
D | glsDrawTest.cpp | 266 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/ |
D | CtBehavior.java | 129 public MethodInfo getMethodInfo() { in getMethodInfo() method in CtBehavior
|