Lines Matching refs:mJavac

58         mJavac.addSource("annotation.Anno", Joiner.on('\n').join(  in setup()
85 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testGreylistMethod()
92 mJavac.compile(); in testGreylistMethod()
94 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, in testGreylistMethod()
106 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testGreylistConstructor()
113 mJavac.compile(); in testGreylistConstructor()
115 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, in testGreylistConstructor()
127 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testGreylistField()
134 mJavac.compile(); in testGreylistField()
136 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, in testGreylistField()
148 mJavac.addSource("a.b.EnumClass", Joiner.on('\n').join( in testGreylistImplicit()
155 mJavac.compile(); in testGreylistImplicit()
157 new AnnotationVisitor(mJavac.getCompiledClass("a.b.EnumClass"), mStatus, in testGreylistImplicit()
169 mJavac.addSource("a.b.EnumClass", Joiner.on('\n').join( in testGreylistImplicit_Invalid_MissingOnClass()
176 mJavac.compile(); in testGreylistImplicit_Invalid_MissingOnClass()
178 new AnnotationVisitor(mJavac.getCompiledClass("a.b.EnumClass"), mStatus, in testGreylistImplicit_Invalid_MissingOnClass()
191 mJavac.addSource("a.b.EnumClass", Joiner.on('\n').join( in testGreylistImplicit_Invalid_PresentOnMember()
198 mJavac.compile(); in testGreylistImplicit_Invalid_PresentOnMember()
200 new AnnotationVisitor(mJavac.getCompiledClass("a.b.EnumClass"), mStatus, in testGreylistImplicit_Invalid_PresentOnMember()
212 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testGreylistMethodExpectedSignature()
219 mJavac.compile(); in testGreylistMethodExpectedSignature()
221 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, in testGreylistMethodExpectedSignature()
233 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testGreylistMethodExpectedSignatureWrong()
240 mJavac.compile(); in testGreylistMethodExpectedSignatureWrong()
242 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, in testGreylistMethodExpectedSignatureWrong()
251 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testGreylistInnerClassMethod()
260 mJavac.compile(); in testGreylistInnerClassMethod()
262 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class$Inner"), mStatus, in testGreylistInnerClassMethod()
274 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testMethodNotGreylisted()
279 mJavac.compile(); in testMethodNotGreylisted()
281 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, in testMethodNotGreylisted()
291 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testMethodArgGenerics()
298 mJavac.compile(); in testMethodArgGenerics()
300 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, in testMethodArgGenerics()
312 mJavac.addSource("a.b.Base", Joiner.on('\n').join( in testOverrideMethodWithBridge()
318 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testOverrideMethodWithBridge()
326 mJavac.compile(); in testOverrideMethodWithBridge()
330 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Base"), mStatus, handlerMap).visit(); in testOverrideMethodWithBridge()
331 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, handlerMap).visit(); in testOverrideMethodWithBridge()
344 mJavac.addSource("a.b.Base", Joiner.on('\n').join( in testOverridePublicMethodWithBridge()
350 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testOverridePublicMethodWithBridge()
358 mJavac.compile(); in testOverridePublicMethodWithBridge()
362 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Base"), mStatus, handlerMap).visit(); in testOverridePublicMethodWithBridge()
363 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, handlerMap).visit(); in testOverridePublicMethodWithBridge()
376 mJavac.addSource("a.b.Interface", Joiner.on('\n').join( in testBridgeMethodsFromInterface()
382 mJavac.addSource("a.b.Base", Joiner.on('\n').join( in testBridgeMethodsFromInterface()
390 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testBridgeMethodsFromInterface()
394 mJavac.compile(); in testBridgeMethodsFromInterface()
398 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Interface"), mStatus, handlerMap) in testBridgeMethodsFromInterface()
400 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Base"), mStatus, handlerMap).visit(); in testBridgeMethodsFromInterface()
401 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, handlerMap).visit(); in testBridgeMethodsFromInterface()
414 mJavac.addSource("a.b.Base", Joiner.on('\n').join( in testPublicBridgeExcluded()
420 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testPublicBridgeExcluded()
428 mJavac.compile(); in testPublicBridgeExcluded()
440 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Base"), mStatus, handlerMap).visit(); in testPublicBridgeExcluded()
441 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, handlerMap).visit(); in testPublicBridgeExcluded()
452 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testVolatileField()
459 mJavac.compile(); in testVolatileField()
465 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, handlerMap).visit(); in testVolatileField()
474 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testVolatileFieldWrongSignature()
481 mJavac.compile(); in testVolatileFieldWrongSignature()
485 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, handlerMap).visit(); in testVolatileFieldWrongSignature()
491 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testMethodMaxTargetSdk()
498 mJavac.compile(); in testMethodMaxTargetSdk()
504 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, handlerMap).visit(); in testMethodMaxTargetSdk()
511 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testMethodNoMaxTargetSdk()
518 mJavac.compile(); in testMethodNoMaxTargetSdk()
524 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, handlerMap).visit(); in testMethodNoMaxTargetSdk()
531 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testMethodMaxTargetSdkOutOfRange()
538 mJavac.compile(); in testMethodMaxTargetSdkOutOfRange()
544 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, handlerMap).visit(); in testMethodMaxTargetSdkOutOfRange()
550 mJavac.addSource("annotation.Anno2", Joiner.on('\n').join( in testAnnotationPropertiesIntoMap()
560 mJavac.addSource("a.b.Class", Joiner.on('\n').join( in testAnnotationPropertiesIntoMap()
567 mJavac.compile(); in testAnnotationPropertiesIntoMap()
568 new AnnotationVisitor(mJavac.getCompiledClass("a.b.Class"), mStatus, in testAnnotationPropertiesIntoMap()