Home
last modified time | relevance | path

Searched refs:MethodDescription (Results 1 – 4 of 4) sorted by relevance

/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
Dtest-template.rb9 MethodDescription = Struct.new( :name, :body, :arguments ) constant
179 MethodDescription.new( 'eat', %q[puts( "ate %s %s" % [ number, @name ] )], %w( number ) ),
180 MethodDescription.new( :to_s, '@name.to_s.dup' )
223 MethodDescription.new( 'eat', %q[puts( "ate %s %s" % [ number, @name ] )], %w( number ) ),
224 MethodDescription.new( :to_s, '@name.to_s.dup' )
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DSubclassBytecodeGenerator.java8 import net.bytebuddy.description.method.MethodDescription;
42 private final ElementMatcher<? super MethodDescription> matcher;
52 …sBytecodeGenerator(Implementation readReplace, ElementMatcher<? super MethodDescription> matcher) { in SubclassBytecodeGenerator()
56 …lassLoader loader, Implementation readReplace, ElementMatcher<? super MethodDescription> matcher) { in SubclassBytecodeGenerator()
107 private static ElementMatcher<MethodDescription> isGroovyMethod() { in isGroovyMethod()
DInlineBytecodeGenerator.java13 import net.bytebuddy.description.method.MethodDescription;
163 … .and(not(isDeclaredBy(nameStartsWith("java.")).<MethodDescription>and(isPackagePrivate()))))) in transform()
212 …thodList = typeDescription.getDeclaredMethods().filter((name.equals(MethodDescription.CONSTRUCTOR_… in visitMethod()
214 : ElementMatchers.<MethodDescription>named(name)).and(hasDescriptor(desc))); in visitMethod()
/external/clang/lib/StaticAnalyzer/Checkers/
DLocalizationChecker.cpp883 std::pair<const IdentifierInfo *, Selector> MethodDescription = {odInfo, S}; in checkPostObjCMessage() local
885 if (LSM.count(MethodDescription) || isAnnotatedAsLocalized(msg.getDecl())) { in checkPostObjCMessage()