Home
last modified time | relevance | path

Searched refs:TextMethodItem (Results 1 – 8 of 8) sorted by relevance

/tools/metalava/src/test/java/com/android/tools/metalava/model/text/
DTextTypeItemTest.kt82 val method = cls?.findMethod("build", "") as TextMethodItem in check erasure()
118 val method = cls?.findMethod("build", "") as TextMethodItem in check erasure from object()
150 val method = cls?.findMethod("clone", "") as TextMethodItem in check erasure from enums()
DTextTypeParameterItemTest.kt52 val method = cls?.findMethod("build", "") as TextMethodItem in testTypeParameterNames()
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/
DTextMethodItem.kt30 open class TextMethodItem( class
136 val duplicated = TextMethodItem( in duplicate()
DApiFile.java469 TextMethodItem method; in parseMethod()
517 method = new TextMethodItem(api, name, cl, modifiers, returnType, tokenizer.pos()); in parseMethod()
817 …private static void parseParameterList(TextCodebase api, Tokenizer tokenizer, TextMethodItem metho… in parseParameterList()
938 private static String parseDefault(Tokenizer tokenizer, TextMethodItem method) in parseDefault()
952 private static String parseThrows(Tokenizer tokenizer, TextMethodItem method) in parseThrows()
DTextConstructorItem.kt28 ) : TextMethodItem(codebase, name, containingClass, modifiers, returnType, position),
DTextCodebase.kt161 val methodInfo = methodItem as TextMethodItem in resolveThrowsClasses()
360 cls.addMethod(new as TextMethodItem) in computeDelta()
DTextParameterItem.kt26 private val containingMethod: TextMethodItem,
DTextClassItem.kt205 fun addMethod(method: TextMethodItem) { in addMethod()