/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/ |
D | TypeParameter.java | 62 private NodeList<ClassOrInterfaceType> typeBound; field in TypeParameter 72 public TypeParameter(final String name, final NodeList<ClassOrInterfaceType> typeBound) { in TypeParameter() argument 73 this(null, new SimpleName(name), typeBound, new NodeList<>()); in TypeParameter() 80 …TypeParameter(Range range, final SimpleName name, final NodeList<ClassOrInterfaceType> typeBound) { in TypeParameter() argument 81 this(null, name, typeBound, new NodeList<>()); in TypeParameter() 86 …public TypeParameter(SimpleName name, NodeList<ClassOrInterfaceType> typeBound, NodeList<Annotatio… in TypeParameter() argument 87 this(null, name, typeBound, annotations); in TypeParameter() 94 …(TokenRange tokenRange, SimpleName name, NodeList<ClassOrInterfaceType> typeBound, NodeList<Annota… in TypeParameter() argument 97 setTypeBound(typeBound); in TypeParameter() 131 return typeBound; in getTypeBound() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/type/ |
D | TypeParameter.java | 53 private List<ClassOrInterfaceType> typeBound; field in TypeParameter 58 public TypeParameter(final String name, final List<ClassOrInterfaceType> typeBound) { in TypeParameter() argument 60 setTypeBound(typeBound); in TypeParameter() 63 public TypeParameter(Range range, final String name, final List<ClassOrInterfaceType> typeBound) { in TypeParameter() argument 66 setTypeBound(typeBound); in TypeParameter() 69 …public TypeParameter(Range range, String name, List<ClassOrInterfaceType> typeBound, List<Annotati… in TypeParameter() argument 70 this(range, name, typeBound); in TypeParameter() 71 setTypeBound(typeBound); in TypeParameter() 100 typeBound = ensureNotNull(typeBound); in getTypeBound() 101 return typeBound; in getTypeBound() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/ |
D | TypeParameter.java | 49 private List<ClassOrInterfaceType> typeBound; field in TypeParameter 54 public TypeParameter(final String name, final List<ClassOrInterfaceType> typeBound) { in TypeParameter() argument 56 setTypeBound(typeBound); in TypeParameter() 60 final String name, final List<ClassOrInterfaceType> typeBound) { in TypeParameter() argument 63 setTypeBound(typeBound); in TypeParameter() 67 …int endColumn, String name, List<ClassOrInterfaceType> typeBound, List<AnnotationExpr> annotations… in TypeParameter() argument 68 this(beginLine, beginColumn, endLine, endColumn, name, typeBound); in TypeParameter() 70 setTypeBound(typeBound); in TypeParameter() 98 return typeBound; in getTypeBound() 117 public void setTypeBound(final List<ClassOrInterfaceType> typeBound) { in setTypeBound() argument [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/ |
D | com_github_javaparser_ast_TypeParameter.txt | 8 Line 56) setTypeBound(typeBound) ==> void 14 Line 63) setTypeBound(typeBound) ==> void 20 Line 68) typeBound ==> java.util.List<com.github.javaparser.ast.type.ClassOrInterfaceType> 22 Line 70) setTypeBound(typeBound) ==> void 27 Line 98) typeBound ==> java.util.List<com.github.javaparser.ast.type.ClassOrInterfaceType> 29 …Line 118) this.typeBound = typeBound ==> java.util.List<com.github.javaparser.ast.type.ClassOrInte… 30 Line 119) setAsParentNodeOf(typeBound) ==> void
|
D | com_github_javaparser_ast_visitor_ModifierVisitorAdapter.txt | 612 …Line 885) final List<ClassOrInterfaceType> typeBound = n.getTypeBound() ==> java.util.List<com.git… 614 Line 886) typeBound != null ==> boolean 617 Line 887) i < typeBound.size() ==> boolean 619 …Line 888) typeBound.set(i, (ClassOrInterfaceType) typeBound.get(i).accept(this, arg)) ==> com.gith… 620 Line 890) removeNulls(typeBound) ==> void
|
D | com_github_javaparser_ast_visitor_CloneVisitor.txt | 30 …Line 101) List<ClassOrInterfaceType> typeBound = visit(_n.getTypeBound(), _arg) ==> java.util.List… 34 … _n.getBeginColumn(), _n.getEndLine(), _n.getEndColumn(), _n.getName(), typeBound, annotations) ==… 35 … _n.getBeginColumn(), _n.getEndLine(), _n.getEndColumn(), _n.getName(), typeBound, annotations) ==…
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_methodcalls_expected_output/ |
D | com_github_javaparser_ast_type_TypeParameter.txt | 2 …Line 60) setTypeBound(typeBound) ==> com.github.javaparser.ast.type.TypeParameter.setTypeBound(jav… 4 …Line 66) setTypeBound(typeBound) ==> com.github.javaparser.ast.type.TypeParameter.setTypeBound(jav… 5 …Line 71) setTypeBound(typeBound) ==> com.github.javaparser.ast.type.TypeParameter.setTypeBound(jav… 9 …Line 100) ensureNotNull(typeBound) ==> com.github.javaparser.utils.Utils.ensureNotNull(java.util.L… 10 …Line 124) setAsParentNodeOf(typeBound) ==> com.github.javaparser.ast.Node.setAsParentNodeOf(java.u…
|
D | com_github_javaparser_ast_visitor_ModifierVisitorAdapter.txt | 598 Line 995) typeBound.size() ==> java.util.List.size() 599 …Line 996) typeBound.set(i, (ClassOrInterfaceType) typeBound.get(i).accept(this, arg)) ==> java.uti… 600 …Line 996) typeBound.get(i).accept(this, arg) ==> com.github.javaparser.ast.type.ClassOrInterfaceTy… 601 Line 996) typeBound.get(i) ==> java.util.List.get(int) 602 …Line 998) removeNulls(typeBound) ==> com.github.javaparser.ast.visitor.ModifierVisitorAdapter.remo…
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 602 QualType typeBound = GetTypeFromParser(parsedTypeBound, &typeBoundInfo); in actOnObjCTypeParam() local 603 if (typeBound->isObjCObjectPointerType()) { in actOnObjCTypeParam() 605 } else if (typeBound->isObjCObjectType()) { in actOnObjCTypeParam() 612 << typeBound << paramName in actOnObjCTypeParam() 621 typeBound = Context.getObjCObjectPointerType(typeBound); in actOnObjCTypeParam() 623 = builder.push<ObjCObjectPointerTypeLoc>(typeBound); in actOnObjCTypeParam() 627 typeBoundInfo = builder.getTypeSourceInfo(Context, typeBound); in actOnObjCTypeParam() 632 << typeBound << paramName; in actOnObjCTypeParam() 641 QualType typeBound = typeBoundInfo->getType(); in actOnObjCTypeParam() local 643 if (qual || typeBound.hasQualifiers()) { in actOnObjCTypeParam() [all …]
|
D | SemaExprObjC.cpp | 2638 const ObjCObjectType *typeBound = nullptr; in BuildInstanceMessage() local 2640 typeBound); in BuildInstanceMessage() 2646 true/*CheckTheOther*/, typeBound); in BuildInstanceMessage()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/ |
D | ModifierVisitorAdapter.java | 885 final List<ClassOrInterfaceType> typeBound = n.getTypeBound(); in visit() local 886 if (typeBound != null) { in visit() 887 for (int i = 0; i < typeBound.size(); i++) { in visit() 888 typeBound.set(i, (ClassOrInterfaceType) typeBound.get(i).accept(this, arg)); in visit() 890 removeNulls(typeBound); in visit()
|
D | CloneVisitor.java | 101 List<ClassOrInterfaceType> typeBound = visit(_n.getTypeBound(), _arg); in visit() local 106 _n.getName(), typeBound, annotations); in visit()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/ |
D | ModifierVisitorAdapter.java | 993 final List<ClassOrInterfaceType> typeBound = n.getTypeBound(); in visit() local 994 if (typeBound != null) { in visit() 995 for (int i = 0; i < typeBound.size(); i++) { in visit() 996 typeBound.set(i, (ClassOrInterfaceType) typeBound.get(i).accept(this, arg)); in visit() 998 removeNulls(typeBound); in visit()
|
D | CloneVisitor.java | 153 List<ClassOrInterfaceType> typeBound = visit(_n.getTypeBound(), _arg); in visit() local 157 _n.getName(), typeBound, annotations); in visit()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/ |
D | javaparser-core-2.1.0.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/github/
com/ ... |
D | javaparser-core-3.0.0-alpha.2.jar | META-INF/MANIFEST.MF
META-INF/
com/
com/github/
com/ ... |
/external/doclava/src/com/google/doclava/parser/ |
D | Java.g | 215 * Renamed "bound" to "typeBound" to better match language in the JLS. 399 ('extends' typeBound 404 typeBound
|
D | JavaParser.java | 1905 typeBound(); in typeParameter() 1943 public final void typeBound() throws RecognitionException { in typeBound() method in JavaParser
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/ |
D | CloneVisitor.java | 66 NodeList<ClassOrInterfaceType> typeBound = cloneList(n.getTypeBound(), arg); in visit() local 69 … TypeParameter r = new TypeParameter(n.getTokenRange().orElse(null), name, typeBound, annotations); in visit()
|
D | ModifierVisitor.java | 982 NodeList<ClassOrInterfaceType> typeBound = modifyList(n.getTypeBound(), arg); in visit() local 988 n.setTypeBound(typeBound); in visit()
|
/external/javaparser/javaparser-core/src/main/javacc/ |
D | java.jj | 853 NodeList<ClassOrInterfaceType> typeBound = emptyList(); 857 name = SimpleName() { begin=token(); } [ typeBound = TypeBound() ] 858 { return new TypeParameter(range(begin, token()), name, typeBound, annotations); }
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/ |
D | ASTParser.java | 776 List<ClassOrInterfaceType> typeBound = null; in TypeParameter() local 782 typeBound = TypeBound(); in TypeParameter() 789 return new TypeParameter(range(begin, tokenEnd()),name, typeBound); in TypeParameter()
|
/external/javaparser/javaparser-core/generated-sources/javacc/com/github/javaparser/ |
D | GeneratedJavaParser.java | 716 NodeList<ClassOrInterfaceType> typeBound = emptyList(); in TypeParameter() local 722 typeBound = TypeBound(); in TypeParameter() 729 return new TypeParameter(range(begin, token()), name, typeBound, annotations); in TypeParameter()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/ |
D | ASTParser.java | 743 List typeBound = null; in TypeParameter() local 750 typeBound = TypeBound(); in TypeParameter() 756 …{if (true) return new TypeParameter(line, column, token.endLine, token.endColumn,name, typeBound);} in TypeParameter()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 7324 ParsedType typeBound);
|