HomeSort by relevance Sort by last modified time
    Searched full:genericdecl (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/main/java/libcore/reflect/
GenericSignatureParser.java 81 GenericDeclaration genericDecl;
104 void setInput(GenericDeclaration genericDecl, String input) {
106 this.genericDecl = genericDecl;
120 * @param genericDecl the GenericDeclaration calling this method
123 public void parseForClass(GenericDeclaration genericDecl, String signature) {
124 setInput(genericDecl, signature);
128 if(genericDecl instanceof Class) {
129 Class c = (Class) genericDecl;
150 * @param genericDecl the GenericDeclaration calling this metho
    [all...]
TypeVariableImpl.java 51 * @param genericDecl declaration where a type variable is declared
55 TypeVariableImpl(D genericDecl, String name, ListOfTypes bounds) {
56 this.genericDeclaration = genericDecl;
64 * @param genericDecl declaration where a type variable is used
67 TypeVariableImpl(D genericDecl, String name) {
69 this.declOfVarUser = genericDecl;
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 93 private IGenericDeclaration genericDecl;
123 private void setInput(IGenericDeclaration genericDecl, String input) {
125 this.genericDecl = genericDecl;
206 * @param genericDecl
211 public void parseForMethod(IMethod genericDecl, String signature) {
212 setInput(genericDecl, signature);
224 * @param genericDecl
229 public void parseForConstructor(IConstructor genericDecl,
231 setInput(genericDecl, signature)
    [all...]

Completed in 2533 milliseconds