Searched refs:Scope (Results 1 - 25 of 81) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/sun/reflect/generics/scope/
H A DAbstractScope.java42 implements Scope {
45 private Scope enclosingScope; // the enclosing scope of this scope
56 * Accessor for the receiver - the object whose scope this <tt>Scope</tt>
58 * @return The object whose scope this <tt>Scope</tt> object represents
67 protected abstract Scope computeEnclosingScope();
73 protected Scope getEnclosingScope(){
H A DScope.java31 public interface Scope { interface
H A DConstructorScope.java52 protected Scope computeEnclosingScope() {
H A DDummyScope.java38 public class DummyScope implements Scope {
H A DMethodScope.java52 protected Scope computeEnclosingScope() {
H A DClassScope.java36 public class ClassScope extends AbstractScope<Class<?>> implements Scope {
47 protected Scope computeEnclosingScope() {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java32 * Scope class is a container for symbols which provides
43 public class Scope { class
51 public Scope next;
90 public static final Scope emptyScope = new Scope(null, null, new Entry[]{});
95 private Scope(Scope next, Symbol owner, Entry[] table) { method in class:Scope
104 private Scope(Scope next, Symbol owner, Entry[] table, int nelems) { method in class:Scope
112 public Scope(Symbo method in class:Scope
[all...]
/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DScope.java37 * Upon creation, a Scope is associated with a given program position;
41 * <p>A Scope does not itself contain the details of the elements corresponding
53 public interface Scope { interface
57 public Scope getEnclosingScope();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DFilteredMemberList.java31 import com.sun.tools.javac.code.Scope;
48 private final Scope scope;
50 public FilteredMemberList(Scope scope) {
56 for (Scope.Entry e = scope.elems; e != null; e = e.sibling) {
64 for (Scope.Entry e = scope.elems; e != null; e = e.sibling) {
76 private Scope.Entry nextEntry = scope.elems;
/openjdk7/langtools/test/tools/javac/scope/
H A DHashCollisionTest.java27 * @summary Ensure Scope impl can cope with hash collisions
34 import com.sun.tools.javac.code.Scope.*;
52 Scope emptyScope = new Scope(symtab.unnamedPackage); // any owner will do
53 Field sHashMask = Scope.class.getDeclaredField("hashMask");
59 // Entry in an empty scope. i.e. name.hashCode() & Scope.hashMask
95 p.members_field = new Scope(p);
105 Scope starImportScope;
109 Class<?> c = Class.forName("com.sun.tools.javac.code.Scope$StarImportScope");
111 importAll = c.getDeclaredMethod("importAll", new Class[] { Scope
[all...]
H A DStarImportTest.java35 import com.sun.tools.javac.code.Scope.*;
86 void log(String msg, Scope s) {
90 for (Scope.Entry se = s.elems; se != null; se = se.sibling) {
91 for (Scope.Entry e = se; e.sym != null; e = e.next()) {
174 p.members_field = new Scope(p);
220 Class<?> c = Class.forName("com.sun.tools.javac.code.Scope$StarImportScope");
222 importAll = c.getDeclaredMethod("importAll", new Class[] { Scope.class });
223 starImportScope = (Scope) ctor.newInstance(new Object[] { pkg });
231 Scope members = imp.members();
236 Scope fromScop
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/handler/
H A DMessageContext.java183 public enum Scope {APPLICATION, HANDLER}; enum in interface:MessageContext
194 public void setScope(String name, Scope scope);
200 * @return Scope of the property
204 public Scope getScope(String name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/host/
H A DScopeHost.java50 import com.sun.xml.internal.rngom.ast.builder.Scope;
59 public class ScopeHost extends GrammarSectionHost implements Scope {
60 protected final Scope lhs;
61 protected final Scope rhs;
63 protected ScopeHost( Scope lhs, Scope rhs ) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DBuilderHandlerMessageScope.java48 private final Scope scope;
50 enum Scope{ enum in class:BuilderHandlerMessageScope
62 , Scope scope
94 if (this.scope != Scope.FaultMessageScope) {
109 if (scope != Scope.FaultMessageScope) {
120 if (Scope.FaultMessageScope == scope) {
126 if (Scope.InputMessageScope == scope) {
130 } else if (Scope.OutputMessageScope == scope) {
134 } else if (Scope.FaultMessageScope == scope) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DUnmarshallerChain.java29 import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Scope;
46 * This offset allows child unmarshallers to have its own {@link Scope} without colliding with siblings.
57 * Allocates a new {@link Scope} offset.
/openjdk7/jdk/src/share/classes/sun/reflect/generics/factory/
H A DCoreReflectionFactory.java39 import sun.reflect.generics.scope.Scope;
49 private Scope scope;
51 private CoreReflectionFactory(GenericDeclaration d, Scope s) {
58 private Scope getScope(){ return scope;}
88 public static CoreReflectionFactory make(GenericDeclaration d, Scope s) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttrContext.java43 Scope scope = null;
76 AttrContext dup(Scope scope) {
/openjdk7/langtools/test/tools/javac/api/6598108/
H A DT6598108.java32 import com.sun.source.tree.Scope;
53 Scope s = Trees.instance(ct).getScope(tp);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DIncludeImpl.java52 import com.sun.xml.internal.rngom.ast.builder.Scope;
69 public IncludeImpl(DGrammarPattern p, Scope parent, DSchemaBuilderImpl sb) {
87 public IncludedGrammarImpl(DGrammarPattern p, Scope parent, DSchemaBuilderImpl sb) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java107 * {@link Scope} buffer.
109 private Scope[] scopes = new Scope[8];
128 private static final class Scope { class in class:DOMStreamReader
130 * Scope for the parent element.
132 final Scope parent;
147 Scope(Scope parent) { method in class:DOMStreamReader.Scope
188 for( Scope sp=this; sp!=null; sp=sp.parent ) {
210 for( Scope s
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/ast/builder/
H A DGrammar.java53 * {@link Scope} for &lt;grammar> element that serves as a container
61 CL extends CommentList<L>> extends GrammarSection<P,E,L,A,CL>, Scope<P,E,L,A,CL> {
H A DIncludedGrammar.java54 * {@link Scope} for &lt;grammar> element of the &lt;include>d grammar.
64 CL extends CommentList<L>> extends GrammarSection<P,E,L,A,CL>, Scope<P,E,L,A,CL> {
H A DScope.java52 public interface Scope< interface in inherits:GrammarSection
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/
H A DParseable.java84 * {@link SchemaBuilder#makeExternalRef(Parseable, String, String, Scope, Location, Annotations)}
90 <P extends ParsedPattern> P parseExternal(String uri, SchemaBuilder<?,P,?,?,?,?> f, Scope s, String inheritedNs)
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTrees.java45 import com.sun.source.tree.Scope;
163 * Gets the Scope for the Tree node identified by a given TreePath.
164 * Returns null if the Scope is not available.
166 public abstract Scope getScope(TreePath path);
180 public abstract boolean isAccessible(Scope scope, TypeElement type);
190 public abstract boolean isAccessible(Scope scope, Element member, DeclaredType type);

Completed in 65 milliseconds

1234