Searched defs:sym (Results 1 - 25 of 120) sorted by relevance

12345

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DAnnotationTypeDeclarationImpl.java44 AnnotationTypeDeclarationImpl(AptEnv env, ClassSymbol sym) { argument
45 super(env, sym);
H A DAnnotationTypeElementDeclarationImpl.java42 AnnotationTypeElementDeclarationImpl(AptEnv env, MethodSymbol sym) { argument
43 super(env, sym);
57 return (sym.defaultValue == null)
59 : new AnnotationValueImpl(env, sym.defaultValue, null);
H A DClassDeclarationImpl.java49 ClassDeclarationImpl(AptEnv env, ClassSymbol sym) { argument
50 super(env, sym);
61 for (Type t = sym.type;
78 if (sym == env.symtab.objectType.tsym) {
81 Type t = env.jctypes.supertype(sym.type);
H A DConstructorDeclarationImpl.java46 ConstructorDeclarationImpl(AptEnv env, MethodSymbol sym) { argument
47 super(env, sym);
56 return sym.enclClass().name.toString();
H A DEnumConstantDeclarationImpl.java42 EnumConstantDeclarationImpl(AptEnv env, VarSymbol sym) { argument
43 super(env, sym);
H A DEnumDeclarationImpl.java44 EnumDeclarationImpl(AptEnv env, ClassSymbol sym) { argument
45 super(env, sym);
H A DExecutableDeclarationImpl.java45 public MethodSymbol sym; field in class:ExecutableDeclarationImpl
47 protected ExecutableDeclarationImpl(AptEnv env, MethodSymbol sym) { argument
48 super(env, sym);
49 this.sym = sym;
58 return sym.toString();
65 return AptEnv.hasFlag(sym, Flags.VARARGS);
74 for (VarSymbol param : sym.params())
84 for (Type t : sym.type.getThrownTypes()) {
H A DFieldDeclarationImpl.java47 protected VarSymbol sym; field in class:FieldDeclarationImpl
49 FieldDeclarationImpl(AptEnv env, VarSymbol sym) { argument
50 super(env, sym);
51 this.sym = sym;
66 return env.typeMaker.getType(sym.type);
73 Object val = sym.getConstValue();
76 return Constants.decodeConstant(val, sym.type);
H A DInterfaceDeclarationImpl.java42 InterfaceDeclarationImpl(AptEnv env, ClassSymbol sym) { argument
43 super(env, sym);
H A DMemberDeclarationImpl.java47 protected MemberDeclarationImpl(AptEnv env, Symbol sym) { argument
48 super(env, sym);
69 for (Type t : sym.type.getTypeArguments()) {
88 return sym.owner.enclClass();
98 protected static String typeParamsToString(AptEnv env, Symbol sym) { argument
99 if (sym.type.getTypeArguments().isEmpty()) {
103 for (Type t : sym.type.getTypeArguments()) {
H A DMethodDeclarationImpl.java43 MethodDeclarationImpl(AptEnv env, MethodSymbol sym) { argument
44 super(env, sym);
52 return env.typeMaker.getType(sym.type.getReturnType());
H A DParameterDeclarationImpl.java46 protected VarSymbol sym; field in class:ParameterDeclarationImpl
49 ParameterDeclarationImpl(AptEnv env, VarSymbol sym) { argument
50 super(env, sym);
51 this.sym = sym;
59 return getType() + " " + sym.name;
72 return sym.owner == that.sym.owner &&
73 sym.name == that.sym
[all...]
H A DTypeParameterDeclarationImpl.java47 protected TypeSymbol sym; field in class:TypeParameterDeclarationImpl
50 TypeParameterDeclarationImpl(AptEnv env, TypeSymbol sym) { argument
51 super(env, sym);
52 this.sym = sym;
61 return toString(env, (Type.TypeVar) sym.type);
69 for (Type t : env.jctypes.getBounds((Type.TypeVar) sym.type)) {
79 Symbol owner = sym.owner;
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DAnnotationTypeDocImpl.java49 public AnnotationTypeDocImpl(DocEnv env, ClassSymbol sym) { argument
50 this(env, sym, null, null, null);
53 public AnnotationTypeDocImpl(DocEnv env, ClassSymbol sym, argument
55 super(env, sym, doc, tree, lineMap);
95 if (e.sym != null && e.sym.kind == Kinds.MTH) {
96 MethodSymbol s = (MethodSymbol)e.sym;
H A DAnnotationTypeElementDocImpl.java48 public AnnotationTypeElementDocImpl(DocEnv env, MethodSymbol sym) { argument
49 super(env, sym);
52 public AnnotationTypeElementDocImpl(DocEnv env, MethodSymbol sym, argument
54 super(env, sym, doc, tree, lineMap);
87 return (sym.defaultValue == null)
89 : new AnnotationValueImpl(env, sym.defaultValue);
H A DConstructorDocImpl.java49 public ConstructorDocImpl(DocEnv env, MethodSymbol sym) { argument
50 super(env, sym);
56 public ConstructorDocImpl(DocEnv env, MethodSymbol sym, argument
58 super(env, sym, docComment, tree, lineMap);
76 ClassSymbol c = sym.enclClass();
90 return sym.enclClass().getQualifiedName().toString();
H A DMemberDocImpl.java55 public MemberDocImpl(DocEnv env, Symbol sym, String doc, JCTree tree, Position.LineMap lineMap) { argument
56 super(env, sym, doc, tree, lineMap);
H A DParameterImpl.java45 private final VarSymbol sym; field in class:ParameterImpl
51 ParameterImpl(DocEnv env, VarSymbol sym) { argument
53 this.sym = sym;
54 this.type = TypeMaker.getType(env, sym.type, false);
69 return sym.toString();
90 return typeName() + " " + sym;
98 AnnotationDesc res[] = new AnnotationDesc[sym.getAnnotationMirrors().length()];
100 for (Attribute.Compound a : sym.getAnnotationMirrors()) {
/openjdk7/jaxp/src/com/sun/java_cup/internal/runtime/
H A DSymbol.java40 sym: the symbol type
76 sym = sym_num;
98 sym = sym_num;
105 public int sym; field in class:Symbol
128 public String toString() { return "#"+sym; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdCDebugger.java118 public String demangle(String sym) { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DCDebugger.java78 public String demangle(String sym) throws UnsupportedOperationException; argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxCDebugger.java129 public String demangle(String sym) { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcCDebugger.java98 public String demangle(String sym) { argument
99 return dbg.demangle(sym);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgCDebugger.java105 public String demangle(String sym) { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DSymbolTable.java88 Symbol sym = Symbol.create(e.literalValue());
89 if (sym.equals(name)) {
90 return sym;
98 public void visit(Symbol sym); argument

Completed in 2357 milliseconds

12345